-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathokta_clear_user_sessions.js
41 lines (35 loc) · 1.22 KB
/
okta_clear_user_sessions.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
const axios = require('axios');
module.exports = function(RED) {
function okta_clear_user_sessions(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
)
headers = {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': 'SSWS ' + apiKey
};
const url = 'https://' + oktaDomain + '.okta.com/api/v1/users/' + userID + '/sessions';
const res = axios.delete(url, { headers });
node.warn(userName + ' (id: ' + userID + ') sessions was deleted');
node.send(msg);
}catch(error) {
node.warn(error);
}
});
}
RED.nodes.registerType("okta_clear_user_sessions", okta_clear_user_sessions);
};