forked from nishant8BITS/Rocket.Chat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetUserActiveStatus.js
More file actions
51 lines (40 loc) · 1.35 KB
/
setUserActiveStatus.js
File metadata and controls
51 lines (40 loc) · 1.35 KB
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
Meteor.methods({
setUserActiveStatus(userId, active) {
check(userId, String);
check(active, Boolean);
if (!Meteor.userId()) {
throw new Meteor.Error('error-invalid-user', 'Invalid user', {
method: 'setUserActiveStatus'
});
}
if (RocketChat.authz.hasPermission(Meteor.userId(), 'edit-other-user-active-status') !== true) {
throw new Meteor.Error('error-not-allowed', 'Not allowed', {
method: 'setUserActiveStatus'
});
}
const user = RocketChat.models.Users.findOneById(userId);
if (user) {
RocketChat.models.Users.setUserActive(userId, active);
if (user.username) {
RocketChat.models.Subscriptions.setArchivedByUsername(user.username, !active);
}
if (active === false) {
RocketChat.models.Users.unsetLoginTokens(userId);
} else {
RocketChat.models.Users.unsetReason(userId);
}
const destinations = Array.isArray(user.emails) && user.emails.map(email => `${ user.name || user.username }<${ email.address }>`);
if (destinations) {
const email = {
to: destinations,
from: RocketChat.settings.get('From_Email'),
subject: Accounts.emailTemplates.userActivated.subject({active}),
html: Accounts.emailTemplates.userActivated.html({active, name: user.name, username: user.username})
};
Meteor.defer(() => Email.send(email));
}
return true;
}
return false;
}
});