|
|
|
@ -1,47 +1,21 @@
|
|
|
|
|
define(['app'], function () {
|
|
|
|
|
NzbDrone.Quality.QualityProfileModel = Backbone.Model.extend({
|
|
|
|
|
initialize: function () {
|
|
|
|
|
this.validators = {};
|
|
|
|
|
|
|
|
|
|
this.validators.name = function (value) {
|
|
|
|
|
return value.length > 0 ? { isValid: true } : { isValid: false, message: 'You must enter a name' };
|
|
|
|
|
};
|
|
|
|
|
mutators: {
|
|
|
|
|
allowed: function() {
|
|
|
|
|
return _.where(this.get('qualities'), { allowed: true });
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
//this.validators.allowed = function (value) {
|
|
|
|
|
// return value.length > 0 ? { isValid: true } : { isValid: false, message: 'You must have allowed qualities' };
|
|
|
|
|
//};
|
|
|
|
|
//Todo: Cutoff should be something that is allowed (double check)
|
|
|
|
|
this.validators.cutoff = function (value) {
|
|
|
|
|
return value !== null ? { isValid: true } : { isValid: false, message: 'You must have a valid cutoff' };
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
validateItem: function (key) {
|
|
|
|
|
return (this.validators[key]) ? this.validators[key](this.get(key)) : { isValid: true };
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// TODO: Implement Backbone's standard validate() method instead.
|
|
|
|
|
validateAll: function () {
|
|
|
|
|
|
|
|
|
|
var messages = {};
|
|
|
|
|
|
|
|
|
|
for (var key in this.validators) {
|
|
|
|
|
if (this.validators.hasOwnProperty(key)) {
|
|
|
|
|
var check = this.validators[key](this.get(key));
|
|
|
|
|
if (check.isValid === false) {
|
|
|
|
|
messages[key] = check.message;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
cutoffName: function() {
|
|
|
|
|
return _.findWhere(this.get('qualities'), { id: this.get('cutoff') }).name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return _.size(messages) > 0 ? { isValid: false, messages: messages } : { isValid: true };
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
defaults: {
|
|
|
|
|
Id: null,
|
|
|
|
|
Name: '',
|
|
|
|
|
id: null,
|
|
|
|
|
name: '',
|
|
|
|
|
//allowed: {},
|
|
|
|
|
Cutoff: null
|
|
|
|
|
cutoff: null
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|