-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.py
56 lines (45 loc) · 1.54 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
import json
from chalice import Chalice, Cron
from urllib.parse import parse_qs
import os
from chalicelib.helpers import is_root_domain
app = Chalice(app_name='slash_bot')
app.debug = True
@app.route('/root-domain', methods=['POST'], content_types=['application/json',
'application/x-www-form-urlencoded'])
def root_domain():
parsed = parse_qs(app.current_request.raw_body.decode())
domain = parsed.get('text')
if domain is None:
message = 'No input given for the command \n Usage: `/root-domain domain.com`'
return {
'statusCode': 200,
'response_type': 'ephemeral',
'text': message
}
else:
info = is_root_domain(domain[0])
print(info)
return {
'statusCode': 200,
'response_type': 'ephemeral',
'text': info
}
# The view function above will return {"hello": "world"}
# whenever you make an HTTP GET request to '/'.
#
# Here are a few more examples:
#
# @app.route('/hello/{name}')
# def hello_name(name):
# # '/hello/james' -> {"hello": "james"}
# return {'hello': name}
#
# @app.route('/users', methods=['POST'])
# def create_user():
# # This is the JSON body the user sent in their POST request.
# user_as_json = app.current_request.json_body
# # We'll echo the json body back to the user in a 'user' key.
# return {'user': user_as_json}
#
# See the README documentation for more examples.