2013-04-26 06:45:45 +02:00
|
|
|
|
"use strict";
|
2013-06-09 00:23:17 +02:00
|
|
|
|
define(['app', 'Quality/QualityProfileCollection'], function (app, qualityProfiles) {
|
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: {
|
|
|
|
|
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-05-17 05:03:52 +02:00
|
|
|
|
banner : function () {
|
|
|
|
|
return "/mediacover/" + this.get('id') + "/banner.jpg";
|
|
|
|
|
},
|
2013-04-04 06:38:51 +02:00
|
|
|
|
poster : function () {
|
2013-05-17 05:03:52 +02:00
|
|
|
|
return "/mediacover/" + this.get('id') + "/poster.jpg";
|
2013-04-04 06:38:51 +02:00
|
|
|
|
},
|
2013-04-23 04:07:21 +02:00
|
|
|
|
fanArt : function () {
|
2013-05-17 05:03:52 +02:00
|
|
|
|
return "/mediacover/" + this.get('id') + "/fanart.jpg";
|
2013-04-23 04:07:21 +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
|
|
|
|
},
|
2013-06-09 00:23:17 +02:00
|
|
|
|
imdbUrl : function () {
|
2013-06-07 17:42:28 +02:00
|
|
|
|
return "http://imdb.com/title/" + this.get('imdbId');
|
|
|
|
|
},
|
2013-04-10 05:17:41 +02:00
|
|
|
|
isContinuing : function () {
|
2013-05-06 03:16:38 +02:00
|
|
|
|
return this.get('status') === 'continuing';
|
2013-04-25 02:23:07 +02:00
|
|
|
|
},
|
2013-04-26 06:45:45 +02:00
|
|
|
|
shortDate : function () {
|
2013-04-25 02:23:07 +02:00
|
|
|
|
var date = this.get('nextAiring');
|
|
|
|
|
|
|
|
|
|
if (!date) {
|
|
|
|
|
return '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return Date.create(date).short();
|
2013-06-05 07:22:07 +02:00
|
|
|
|
},
|
2013-06-09 00:23:17 +02:00
|
|
|
|
route : function () {
|
2013-06-05 07:22:07 +02:00
|
|
|
|
return '/series/details/' + this.get('titleSlug');
|
2013-06-09 00:23:17 +02:00
|
|
|
|
//return '/series/details/' + this.get('id');
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
qualityProfile: function () {
|
|
|
|
|
return qualityProfiles.get(this.get('qualityProfileId')).toJSON();
|
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-04-22 03:21:24 +02:00
|
|
|
|
isExisting : false,
|
2013-04-23 04:07:21 +02:00
|
|
|
|
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
|
|
|
|
});
|