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