-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathuser.js
78 lines (67 loc) · 2.6 KB
/
user.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
// eslint-disable-next-line ember/no-computed-properties-in-native-classes
import { computed } from '@ember/object';
import Model, { attr, belongsTo, hasMany } from '@ember-data/model';
const orderedApplicationNames = ['app', 'orga', 'certif'];
const applicationLabels = {
app: 'Pix App',
orga: 'Pix Orga',
certif: 'Pix Certif',
};
export default class User extends Model {
@attr() firstName;
@attr() lastName;
@attr() email;
@attr() username;
@attr('boolean') cgu;
@attr('boolean') pixOrgaTermsOfServiceAccepted;
@attr('boolean') pixCertifTermsOfServiceAccepted;
@attr() lang;
@attr() locale;
@attr() createdAt;
@attr() lastTermsOfServiceValidatedAt;
@attr() lastPixOrgaTermsOfServiceValidatedAt;
@attr() lastPixCertifTermsOfServiceValidatedAt;
@attr() lastLoggedAt;
@attr() emailConfirmedAt;
@attr() hasBeenAnonymised;
@attr() hasBeenAnonymisedBy;
@attr() anonymisedByFullName;
@attr() isPixAgent;
// includes
@belongsTo('profile', { async: true, inverse: null }) profile;
@belongsTo('user-login', { async: true, inverse: null }) userLogin;
@hasMany('organization-membership', { async: true, inverse: 'user' }) organizationMemberships;
@hasMany('certification-center-membership', { async: true, inverse: 'user' }) certificationCenterMemberships;
@hasMany('organization-learner', { async: true, inverse: 'user' }) organizationLearners;
@hasMany('authentication-method', { async: true, inverse: null }) authenticationMethods;
@hasMany('last-application-connection', { async: false, inverse: null }) lastApplicationConnections;
@hasMany('user-participation', { async: true, inverse: null }) participations;
@computed('firstName', 'lastName')
get fullName() {
return `${this.firstName} ${this.lastName}`;
}
get language() {
return this.lang?.toUpperCase();
}
get organizationMembershipCount() {
return this.organizationMemberships.length;
}
get certificationCenterMembershipCount() {
return this.certificationCenterMemberships.length;
}
get participationCount() {
return this.participations.length;
}
get authenticationMethodCount() {
return this.username && this.email ? this.authenticationMethods.length + 1 : this.authenticationMethods.length;
}
get orderedLastApplicationConnections() {
const connections = orderedApplicationNames.map((applicationName) => {
const lastLoggedAt = this.lastApplicationConnections?.find((connection) => {
return connection.application === applicationName;
})?.lastLoggedAt;
return { lastLoggedAt, label: applicationLabels[applicationName] };
});
return connections;
}
}