-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathokta_expire_user_password.js
45 lines (39 loc) · 1.36 KB
/
okta_expire_user_password.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
const axios = require('axios');
module.exports = function(RED) {
function okta_expire_user_password(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 + '/lifecycle/expire_password';
axios.post(url, {}, { headers }).then(response => {
node.warn(userName + ' (id: ' + userID + ') password was expired');
node.send(msg);
})
.catch(error => {
node.warn(error);
});
} catch(error) {
node.warn(error);
}
});
}
RED.nodes.registerType("okta_expire_user_password", okta_expire_user_password);
};