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

32
LINES

< > BotCompany Repo | #1002430 // Trusted User Bot

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

Libraryless. Click here for Pure Java version (852L/6K/19K).

!752

answer {
  if "is slack user * a trusted user?"
    ret isTrustedUser(m.unq(0));
  if "am i a trusted user?"
    ret isTrustedUser(getUserName());
  if "print user name" {
    if (getUserName() == null)
      ret "You're not on slack, at least not right now.";
    else
      ret "Your slack user name: " + quote(getUserName());
  }
}

static S unslack(S s) {
  ret dropPrefix("@", unnull(s));
}

// yes/dunno/partially
static S isTrustedUser(S user) {
  user = unslack(user);
  if (eq(user, "stefanreich"))
    ret "yes";
  if (eq(user, "bgrgndz"))
    ret "partially";
  ret "dunno";
}

static S isTrustedUser() {
  ret isTrustedUser(getUserName());
}

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1002430
Snippet name: Trusted User Bot
Eternal ID of this version: #1002430/1
Text MD5: 02f8315808e7aeffd826e436b125ad87
Transpilation MD5: 110b43a56363b17ec3e336a13404998e
Author: stefan
Category: eleu
Type: JavaX source code
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2016-01-23 17:54:35
Source code size: 690 bytes / 32 lines
Pitched / IR pitched: No / No
Views / Downloads: 639 / 1432
Referenced in: [show references]