Commit 27721fc4 by Luciano Barletta

first commit

0 parents
{
"python.pythonPath": "/usr/bin/python3"
}
\ No newline at end of file \ No newline at end of file
#-*- coding: utf-8 -*-
from flask import Flask, json, request
import random
app = Flask(__name__)
TOKEN_LENGHT = 32
TOKEN_STRING = "\
1234567890\
qwertyuiopasdfghjklzxcvbnm\
QWERTYUIOPASDFGHJKLZXCVBNM"
sessions = {}
@app.after_request
def after_request(response):
# headers permitidos para la conversación
response.headers.add('Access-Control-Allow-Headers', '\
Access-Control-Allow-Methods,\
Access-Control-Allow-Origin,\
Content-Type')
# orígenes permitidos para CORS
response.headers.add('Access-Control-Allow-Origin', '*')
# métodos permitidos
response.headers.add('Access-Control-Allow-Methods', 'GET,POST')
return response
def validate(name,psw):
if name == "admin" and psw == "admin":
return True
return False
def token():
result = ""
i = 0
while i < TOKEN_LENGHT:
char = random.randrange(0,len(TOKEN_STRING))
result += str(TOKEN_STRING[char])
i += 1
return result
@app.route('/login', methods = ['POST'])
def login():
data = request.json
if validate(data['name'],data['pass']):
sessions['name'] = token()
return json.dumps({
"error_code" : 0,
"error" : "",
"token" : sessions['name']
})
return json.dumps({
"error_code" : 1,
"error" : "fallo en la validacion",
"token" : None
})
if __name__ == "__main__":
app.run("0.0.0.0")
\ No newline at end of file \ No newline at end of file
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!