mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
30 lines
874 B
JavaScript
30 lines
874 B
JavaScript
import Ember from 'ember';
|
|
var PostValidator = Ember.Object.create({
|
|
check: function (model) {
|
|
var validationErrors = [],
|
|
data = model.getProperties('title', 'meta_title', 'meta_description');
|
|
|
|
if (validator.empty(data.title)) {
|
|
validationErrors.push({
|
|
message: 'You must specify a title for the post.'
|
|
});
|
|
}
|
|
|
|
if (!validator.isLength(data.meta_title, 0, 150)) {
|
|
validationErrors.push({
|
|
message: 'Meta Title cannot be longer than 150 characters.'
|
|
});
|
|
}
|
|
|
|
if (!validator.isLength(data.meta_description, 0, 200)) {
|
|
validationErrors.push({
|
|
message: 'Meta Description cannot be longer than 200 characters.'
|
|
});
|
|
}
|
|
|
|
return validationErrors;
|
|
}
|
|
});
|
|
|
|
export default PostValidator;
|