Libraryless. Click here for Pure Java version (852L/6K/19K).
1 | !752 |
2 | |
3 | answer {
|
4 | if "is slack user * a trusted user?" |
5 | ret isTrustedUser(m.unq(0)); |
6 | if "am i a trusted user?" |
7 | ret isTrustedUser(getUserName()); |
8 | if "print user name" {
|
9 | if (getUserName() == null) |
10 | ret "You're not on slack, at least not right now."; |
11 | else |
12 | ret "Your slack user name: " + quote(getUserName()); |
13 | } |
14 | } |
15 | |
16 | static S unslack(S s) {
|
17 | ret dropPrefix("@", unnull(s));
|
18 | } |
19 | |
20 | // yes/dunno/partially |
21 | static S isTrustedUser(S user) {
|
22 | user = unslack(user); |
23 | if (eq(user, "stefanreich")) |
24 | ret "yes"; |
25 | if (eq(user, "bgrgndz")) |
26 | ret "partially"; |
27 | ret "dunno"; |
28 | } |
29 | |
30 | static S isTrustedUser() {
|
31 | ret isTrustedUser(getUserName()); |
32 | } |
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: | 1202 / 2172 |
| Referenced in: | [show references] |