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