TryGhost/Ghost

View on GitHub
ghost/admin/app/validators/new-user.js

Summary

Maintainability
A
2 hrs
Test Coverage
import BaseValidator from './base';
import PasswordValidatorMixin from './mixins/password';
import validator from 'validator';
import {isBlank} from '@ember/utils';

export default BaseValidator.extend(PasswordValidatorMixin, {
    init() {
        this.properties = this.properties || ['name', 'email', 'password'];
        this._super(...arguments);
    },

    name(model) {
        let name = model.name;

        if (!validator.isLength(name || '', 1)) {
            model.errors.add('name', 'Please enter a name.');
            model.hasValidated.addObject('email');
            this.invalidate();
        }
    },

    email(model) {
        let email = model.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();
        }

        model.hasValidated.addObject('email');
    },

    password(model) {
        this.passwordValidation(model);
    }
});