mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 10:21:36 +03:00
5c0b63f300
closes #5630 - upgrade ember-cli to latest version - upgrade ember to latest 1.13.x release - upgrade ember data to latest 1.13.x release - update custom adapters and serialisers for new internal JSON-API compatible formats [(docs)][1] - update all store queries to use new standardised query methods [(docs)][2] - add ember-data-filter addon ready for store.filter removal in ember-data 2.0 [(docs)][3] - remove use of prototype extensions for computed properties and observers - consolidate pagination into a single route mixin and simplify configuration [1]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_transition-to-the-new-jsonserializer-and-restserializer-apis [2]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_simplified-find-methods [3]: http://emberjs.com/blog/2015/06/18/ember-data-1-13-released.html#toc_ds-store-filter-moved-to-an-addon
111 lines
3.6 KiB
JavaScript
111 lines
3.6 KiB
JavaScript
import Ember from 'ember';
|
|
import DS from 'ember-data';
|
|
import {request as ajax} from 'ic-ajax';
|
|
import ValidationEngine from 'ghost/mixins/validation-engine';
|
|
|
|
export default DS.Model.extend(ValidationEngine, {
|
|
validationType: 'user',
|
|
|
|
uuid: DS.attr('string'),
|
|
name: DS.attr('string'),
|
|
slug: DS.attr('string'),
|
|
email: DS.attr('string'),
|
|
image: DS.attr('string'),
|
|
cover: DS.attr('string'),
|
|
bio: DS.attr('string'),
|
|
website: DS.attr('string'),
|
|
location: DS.attr('string'),
|
|
accessibility: DS.attr('string'),
|
|
status: DS.attr('string'),
|
|
language: DS.attr('string', {defaultValue: 'en_US'}),
|
|
meta_title: DS.attr('string'),
|
|
meta_description: DS.attr('string'),
|
|
last_login: DS.attr('moment-date'),
|
|
created_at: DS.attr('moment-date'),
|
|
created_by: DS.attr('number'),
|
|
updated_at: DS.attr('moment-date'),
|
|
updated_by: DS.attr('number'),
|
|
roles: DS.hasMany('role', {
|
|
embedded: 'always',
|
|
async: false
|
|
}),
|
|
|
|
ghostPaths: Ember.inject.service('ghost-paths'),
|
|
|
|
role: Ember.computed('roles', {
|
|
get: function () {
|
|
return this.get('roles.firstObject');
|
|
},
|
|
set: function (key, value) {
|
|
// Only one role per user, so remove any old data.
|
|
this.get('roles').clear();
|
|
this.get('roles').pushObject(value);
|
|
|
|
return value;
|
|
}
|
|
}),
|
|
|
|
// TODO: Once client-side permissions are in place,
|
|
// remove the hard role check.
|
|
isAuthor: Ember.computed.equal('role.name', 'Author'),
|
|
isEditor: Ember.computed.equal('role.name', 'Editor'),
|
|
isAdmin: Ember.computed.equal('role.name', 'Administrator'),
|
|
isOwner: Ember.computed.equal('role.name', 'Owner'),
|
|
|
|
saveNewPassword: function () {
|
|
var url = this.get('ghostPaths.url').api('users', 'password');
|
|
|
|
return ajax(url, {
|
|
type: 'PUT',
|
|
data: {
|
|
password: [{
|
|
user_id: this.get('id'),
|
|
oldPassword: this.get('password'),
|
|
newPassword: this.get('newPassword'),
|
|
ne2Password: this.get('ne2Password')
|
|
}]
|
|
}
|
|
});
|
|
},
|
|
|
|
resendInvite: function () {
|
|
var fullUserData = this.toJSON(),
|
|
userData = {
|
|
email: fullUserData.email,
|
|
roles: fullUserData.roles
|
|
};
|
|
|
|
return ajax(this.get('ghostPaths.url').api('users'), {
|
|
type: 'POST',
|
|
data: JSON.stringify({users: [userData]}),
|
|
contentType: 'application/json'
|
|
});
|
|
},
|
|
|
|
passwordValidationErrors: Ember.computed('password', 'newPassword', 'ne2Password', function () {
|
|
var validationErrors = [];
|
|
|
|
if (!validator.equals(this.get('newPassword'), this.get('ne2Password'))) {
|
|
validationErrors.push({message: 'Your new passwords do not match'});
|
|
}
|
|
|
|
if (!validator.isLength(this.get('newPassword'), 8)) {
|
|
validationErrors.push({message: 'Your password is not long enough. It must be at least 8 characters long.'});
|
|
}
|
|
|
|
return validationErrors;
|
|
}),
|
|
|
|
isPasswordValid: Ember.computed.empty('passwordValidationErrors.[]'),
|
|
|
|
active: Ember.computed('status', function () {
|
|
return ['active', 'warn-1', 'warn-2', 'warn-3', 'warn-4', 'locked'].indexOf(this.get('status')) > -1;
|
|
}),
|
|
|
|
invited: Ember.computed('status', function () {
|
|
return ['invited', 'invited-pending'].indexOf(this.get('status')) > -1;
|
|
}),
|
|
|
|
pending: Ember.computed.equal('status', 'invited-pending').property('status')
|
|
});
|