2013-06-25 06:51:17 +02:00
|
|
|
|
'use strict';
|
2013-06-25 01:41:59 +02:00
|
|
|
|
define(
|
|
|
|
|
[
|
|
|
|
|
'backbone',
|
2013-06-25 07:12:42 +02:00
|
|
|
|
'Quality/QualityProfileCollection'
|
2013-06-25 01:41:59 +02:00
|
|
|
|
], function (Backbone, QualityProfileCollection) {
|
|
|
|
|
return Backbone.Model.extend({
|
|
|
|
|
|
2013-06-25 07:12:42 +02:00
|
|
|
|
urlRoot: ApiRoot + '/series',
|
2013-06-25 01:41:59 +02:00
|
|
|
|
|
|
|
|
|
mutators: {
|
|
|
|
|
percentOfEpisodes: function () {
|
|
|
|
|
var episodeCount = this.get('episodeCount');
|
|
|
|
|
var episodeFileCount = this.get('episodeFileCount');
|
|
|
|
|
|
|
|
|
|
var percent = 100;
|
|
|
|
|
|
|
|
|
|
if (episodeCount > 0) {
|
|
|
|
|
percent = episodeFileCount / episodeCount * 100;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return percent;
|
|
|
|
|
},
|
|
|
|
|
poster : function () {
|
|
|
|
|
var poster = _.find(this.get('images'), function (image) {
|
|
|
|
|
return image.coverType === 'poster';
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (poster) {
|
|
|
|
|
return poster.url;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return undefined;
|
|
|
|
|
},
|
|
|
|
|
fanArt : function () {
|
|
|
|
|
var poster = _.find(this.get('images'), function (image) {
|
|
|
|
|
return image.coverType === 'fanart';
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (poster) {
|
|
|
|
|
return poster.url;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return undefined;
|
|
|
|
|
},
|
|
|
|
|
traktUrl : function () {
|
|
|
|
|
return 'http://trakt.tv/show/' + this.get('titleSlug');
|
|
|
|
|
},
|
|
|
|
|
imdbUrl : function () {
|
|
|
|
|
return 'http://imdb.com/title/' + this.get('imdbId');
|
|
|
|
|
},
|
|
|
|
|
isContinuing : function () {
|
|
|
|
|
return this.get('status') === 'continuing';
|
|
|
|
|
},
|
|
|
|
|
route : function () {
|
2013-06-26 03:00:56 +02:00
|
|
|
|
return '/series/' + this.get('titleSlug');
|
2013-06-25 01:41:59 +02:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
qualityProfile: function () {
|
|
|
|
|
var profile = QualityProfileCollection.get(this.get('qualityProfileId'));
|
|
|
|
|
if (profile) {
|
|
|
|
|
return profile.toJSON();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return undefined;
|
2013-06-13 03:37:05 +02:00
|
|
|
|
}
|
2013-04-04 06:38:51 +02:00
|
|
|
|
},
|
2013-06-13 03:37:05 +02:00
|
|
|
|
|
2013-06-25 01:41:59 +02:00
|
|
|
|
defaults: {
|
|
|
|
|
episodeFileCount: 0,
|
|
|
|
|
episodeCount : 0,
|
|
|
|
|
isExisting : false,
|
|
|
|
|
status : 0
|
2013-02-14 03:28:56 +01:00
|
|
|
|
}
|
2013-06-25 01:41:59 +02:00
|
|
|
|
});
|
2013-02-14 03:28:56 +01:00
|
|
|
|
});
|