mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
983110d931
no issue - add eslint-plugin-ember, configure no-old-shims rule - run `eslint --fix` on `app`, `lib`, `mirage`, and `tests` to move imports to the new module imports - further cleanup of Ember globals usage - remove event-dispatcher initializer now that `canDispatchToEventManager` is deprecated
121 lines
3.7 KiB
JavaScript
121 lines
3.7 KiB
JavaScript
import BaseValidator from './base';
|
|
import {isBlank} from '@ember/utils';
|
|
|
|
export default BaseValidator.create({
|
|
properties: ['name', 'bio', 'email', 'location', 'website', 'roles'],
|
|
|
|
isActive(model) {
|
|
return (model.get('status') === 'active');
|
|
},
|
|
|
|
name(model) {
|
|
let name = model.get('name');
|
|
|
|
if (this.isActive(model)) {
|
|
if (validator.empty(name)) {
|
|
model.get('errors').add('name', 'Please enter a name.');
|
|
this.invalidate();
|
|
} else if (!validator.isLength(name, 0, 150)) {
|
|
model.get('errors').add('name', 'Name is too long');
|
|
this.invalidate();
|
|
}
|
|
}
|
|
},
|
|
|
|
bio(model) {
|
|
let bio = model.get('bio');
|
|
|
|
if (this.isActive(model)) {
|
|
if (!validator.isLength(bio, 0, 200)) {
|
|
model.get('errors').add('bio', 'Bio is too long');
|
|
this.invalidate();
|
|
}
|
|
}
|
|
},
|
|
|
|
email(model) {
|
|
let email = model.get('email');
|
|
|
|
if (!validator.isEmail(email)) {
|
|
model.get('errors').add('email', 'Please supply a valid email address');
|
|
this.invalidate();
|
|
}
|
|
},
|
|
|
|
location(model) {
|
|
let location = model.get('location');
|
|
|
|
if (this.isActive(model)) {
|
|
if (!validator.isLength(location, 0, 150)) {
|
|
model.get('errors').add('location', 'Location is too long');
|
|
this.invalidate();
|
|
}
|
|
}
|
|
},
|
|
|
|
website(model) {
|
|
let website = model.get('website');
|
|
// eslint-disable-next-line camelcase
|
|
let isInvalidWebsite = !validator.isURL(website, {require_protocol: false})
|
|
|| !validator.isLength(website, 0, 2000);
|
|
|
|
if (this.isActive(model)) {
|
|
if (!validator.empty(website) && isInvalidWebsite) {
|
|
model.get('errors').add('website', 'Website is not a valid url');
|
|
this.invalidate();
|
|
}
|
|
}
|
|
},
|
|
|
|
roles(model) {
|
|
if (!this.isActive(model)) {
|
|
let roles = model.get('roles');
|
|
|
|
if (roles.length < 1) {
|
|
model.get('errors').add('role', 'Please select a role');
|
|
this.invalidate();
|
|
}
|
|
}
|
|
},
|
|
|
|
passwordChange(model) {
|
|
let newPassword = model.get('newPassword');
|
|
let ne2Password = model.get('ne2Password');
|
|
|
|
// validation only marks the requested property as validated so we
|
|
// have to add properties manually
|
|
model.get('hasValidated').addObject('newPassword');
|
|
model.get('hasValidated').addObject('ne2Password');
|
|
|
|
if (isBlank(newPassword) && isBlank(ne2Password)) {
|
|
model.get('errors').add('newPassword', 'Sorry, passwords can\'t be blank');
|
|
this.invalidate();
|
|
} else {
|
|
if (!validator.equals(newPassword, ne2Password)) {
|
|
model.get('errors').add('ne2Password', 'Your new passwords do not match');
|
|
this.invalidate();
|
|
}
|
|
|
|
if (!validator.isLength(newPassword, 8)) {
|
|
model.get('errors').add('newPassword', 'Your password must be at least 8 characters long.');
|
|
this.invalidate();
|
|
}
|
|
}
|
|
},
|
|
|
|
ownPasswordChange(model) {
|
|
let oldPassword = model.get('password');
|
|
|
|
this.passwordChange(model);
|
|
|
|
// validation only marks the requested property as validated so we
|
|
// have to add properties manually
|
|
model.get('hasValidated').addObject('password');
|
|
|
|
if (isBlank(oldPassword)) {
|
|
model.get('errors').add('password', 'Your current password is required to set a new one');
|
|
this.invalidate();
|
|
}
|
|
}
|
|
});
|