Compare commits

...

6 Commits

Author SHA1 Message Date
wcolmenares b9ecd50245 incude flask_restful 2019-06-05 06:02:41 -04:00
wcolmenares 170c7727e4 clean up catch error 2019-06-05 06:02:14 -04:00
wcolmenares d4d82ae1c3 new wsgi conf 2019-06-02 09:00:18 -04:00
wcolmenares fdafe569fb Include flask in the wsgi file 2019-06-01 08:05:11 -04:00
wcolmenares 71ee739fc4 added requests and flask to requirements 2019-06-01 08:04:42 -04:00
wcolmenares 95b5b173d6 added minimal flask app 2019-06-01 08:03:59 -04:00
5 changed files with 75 additions and 2 deletions

0
flaskapp/__init__.py Normal file
View File

66
flaskapp/app.py Normal file
View File

@ -0,0 +1,66 @@
from flask import Flask, request, jsonify, json
from flask_restful import Resource, Api
import requests
from decouple import config
from pyotp import TOTP
app = Flask(__name__)
api = Api(app)
def check_otp(name, realm, token):
data = {
"auth_name": config('AUTH_NAME', ''),
"auth_token": TOTP(config('AUTH_SEED', '')).now(),
"auth_realm": config('AUTH_REALM', ''),
"name": name,
"realm": realm,
"token": token
}
response = requests.post(
"https://{OTP_SERVER}{OTP_VERIFY_ENDPOINT}".format(
OTP_SERVER=config('OTP_SERVER', ''),
OTP_VERIFY_ENDPOINT=config('OTP_VERIFY_ENDPOINT', '/ungleichotp/verify/')
),
data=data
)
return response.status_code
class MainView(Resource):
def get(self):
return jsonify({'Detail': 'This view is open to users'})
class ProtectedView(Resource):
def post(self):
data = request.get_json()
if data is not None:
try:
user = data['name']
realm = data['realm']
token = data['token']
assert(realm == config('REALM_ALLOWED'))
code = check_otp(user, realm, token)
assert(code == 200)
except (KeyError, AssertionError) as e:
response = app.response_class(response=json.dumps({'Message': 'Invalid data'}),
status=400,
mimetype='application/json')
return response
response = app.response_class(response=json.dumps({'data sent': data}),
status=200,
mimetype='application/json')
return response
else:
return app.response_class(response=json.dumps({'Message': 'invalid request'}),
status=400,
mimetype='application/json')
api.add_resource(MainView, '/')
api.add_resource(ProtectedView, '/protected')
if __name__ == '__main__':
app.run(host='::')

4
flaskapp/wsgi.py Normal file
View File

@ -0,0 +1,4 @@
from flaskapp.app import app
if __name__ == "__main__":
app.run()

View File

@ -2,7 +2,9 @@ pyotp>=2.2.6
django>=2.1.2
djangorestframework
python-decouple>=3.1
flask
flask_restful
requests
# DB
psycopg2

View File

@ -8,9 +8,10 @@ https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ungleichotpserver.settings')
application = get_wsgi_application()