-
Notifications
You must be signed in to change notification settings - Fork 1
/
okta_remove_user_from_group.js
49 lines (41 loc) · 1.5 KB
/
okta_remove_user_from_group.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
const axios = require('axios');
module.exports = function(RED) {
function okta_remove_user_from_group(config) {
RED.nodes.createNode(this, config);
var node = this;
node.on('input', function(msg) {
try{
node.auth = RED.nodes.getNode(config.auth);
if (!node.auth || !node.auth.has_credentials) {
node.error("auth configuration is missing");
return
}
const {apiKey, oktaDomain} = config.auth;
const userID = RED.util.evaluateNodeProperty(
config.userID, config.userIDType, node, msg
)
const userName = RED.util.evaluateNodeProperty(
config.userName, config.userNameType, node, msg
)
const groupID = RED.util.evaluateNodeProperty(
config.groupID, config.userIDType, node, msg
)
const groupName = RED.util.evaluateNodeProperty(
config.groupName, config.userNameType, node, msg
)
headers = {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': 'SSWS ' + apiKey
};
const url = 'https://' + oktaDomain + '.okta.com/api/v1/groups/' + groupID + '/users/' + userID;
const res = axios.delete(url, { headers });
node.warn(userName + ' (id: ' + userID + ') was removed from ' + groupName + ' (id: ' + groupID + ')');
node.send(msg);
}catch(error) {
node.warn(error);
}
});
}
RED.nodes.registerType("okta_remove_user_from_group", okta_remove_user_from_group);
};