2013-04-26 07:45:45 +03:00
|
|
|
"use strict";
|
|
|
|
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: {
|
|
|
|
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-05-17 06:03:52 +03:00
|
|
|
banner : function () {
|
|
|
|
return "/mediacover/" + this.get('id') + "/banner.jpg";
|
|
|
|
},
|
2013-04-04 07:38:51 +03:00
|
|
|
poster : function () {
|
2013-05-17 06:03:52 +03:00
|
|
|
return "/mediacover/" + this.get('id') + "/poster.jpg";
|
2013-04-04 07:38:51 +03:00
|
|
|
},
|
2013-04-23 05:07:21 +03:00
|
|
|
fanArt : function () {
|
2013-05-17 06:03:52 +03:00
|
|
|
return "/mediacover/" + this.get('id') + "/fanart.jpg";
|
2013-04-23 05:07:21 +03:00
|
|
|
},
|
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-05-06 04:16:38 +03:00
|
|
|
return this.get('status') === 'continuing';
|
2013-04-25 03:23:07 +03:00
|
|
|
},
|
2013-04-26 07:45:45 +03:00
|
|
|
shortDate : function () {
|
2013-04-25 03:23:07 +03:00
|
|
|
var date = this.get('nextAiring');
|
|
|
|
|
|
|
|
if (!date) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
return Date.create(date).short();
|
2013-06-05 08:22:07 +03:00
|
|
|
},
|
|
|
|
route : function(){
|
|
|
|
return '/series/details/' + this.get('titleSlug');
|
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
|
|
|
});
|