Ghost/ghost/admin/app/models/member.js

59 lines
1.9 KiB
JavaScript
Raw Normal View History

import Model, {attr, hasMany} from '@ember-data/model';
import ValidationEngine from 'ghost-admin/mixins/validation-engine';
import {inject as service} from '@ember/service';
import {task} from 'ember-concurrency';
export default Model.extend(ValidationEngine, {
validationType: 'member',
name: attr('string'),
email: attr('string'),
note: attr('string'),
status: attr('string'),
createdAtUTC: attr('moment-utc'),
lastSeenAtUTC: attr('moment-utc'),
subscriptions: attr('member-subscription'),
attribution: attr(),
subscribed: attr('boolean', {defaultValue: true}),
comped: attr('boolean', {defaultValue: false}),
geolocation: attr('json-string'),
emailCount: attr('number', {defaultValue: 0}),
emailOpenedCount: attr('number', {defaultValue: 0}),
emailOpenRate: attr('number'),
avatarImage: attr('string'),
tiers: attr('member-tier'),
newsletters: hasMany('newsletter', {embedded: 'always', async: false}),
emailSuppression: attr(),
labels: hasMany('label', {embedded: 'always', async: false}),
ghostPaths: service(),
ajax: service(),
// remove client-generated labels, which have `id: null`.
// Ember Data won't recognize/update them automatically
// when returned from the server with ids.
// https://github.com/emberjs/data/issues/1829
updateLabels() {
let labels = this.labels;
let oldLabels = labels.filterBy('id', null);
labels.removeObjects(oldLabels);
oldLabels.invoke('deleteRecord');
},
fetchSigninUrl: task(function* () {
let url = this.get('ghostPaths.url').api('members', this.id, 'signin_urls');
let response = yield this.ajax.request(url);
return response.member_signin_urls[0];
}).drop(),
logoutAllDevices: task(function* () {
let url = this.get('ghostPaths.url').api('members', this.id, 'signout');
yield this.ajax.post(url);
}).drop()
});