2013-03-31 23:45:16 +02:00
|
|
|
|
define(['app', 'Quality/QualityProfileCollection', 'AddSeries/RootFolders/RootFolderCollection'], function (app, qualityProfileCollection, rootFolders) {
|
2013-02-14 03:28:56 +01:00
|
|
|
|
NzbDrone.Series.SeriesModel = Backbone.Model.extend({
|
2013-02-13 07:32:17 +01:00
|
|
|
|
|
2013-03-03 20:59:04 +01:00
|
|
|
|
urlRoot: NzbDrone.Constants.ApiRoot + '/series',
|
|
|
|
|
|
2013-02-14 03:28:56 +01:00
|
|
|
|
mutators: {
|
|
|
|
|
bestDateString: function () {
|
2013-03-01 05:59:06 +01:00
|
|
|
|
return bestDateString(this.get('nextAiring'));
|
2013-02-14 03:28:56 +01:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
percentOfEpisodes: function () {
|
|
|
|
|
var episodeCount = this.get('episodeCount');
|
|
|
|
|
var episodeFileCount = this.get('episodeFileCount');
|
2013-02-13 07:32:17 +01:00
|
|
|
|
|
2013-02-14 03:28:56 +01:00
|
|
|
|
var percent = 100;
|
2013-02-13 07:32:17 +01:00
|
|
|
|
|
2013-03-30 00:28:58 +01:00
|
|
|
|
if (episodeCount > 0) {
|
2013-02-14 03:28:56 +01:00
|
|
|
|
percent = episodeFileCount / episodeCount * 100;
|
2013-03-30 00:28:58 +01:00
|
|
|
|
}
|
2013-02-14 03:28:56 +01:00
|
|
|
|
|
|
|
|
|
return percent;
|
2013-03-31 23:45:16 +02:00
|
|
|
|
},
|
2013-04-04 06:38:51 +02:00
|
|
|
|
poster : function () {
|
|
|
|
|
var poster = _.find(this.get('images'), function (image) {
|
2013-03-31 23:45:16 +02:00
|
|
|
|
return image.coverType === 1;
|
|
|
|
|
});
|
|
|
|
|
|
2013-04-04 06:38:51 +02:00
|
|
|
|
if (poster) {
|
|
|
|
|
return poster.url;
|
2013-03-31 23:45:16 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return undefined;
|
2013-04-04 06:38:51 +02:00
|
|
|
|
},
|
2013-03-31 23:45:16 +02:00
|
|
|
|
traktUrl : function () {
|
|
|
|
|
return "http://trakt.tv/show/" + this.get('titleSlug');
|
2013-04-10 05:17:41 +02:00
|
|
|
|
},
|
|
|
|
|
isContinuing : function () {
|
2013-04-22 03:21:24 +02:00
|
|
|
|
if (this.get('status') === 0){
|
2013-04-10 05:17:41 +02:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
2013-04-22 03:21:24 +02:00
|
|
|
|
},
|
|
|
|
|
statusText: function () {
|
|
|
|
|
if (this.get('status') === 0) {
|
|
|
|
|
return 'Continuing';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 'Ended';
|
2013-02-14 03:28:56 +01:00
|
|
|
|
}
|
|
|
|
|
},
|
2013-02-13 07:32:17 +01:00
|
|
|
|
|
2013-02-14 03:28:56 +01:00
|
|
|
|
defaults: {
|
|
|
|
|
episodeFileCount: 0,
|
2013-03-30 00:28:58 +01:00
|
|
|
|
episodeCount : 0,
|
2013-03-31 23:45:16 +02:00
|
|
|
|
qualityProfiles : qualityProfileCollection,
|
2013-04-05 08:24:23 +02:00
|
|
|
|
rootFolders : rootFolders,
|
2013-04-22 03:21:24 +02:00
|
|
|
|
isExisting : false,
|
|
|
|
|
status: 0
|
2013-02-13 07:32:17 +01:00
|
|
|
|
}
|
2013-02-14 03:28:56 +01:00
|
|
|
|
});
|
2013-02-13 07:32:17 +01:00
|
|
|
|
|
2013-02-14 03:28:56 +01:00
|
|
|
|
});
|