Skip to content

Commit 3cfb600

Browse files
author
george.k
committed
Initial structure
1 parent dcd33c3 commit 3cfb600

File tree

6 files changed

+199
-0
lines changed

6 files changed

+199
-0
lines changed

.gitignore

+116
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
.venv/
2+
3+
# Byte-compiled / optimized / DLL files
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
8+
# C extensions
9+
*.so
10+
11+
# Distribution / packaging
12+
.Python
13+
build/
14+
develop-eggs/
15+
dist/
16+
downloads/
17+
eggs/
18+
.eggs/
19+
lib/
20+
lib64/
21+
parts/
22+
sdist/
23+
var/
24+
wheels/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
MANIFEST
29+
30+
# PyInstaller
31+
# Usually these files are written by a python script from a template
32+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
33+
*.manifest
34+
*.spec
35+
36+
# Installer logs
37+
pip-log.txt
38+
pip-delete-this-directory.txt
39+
40+
# Unit test / coverage reports
41+
htmlcov/
42+
.tox/
43+
.nox/
44+
.coverage
45+
.coverage.*
46+
.cache
47+
nosetests.xml
48+
coverage.xml
49+
*.cover
50+
.hypothesis/
51+
.pytest_cache/
52+
53+
# Translations
54+
*.mo
55+
*.pot
56+
57+
# Django stuff:
58+
*.log
59+
local_settings.py
60+
db.sqlite3
61+
62+
# Flask stuff:
63+
instance/
64+
.webassets-cache
65+
66+
# Scrapy stuff:
67+
.scrapy
68+
69+
# Sphinx documentation
70+
docs/_build/
71+
72+
# PyBuilder
73+
target/
74+
75+
# Jupyter Notebook
76+
.ipynb_checkpoints
77+
78+
# IPython
79+
profile_default/
80+
ipython_config.py
81+
82+
# pyenv
83+
.python-version
84+
85+
# celery beat schedule file
86+
celerybeat-schedule
87+
88+
# SageMath parsed files
89+
*.sage.py
90+
91+
# Environments
92+
.env
93+
.venv
94+
env/
95+
venv/
96+
ENV/
97+
env.bak/
98+
venv.bak/
99+
100+
# Spyder project settings
101+
.spyderproject
102+
.spyproject
103+
104+
# Rope project settings
105+
.ropeproject
106+
107+
# mkdocs documentation
108+
/site
109+
110+
# mypy
111+
.mypy_cache/
112+
.dmypy.json
113+
dmypy.json
114+
115+
# Pyre type checker
116+
.pyre/

Procfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
web: gunicorn --worker-class eventlet -w 1 manpage-bot:app

README README.md

File renamed without changes.

manpage-bot/__init__.py

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#! /usr/bin/env python3.7
2+
import os
3+
4+
from flask import Flask
5+
6+
app = Flask(__name__)
7+
app.config["SECRET_KEY"] = os.environ.get("FLASK_SECRET_KEY", "development secret key")
8+
app.config["DEBUG"] = True
9+
app.debug = True
10+
11+
from . import views

manpage-bot/views.py

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
#! /usr/bin/env python3.7
2+
import re
3+
import json
4+
import functools
5+
6+
from flask import request
7+
8+
from . import app
9+
10+
11+
def get_js(**kwargs):
12+
js = request.get_json(**kwargs)
13+
if js is None:
14+
raise TypeError("empty payload")
15+
if not isinstance(js, dict):
16+
js = json.loads(js) # wtf tbh?
17+
return js
18+
19+
def json_endpoint(view_fn):
20+
""" Dumps the return value of a view function to JSON.
21+
"""
22+
@functools.wraps(view_fn)
23+
def wrapper(*args, **kwargs):
24+
rv = view_fn(*args, **kwargs)
25+
if not isinstance(rv, tuple):
26+
errno = 200
27+
else:
28+
assert len(rv) == 2, "Invalid request return format."
29+
rv, errno = rv
30+
31+
if errno < 200 or errno > 299:
32+
if isinstance(rv, str):
33+
rv = { "error": rv }
34+
elif "error" not in rv:
35+
rv["error"] = "An error occurred."
36+
37+
if not isinstance(rv, str): rv = json.dumps(rv)
38+
return rv, errno
39+
40+
return wrapper
41+
42+
43+
@app.route("/api/v1/manpage", methods=["GET"])
44+
@json_endpoint
45+
def get_manpage():
46+
""" Responds to an `app_mention` event from Slack.
47+
48+
{
49+
"type": "app_mention",
50+
"user": "U061F7AUR",
51+
"text": "<@U0LAN0Z89> is it everything a river should be?",
52+
"ts": "1515449522.000016",
53+
"channel": "C0LAN2Q65",
54+
"event_ts": "1515449522000016"
55+
}
56+
"""
57+
js = get_js()
58+
print(js)
59+
return "{}"

requirements.txt

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Click==7.0
2+
dnspython==1.15.0
3+
eventlet==0.24.1
4+
Flask==1.0.2
5+
greenlet==0.4.15
6+
gunicorn==19.9.0
7+
itsdangerous==1.1.0
8+
Jinja2==2.10
9+
MarkupSafe==1.1.0
10+
monotonic==1.5
11+
six==1.11.0
12+
Werkzeug==0.14.1

0 commit comments

Comments
 (0)