-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathunlicense.js
131 lines (119 loc) · 4.17 KB
/
unlicense.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
var Promise = require('promise');
var request = require("request");
var async = require("async");
var siteId = token = "";
var login = function(username, password) {
return new Promise(function(resolve, reject) {
var options = {
method: "POST",
url: "https://tableauserver.theinformationlab.co.uk/api/2.6/auth/signin",
headers: {
"Accept": "application/json"
},
body: "<tsRequest>\
<credentials name='" + username + "' password='" + password + "'>\
<site contentUrl=''/>\
</credentials>\
</tsRequest>"
};
request(options, function(error, response, body) {
if (error) reject(error);
else {
var creds = JSON.parse(body).credentials;
siteId = creds.site.id;
token = creds.token;
resolve(creds);
}
});
});
}
var getSites = function() {
return new Promise(function(resolve, reject) {
var options = {
method: "GET",
url: "https://tableauserver.theinformationlab.co.uk/api/2.6/sites",
headers: {"X-Tableau-Auth":token,"Accept":"application/json"},
};
request(options, function (error, response, body) {
resolve(JSON.parse(body).sites.site);
});
});
}
var checkUsers = function(sites) {
return new Promise(function(resolve, reject) {
async.eachSeries(sites, function(site, switchsitecallback) {
if (site.id != siteId) {
var options = {
method: "POST",
url: "https://tableauserver.theinformationlab.co.uk/api/2.6/auth/switchSite",
headers: {
"X-Tableau-Auth":token,
"Accept": "application/json"
},
body: "<tsRequest><site contentUrl='"+site.contentUrl+"'/></tsRequest>"
};
request(options, function(error, response, body) {
var creds = JSON.parse(body).credentials;
siteId = creds.site.id;
token = creds.token;
console.log("Site:", creds.site.contentUrl);
getStaleUsers(function(users) {
async.eachSeries(users, function(user, callback) {
var options = {
method: "PUT",
url: "https://tableauserver.theinformationlab.co.uk/api/2.6/sites/"+siteId+"/users/" + user.id,
headers: {"X-Tableau-Auth":token,"Accept":"application/json"},
body: "<tsRequest><user siteRole='Unlicensed'/></tsRequest>"
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
if (JSON.parse(body).user) {
console.log("User Unlicensed", JSON.parse(body).user.name);
} else {
console.log(body);
}
callback();
});
}, function(err) {
switchsitecallback();
});
});
});
} else {
console.log("Site:", site.contentUrl);
getStaleUsers(function(users) {
async.eachSeries(users, function(user, callback) {
var options = {
method: "PUT",
url: "https://tableauserver.theinformationlab.co.uk/api/2.6/sites/"+siteId+"/users/" + user.id,
headers: {"X-Tableau-Auth":token,"Accept":"application/json"},
body: "<tsRequest><user siteRole='Unlicensed'/></tsRequest>"
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log("User Unlicensed", JSON.parse(body).user.name);
callback();
});
}, function(err) {
switchsitecallback();
});
});
}
});
});
}
var getStaleUsers = function(callback) {
var options = {
method: "GET",
url: "https://tableauserver.theinformationlab.co.uk/api/2.6/sites/"+siteId+"/users?filter=lastLogin:lt:2017-08-01T00:00:00:00Z",
headers: {"X-Tableau-Auth":token,"Accept":"application/json"},
};
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
callback(JSON.parse(body).users.user);
});
}
login('username', 'password')
.then(getSites)
.then(sites => checkUsers(sites))