-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.py
78 lines (53 loc) · 2.4 KB
/
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# -*- coding: utf-8 -*-
import json
import bot
from flask import Flask, request, make_response, render_template
coders_bot = bot.CodersBot()
slack = coders_bot.client
app = Flask(__name__)
def event_handler(event_type, slack_event):
team_id = slack_event["team_id"]
if event_type == "team_join":
user_id = slack_event["event"]["user"]["id"]
coders_bot.onboarding_message(team_id, user_id)
return make_response("Welcome Message Sent", 200)
if event_type == "message" or event_type == "app_mention":
try:
user_id = slack_event["event"]["user"]
if coders_bot.is_myself(user_id):
return make_response("Message by myself", 200, {"X-Slack-No-Retry": 1})
coders_bot.answer_message(slack_event)
return make_response("Answer Sent", 200)
except Exception:
return make_response("Unhandled message", 200, {"X-Slack-No-Retry": 1})
return make_response("You have not added an event handler for the %s" % event_type, 200, {"X-Slack-No-Retry": 1})
@app.route("/", methods=["GET"])
def root():
return render_template("index.html")
@app.route("/install", methods=["GET"])
def install():
client_id = coders_bot.oauth["client_id"]
scope = coders_bot.oauth["scope"]
return render_template("install.html", client_id=client_id, scope=scope)
@app.route("/thanks", methods=["GET", "POST"])
def thanks():
code_arg = request.args.get('code')
coders_bot.auth(code_arg)
return render_template("thanks.html")
@app.route("/listening", methods=["GET", "POST"])
def hears():
slack_event = json.loads(request.data)
if "challenge" in slack_event:
return make_response(slack_event["challenge"], 200, {"content_type":
"application/json"
})
if coders_bot.verification != slack_event.get("token"):
message = "Invalid Slack verification token: %s \nCodersBot has: \
% s\n\n" % (slack_event["token"], coders_bot.verification)
make_response(message, 403, {"X-Slack-No-Retry": 1})
if "event" in slack_event:
event_type = slack_event["event"]["type"]
return event_handler(event_type, slack_event)
return make_response("Unhandled event", 404, {"X-Slack-No-Retry": 1})
if __name__ == '__main__':
app.run(debug=True)