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: 764 / 2136
Version history: 3 change(s)
Referenced in: [show references]