Libraryless. Click here for Pure Java version (1689L/12K/39K).
1 | !7 |
2 | |
3 | html { |
4 | //ret "URI is: " + quote(subUri) + ", params are: " + structure(params); |
5 | |
6 | S slackInviteUrl = "https://nlbots.slack.com/api/users.admin.invite?t=" + now()/1000; // PHP time() |
7 | S token = loadSecretTextFileMandatory("#1001925", "nlbots-slack-token").trim(); |
8 | |
9 | S email = params.get("email"); |
10 | if (isEmpty(email)) |
11 | ret hmobilefix() + htitle_h1("Get invited to Slack (nlbots.slack.com)") |
12 | + hform( |
13 | "Your e-mail: " + hinputfield("email", "my@email.com", autofocus := "autofocus") |
14 | + " " + hsubmit("Invite me") |
15 | , method := "POST"); |
16 | |
17 | S autoJoinChannels = "C0FHTG6SY,C0FHTG6UC"; |
18 | |
19 | Map fields = litmap( |
20 | "email", email, |
21 | "channels", autoJoinChannels, |
22 | "first_name", "", |
23 | "token", token, |
24 | "set_active", "true", |
25 | "_attempts", "1" |
26 | ); |
27 | |
28 | S data = doPost(fields, slackInviteUrl); |
29 | print(data); |
30 | Map map = jsonDecodeMap(data); |
31 | if (booleanValue(map.get("ok"))) |
32 | ret "OK, invitation sent to: " + email; |
33 | else if (eq(map.get("error"), "already_invited")) |
34 | ret "You have already been invited... if you think this is an error, please contact info@ai1.lol."; |
35 | else |
36 | ret "Sorry, error..."; |
37 | } |
download show line numbers debug dex old transpilations
Travelled to 15 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, jtubtzbbkimh, lpdgvwnxivlt, mqqgnosmbjvj, onxytkatvevr, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1002018 |
Snippet name: | Slack Auto-Invite Bot (LIVE) |
Eternal ID of this version: | #1002018/4 |
Text MD5: | 812f944a9abd160a3609b5dc2c275dac |
Transpilation MD5: | 223b54e98433e150c8734f18086e0078 |
Author: | stefan |
Category: | javax |
Type: | JavaX source code |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2017-04-18 19:53:45 |
Source code size: | 1188 bytes / 37 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 824 / 2221 |
Version history: | 3 change(s) |
Referenced in: | [show references] |