Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

37
LINES

< > BotCompany Repo | #1002018 // Slack Auto-Invite Bot (LIVE)

JavaX source code [tags: use-pretranspiled] - run with: x30.jar

Libraryless. Click here for Pure Java version (1689L/12K/39K).

!7

html {
  //ret "URI is: " + quote(subUri) + ", params are: " + structure(params);
  
  S slackInviteUrl = "https://nlbots.slack.com/api/users.admin.invite?t=" + now()/1000; // PHP time()
  S token = loadSecretTextFileMandatory("#1001925", "nlbots-slack-token").trim();
  
  S email = params.get("email");
  if (isEmpty(email))
    ret hmobilefix() + htitle_h1("Get invited to Slack (nlbots.slack.com)")
    + hform(
      "Your e-mail: " + hinputfield("email", "my@email.com", autofocus := "autofocus")
      + " " + hsubmit("Invite me")
    , method := "POST");
    
  S autoJoinChannels = "C0FHTG6SY,C0FHTG6UC";

  Map fields = litmap(
    "email", email,
    "channels", autoJoinChannels,
    "first_name", "",
    "token", token,
    "set_active", "true",
    "_attempts", "1"
  );

  S data = doPost(fields, slackInviteUrl);
  print(data);
  Map map = jsonDecodeMap(data);
  if (booleanValue(map.get("ok")))
    ret "OK, invitation sent to: " + email;
  else if (eq(map.get("error"), "already_invited"))
    ret "You have already been invited... if you think this is an error, please contact info@ai1.lol.";
  else
    ret "Sorry, error...";
}

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: 768 / 2141
Version history: 3 change(s)
Referenced in: #3000169 - Answer for stefanreich
#3000174 - Answer for stefanreich
#3000175 - Answer for stefanreich
#3000176 - Answer for stefanreich
#3000177 - Answer for stefanreich
#3000179 - Answer for stefanreich
#3000180 - Answer for stefanreich
#3000181 - Answer for stefanreich
#3000182 - Answer for stefanreich
#3000184 - Answer for stefanreich
#3000185 - Answer for stefanreich
#3000202 - Answer for stefanreich (>> T conversion bot)
#3000203 - Answer for stefanreich (>> timing hello bot)
#3000208 - Answer for bgrgndz (>> list sub bots)
#3000209 - Answer for bgrgndz (>> list sub bots)
#3000238 - Answer for stefanreich (>> t power bot)
#3000369 - Answer for Stefan (>> list sub bots)
#3000376 - Answer for stefanreich (>> list sub bots)
#3000377 - Answer for stefanreich (>> timing eleu?)
#3000380 - Answer for stefanreich (>> list sub bots)
#3000381 - Answer for speedforce (>> list sub bots)
#3000382 - Answer for ferdie (>> t = 1, f = 0)
#3000383 - Answer for funkoverflow (>> t=1, f=0 okay)