mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
59a15a0895
no issue - the email length validation was conditional on `member.name` rather than `member.email` so if the name was too long both name and email were marked as invalid
44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
import BaseValidator from './base';
|
|
import validator from 'validator';
|
|
import {isBlank} from '@ember/utils';
|
|
|
|
export default BaseValidator.create({
|
|
properties: ['name', 'email', 'note'],
|
|
|
|
name(model) {
|
|
if (!validator.isLength(model.name || '', 0, 191)) {
|
|
model.errors.add('name', 'Name cannot be longer than 191 characters.');
|
|
this.invalidate();
|
|
}
|
|
},
|
|
|
|
email(model) {
|
|
let email = model.get('email');
|
|
|
|
if (isBlank(email)) {
|
|
model.errors.add('email', 'Please enter an email.');
|
|
this.invalidate();
|
|
} else if (!validator.isEmail(email)) {
|
|
model.errors.add('email', 'Invalid Email.');
|
|
this.invalidate();
|
|
}
|
|
if (!validator.isLength(model.email || '', 0, 191)) {
|
|
model.errors.add('email', 'Email cannot be longer than 191 characters.');
|
|
this.invalidate();
|
|
}
|
|
|
|
model.get('hasValidated').addObject('email');
|
|
},
|
|
|
|
note(model) {
|
|
let note = model.get('note');
|
|
|
|
if (!validator.isLength(note || '', 0, 500)) {
|
|
model.errors.add('note', 'Note is too long.');
|
|
this.invalidate();
|
|
}
|
|
|
|
model.get('hasValidated').addObject('note');
|
|
}
|
|
});
|