Moibe's picture
Novelty por Flag en main.py
2ece5ff verified
raw
history blame
2.35 kB
from fastapi import FastAPI
import funciones
app = FastAPI()
#Future: Correct warnings in cryptography.
@app.get("/")
def start():
return {"Status":"Deployed"}
## GET DATA ##
#Vía Path
@app.get("/getData/")
def getData():
data = funciones.getData()
print("Tipo de resultado:", type(data))
return data
#Vía Query
#Quizá no es necesaria vía Query porque no pide parámetros.
@app.get("/getDataQ/")
def getData():
data = funciones.getData()
print("Tipo de resultado:", type(data))
return data
## GET TOKENS ##
#Vía Path
@app.get("/getTokens/{userfile}")
def getTokens(userfile: str):
tokens = funciones.getTokens(userfile)
print("Tipo de resultado:", type(tokens))
return tokens
#Vía Query
@app.get("/getTokensQ/")
def getTokens(userfile: str = "gAAAAABmEZA4SLBC2YczouOrjIEi9WNCNGOIvyUcqBUnzxNsftXTdy54KaX9x8mAjFkABSI6FJrdZDQKk_5lpJOgJoMChxlniw=="):
tokens = funciones.getTokens(userfile)
print("Tipo de resultado:", type(tokens))
return tokens
## AUTHORIZE WORK ##
#Vía Parameters
@app.get("/authorize/{tokens}/{work}")
def authorize(tokens: int, work: str):
autorizacion = funciones.authorize(tokens, work)
print("Tipo de resultado:", type(autorizacion))
return autorizacion
#Vía Query
@app.get("/authorizeQ/")
def authorize(tokens: int, work: str = "picswap"):
autorizacion = funciones.authorize(tokens,work)
print("Tipo de resultado:", type(autorizacion))
return autorizacion
## DEBIT TOKENS ##
#Vía Parámeters
@app.get("/debitTokens/{userfile}/{work}")
def debitTokens(userfile: str, work: str):
tokens = funciones.debitTokens(userfile,work)
print("Tipo de resultado:", type(tokens))
return tokens
#Vía Query
@app.get("/debitTokensQ/")
def debitTokens(userfile: str, work: str = "picswap"):
tokens = funciones.debitTokens(userfile,work)
print("Tipo de resultado:", type(tokens))
return tokens
## GET USER FLAG ##
#Vía Parámeters
@app.get("/getUserNovelty/{userfile}")
def getUserFlag(userfile: str):
novelty = funciones.getUserNovelty(userfile)
print("Tipo de resultado:", type(novelty))
return novelty
#Vía Query
@app.get("/getUserFlag/")
def getUserNovelty(userfile: str):
novelty = funciones.getUserNovelty(userfile)
print("Tipo de resultado:", type(novelty))
return novelty