Compare commits
22 Commits
testBranch
...
master
Author | SHA1 | Date |
---|---|---|
|
11edbf3abf | |
|
3f8f9f708f | |
|
18aa1843cd | |
|
8733294f13 | |
|
fee0ecfe75 | |
|
fb4ad30d03 | |
|
2623106212 | |
|
16c7792b7f | |
|
2a852388bf | |
|
50559223ed | |
|
6b0de05a80 | |
|
155394ab75 | |
|
794bf9d30b | |
|
6157eb1e40 | |
|
db728f21ba | |
|
cbe0074c70 | |
|
3a247d6ce1 | |
|
e7d21a90bb | |
|
8b12ca9dae | |
|
76b6c6cb79 | |
|
2b121be258 | |
|
eefb47476a |
8
app.py
8
app.py
|
@ -3,7 +3,8 @@ from flask_restful import Api
|
||||||
|
|
||||||
from modules.KF3.database import Database as KF3DB
|
from modules.KF3.database import Database as KF3DB
|
||||||
from modules.Kingdom.database import Database as KFKDB
|
from modules.Kingdom.database import Database as KFKDB
|
||||||
from modules.JapariSling.database import Database as KFSL
|
from modules.Archive.database import Database as KFADB
|
||||||
|
from modules.proxy import AgreementProxy, LaunchProxy, UpdateProxy
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
app.config['JSON_AS_ASCII'] = False
|
app.config['JSON_AS_ASCII'] = False
|
||||||
|
@ -11,9 +12,12 @@ app.databases = {}
|
||||||
|
|
||||||
api = Api(app)
|
api = Api(app)
|
||||||
|
|
||||||
|
KFADB(api)
|
||||||
|
api.add_resource(LaunchProxy, "/DMM/launch")
|
||||||
|
api.add_resource(UpdateProxy, "/DMM/filelist", "/DMM/update")
|
||||||
|
api.add_resource(AgreementProxy, "/DMM/agreement")
|
||||||
KF3DB(api)
|
KF3DB(api)
|
||||||
KFKDB(api)
|
KFKDB(api)
|
||||||
KFSL(api)
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
app.run(host='127.0.0.1', port=8080, debug=True)
|
app.run(host='127.0.0.1', port=8080, debug=True)
|
|
@ -0,0 +1,142 @@
|
||||||
|
import json
|
||||||
|
from flask import Flask
|
||||||
|
|
||||||
|
|
||||||
|
from .databaseController import DatabaseController
|
||||||
|
from .endpoints.query import Query
|
||||||
|
from .endpoints.command import Command
|
||||||
|
from .endpoints.commands import Commands
|
||||||
|
from .endpoints.post import GetPost
|
||||||
|
from .endpoints.posts import GetPosts
|
||||||
|
from .endpoints.new_query import NewQuery
|
||||||
|
from .endpoints.set_action import SetAction
|
||||||
|
from .endpoints.posts_count import GetPostsCount
|
||||||
|
from .endpoints.account_stats import AccountStats
|
||||||
|
|
||||||
|
class Database:
|
||||||
|
db : DatabaseController = None
|
||||||
|
app : Flask = None
|
||||||
|
|
||||||
|
def __init__(self, api) -> None:
|
||||||
|
self.app = api.app
|
||||||
|
|
||||||
|
if "Archive" in self.app.databases:
|
||||||
|
del self.app.databases["Archive"]
|
||||||
|
|
||||||
|
self.reload_data("/home/pi/python/Katbots/JapariArchive/database.db")
|
||||||
|
|
||||||
|
self.app.databases["Archive"] = self
|
||||||
|
|
||||||
|
api.add_resource(Query, "/Archive/Query")
|
||||||
|
api.add_resource(NewQuery, "/Archive/NewQuery")
|
||||||
|
api.add_resource(Command, "/Archive/Command")
|
||||||
|
api.add_resource(Commands, "/Archive/Commands")
|
||||||
|
api.add_resource(GetPost, "/Archive/GetPost/<id>")
|
||||||
|
api.add_resource(GetPosts, "/Archive/GetPosts")
|
||||||
|
api.add_resource(GetPostsCount, "/Archive/GetPosts/Count")
|
||||||
|
api.add_resource(AccountStats, "/Archive/AccountStats")
|
||||||
|
api.add_resource(SetAction, "/Archive/SetAction")
|
||||||
|
|
||||||
|
def get_accounts(self):
|
||||||
|
query = f'''
|
||||||
|
SELECT x_handle, id FROM accounts
|
||||||
|
ORDER BY x_handle ASC'''
|
||||||
|
|
||||||
|
return self.db.run_query(query)
|
||||||
|
|
||||||
|
def get_account_stats(self):
|
||||||
|
query = '''SELECT x_handle,
|
||||||
|
SUM(IIF(x_posts.action_taken = 0, 1, 0)) as undecided,
|
||||||
|
SUM(IIF(x_posts.action_taken = 1, 1, 0)) as approved,
|
||||||
|
SUM(IIF(x_posts.action_taken = 2, 1, 0)) as deleted,
|
||||||
|
SUM(IIF(x_posts.action_taken = 3, 1, 0)) as hidden,
|
||||||
|
SUM(IIF(x_post_details.id is NULL, 1, 0)) as invalid
|
||||||
|
FROM accounts
|
||||||
|
LEFT JOIN x_posts on accounts.id = x_posts.account_id
|
||||||
|
LEFT JOIN x_post_details on x_post_details.id = x_posts.id
|
||||||
|
WHERE accounts.download_mode != 4
|
||||||
|
GROUP BY account_id
|
||||||
|
ORDER BY x_handle'''
|
||||||
|
return self.db.run_query(query)
|
||||||
|
|
||||||
|
def get_post(self, id):
|
||||||
|
query = f'''SELECT x_posts.id, cast(x_posts.id as TEXT) as id_str, x_posts.error_id, x_posts.action_taken, x_posts.is_saved, x_post_details.text, x_post_details.files, x_post_details.date, accounts.x_handle, accounts.rating from x_posts
|
||||||
|
LEFT JOIN x_post_details
|
||||||
|
ON x_posts.id = x_post_details.id
|
||||||
|
LEFT JOIN accounts
|
||||||
|
ON x_posts.account_id = accounts.id WHERE x_posts.id = {id}
|
||||||
|
LIMIT 1'''
|
||||||
|
result = self.db.run_query(query)
|
||||||
|
if len(result) == 0:
|
||||||
|
return None
|
||||||
|
else:
|
||||||
|
#return most recent post
|
||||||
|
return result[-1]
|
||||||
|
|
||||||
|
def build_where_query(self, artist, actions_taken = [0, 1, 2, 3], last_id = -1, include_ratings = ["SFW", "NSFW"]):
|
||||||
|
where_query = "WHERE x_post_details.id NOT NULL AND x_posts.error_id = 0"
|
||||||
|
if last_id != -1:
|
||||||
|
where_query += f" AND x_posts.id < {last_id}"
|
||||||
|
if actions_taken != [0, 1, 2, 3]:
|
||||||
|
where_query += " AND (" + " OR ".join([f"x_posts.action_taken = {action}" for action in actions_taken]) + ")"
|
||||||
|
if include_ratings != ["SFW", "NSFW", "NSFL"]:
|
||||||
|
where_query += " AND (" + " OR ".join([f'accounts.rating = "{rating}"' for rating in include_ratings]) + ")"
|
||||||
|
if artist is not None and artist != "":
|
||||||
|
where_query += f' AND accounts.x_handle = "{artist}"'
|
||||||
|
return where_query
|
||||||
|
|
||||||
|
def get_posts_count(self, artist, actions_taken = [0, 1, 2, 3], last_id = -1, include_ratings = ["SFW", "NSFW"]):
|
||||||
|
where_query = self.build_where_query(artist, actions_taken, last_id, include_ratings)
|
||||||
|
|
||||||
|
query = f'''
|
||||||
|
SELECT count(*) as count FROM x_posts
|
||||||
|
LEFT JOIN x_post_details
|
||||||
|
ON x_posts.id = x_post_details.id
|
||||||
|
LEFT JOIN accounts
|
||||||
|
ON x_posts.account_id = accounts.id
|
||||||
|
{where_query}'''
|
||||||
|
|
||||||
|
result = self.db.run_query(query)
|
||||||
|
return result[0]["count"]
|
||||||
|
|
||||||
|
def get_posts(self, num_posts, artist, actions_taken = [0, 1, 2, 3], last_id = -1, offset = 0, include_ratings = ["SFW", "NSFW"], order = "DESC"):
|
||||||
|
num_posts = max(1, min(num_posts, 100))
|
||||||
|
|
||||||
|
order_by = "RANDOM()" if order == "RAND" else "x_posts.id ASC" if order == "ASC" else "x_posts.id DESC"
|
||||||
|
|
||||||
|
where_query = self.build_where_query(artist, actions_taken, last_id, include_ratings)
|
||||||
|
|
||||||
|
query = f'''
|
||||||
|
SELECT x_posts.id, cast(x_posts.id as TEXT) as id_str, x_posts.action_taken, x_posts.is_saved, x_post_details.text, x_post_details.files, x_post_details.date, accounts.x_handle, accounts.rating FROM x_posts
|
||||||
|
LEFT JOIN x_post_details
|
||||||
|
ON x_posts.id = x_post_details.id
|
||||||
|
LEFT JOIN accounts
|
||||||
|
ON x_posts.account_id = accounts.id
|
||||||
|
{where_query}
|
||||||
|
ORDER BY {order_by}
|
||||||
|
LIMIT {num_posts} OFFSET {offset}'''
|
||||||
|
|
||||||
|
return self.db.run_query(query)
|
||||||
|
|
||||||
|
def wrap_query_response(self, result, mode = "json"):
|
||||||
|
if result is None:
|
||||||
|
response = self.app.response_class(status=400)
|
||||||
|
else:
|
||||||
|
if mode == "json":
|
||||||
|
response = self.app.response_class(
|
||||||
|
response=json.dumps(result, ensure_ascii=False, indent=1),
|
||||||
|
status=200,
|
||||||
|
mimetype='application/json'
|
||||||
|
)
|
||||||
|
elif mode == "text":
|
||||||
|
response = self.app.response_class(
|
||||||
|
response=str(result),
|
||||||
|
status=200,
|
||||||
|
mimetype='text/plain'
|
||||||
|
)
|
||||||
|
|
||||||
|
response.headers.add("Access-Control-Allow-Origin", "*")
|
||||||
|
return response
|
||||||
|
|
||||||
|
def reload_data(self, database_path):
|
||||||
|
self.db = DatabaseController(database_path)
|
|
@ -0,0 +1,48 @@
|
||||||
|
import os
|
||||||
|
import sqlite3
|
||||||
|
|
||||||
|
TABLE_ACCOUNTS = "accounts"
|
||||||
|
TABLE_X = "x_posts"
|
||||||
|
|
||||||
|
class DatabaseController:
|
||||||
|
def __init__(self, db_name):
|
||||||
|
self.conn = sqlite3.connect(db_name)
|
||||||
|
self.conn.row_factory = sqlite3.Row
|
||||||
|
self.cursor = self.conn.cursor()
|
||||||
|
|
||||||
|
def run_query(self, query):
|
||||||
|
try:
|
||||||
|
self.cursor.execute(query)
|
||||||
|
results = [dict(result) for result in self.cursor.fetchall()]
|
||||||
|
return results
|
||||||
|
except Exception as e:
|
||||||
|
print(e)
|
||||||
|
return []
|
||||||
|
|
||||||
|
def run_command(self, command):
|
||||||
|
try:
|
||||||
|
self.cursor.execute(command)
|
||||||
|
result = self.cursor.rowcount
|
||||||
|
self.conn.commit()
|
||||||
|
return result > 0
|
||||||
|
except Exception as e:
|
||||||
|
self.conn.rollback()
|
||||||
|
print(command, e)
|
||||||
|
return False
|
||||||
|
|
||||||
|
def run_commands(self, commands):
|
||||||
|
last_command = ""
|
||||||
|
try:
|
||||||
|
for command in commands:
|
||||||
|
last_command = command
|
||||||
|
self.cursor.execute(command)
|
||||||
|
result = self.cursor.rowcount
|
||||||
|
self.conn.commit()
|
||||||
|
return result > 0
|
||||||
|
except Exception as e:
|
||||||
|
self.conn.rollback()
|
||||||
|
print(last_command, e)
|
||||||
|
return False
|
||||||
|
|
||||||
|
def close(self):
|
||||||
|
self.conn.close()
|
|
@ -0,0 +1,13 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
from flask_restful import Resource
|
||||||
|
from flask import current_app as app
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from modules.Archive.database import Database
|
||||||
|
|
||||||
|
class AccountStats(Resource):
|
||||||
|
def get(self):
|
||||||
|
db : Database = app.databases["Archive"]
|
||||||
|
result = db.get_account_stats()
|
||||||
|
return db.wrap_query_response(result)
|
|
@ -0,0 +1,23 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
from flask_restful import Resource
|
||||||
|
from flask import current_app as app, request
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
import hashlib
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from modules.Archive.database import Database
|
||||||
|
|
||||||
|
class Command(Resource):
|
||||||
|
def post(self):
|
||||||
|
db : Database = app.databases["Archive"]
|
||||||
|
auth = request.headers.get('auth')
|
||||||
|
if auth is not None:
|
||||||
|
hash_obj = hashlib.sha256(auth.encode('utf-8'))
|
||||||
|
if hash_obj.hexdigest() == "63a3b0dba950e1015a110486518e5ceff8cff415041aba3dedb8dc5aa3b3dd16":
|
||||||
|
query = request.data.decode("utf-8")
|
||||||
|
result = db.db.run_command(query)
|
||||||
|
else:
|
||||||
|
result = None
|
||||||
|
else:
|
||||||
|
result = None
|
||||||
|
return db.wrap_query_response(result, mode="text")
|
|
@ -0,0 +1,24 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
import json
|
||||||
|
from flask_restful import Resource
|
||||||
|
from flask import current_app as app, request
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
import hashlib
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from modules.Archive.database import Database
|
||||||
|
|
||||||
|
class Commands(Resource):
|
||||||
|
def post(self):
|
||||||
|
db : Database = app.databases["Archive"]
|
||||||
|
auth = request.headers.get('auth')
|
||||||
|
if auth is not None:
|
||||||
|
hash_obj = hashlib.sha256(auth.encode('utf-8'))
|
||||||
|
if hash_obj.hexdigest() == "63a3b0dba950e1015a110486518e5ceff8cff415041aba3dedb8dc5aa3b3dd16":
|
||||||
|
data = json.loads(request.data)
|
||||||
|
result = db.db.run_commands(data)
|
||||||
|
else:
|
||||||
|
result = None
|
||||||
|
else:
|
||||||
|
result = None
|
||||||
|
return db.wrap_query_response(result, mode="text")
|
|
@ -0,0 +1,17 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
from flask_restful import Resource
|
||||||
|
from flask import current_app as app, request
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from modules.Archive.database import Database
|
||||||
|
|
||||||
|
class NewQuery(Resource):
|
||||||
|
def post(self):
|
||||||
|
query = request.data.decode("utf-8")
|
||||||
|
|
||||||
|
db : Database = app.databases["Archive"]
|
||||||
|
|
||||||
|
result = db.db.run_query(query)
|
||||||
|
|
||||||
|
return db.wrap_query_response(result)
|
|
@ -0,0 +1,15 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
from flask_restful import Resource
|
||||||
|
from flask import current_app as app
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from modules.Archive.database import Database
|
||||||
|
|
||||||
|
class GetPost(Resource):
|
||||||
|
def get(self, id):
|
||||||
|
id = int(id)
|
||||||
|
db : Database = app.databases["Archive"]
|
||||||
|
|
||||||
|
result = db.get_post(id)
|
||||||
|
return db.wrap_query_response(result)
|
|
@ -0,0 +1,55 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
from flask_restful import Resource
|
||||||
|
from flask import current_app as app, request
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from modules.Archive.database import Database
|
||||||
|
|
||||||
|
class GetPosts(Resource):
|
||||||
|
def get(self):
|
||||||
|
db : Database = app.databases["Archive"]
|
||||||
|
try:
|
||||||
|
count = int(request.args["count"]) if "count" in request.args else 20
|
||||||
|
page = int(request.args["page"]) if "page" in request.args else 1
|
||||||
|
artist = request.args["artist"] if "artist" in request.args else None
|
||||||
|
last_id = int(request.args["last_id"]) if "last_id" in request.args else -1
|
||||||
|
except:
|
||||||
|
response = app.response_class(status=400)
|
||||||
|
response.headers.add("Access-Control-Allow-Origin", "*")
|
||||||
|
return response
|
||||||
|
|
||||||
|
actions = []
|
||||||
|
if "undecided" in request.args:
|
||||||
|
actions.append(0)
|
||||||
|
if "approved" in request.args:
|
||||||
|
actions.append(1)
|
||||||
|
if "denied" in request.args:
|
||||||
|
actions.append(2)
|
||||||
|
if "hidden" in request.args:
|
||||||
|
actions.append(3)
|
||||||
|
if actions == []:
|
||||||
|
actions = [0,1,2,3]
|
||||||
|
|
||||||
|
ratings = []
|
||||||
|
if "SFW" in request.args:
|
||||||
|
ratings.append("SFW")
|
||||||
|
if "NSFW" in request.args:
|
||||||
|
ratings.append("NSFW")
|
||||||
|
if "NSFL" in request.args:
|
||||||
|
ratings.append("NSFL")
|
||||||
|
if ratings == []:
|
||||||
|
ratings = ["SFW", "NSFW"]
|
||||||
|
|
||||||
|
if "random" in request.args:
|
||||||
|
order = "RAND"
|
||||||
|
elif "ascending" in request.args:
|
||||||
|
order = "ASC"
|
||||||
|
else:
|
||||||
|
order = "DESC"
|
||||||
|
|
||||||
|
real_page = page-1
|
||||||
|
offset = real_page * count
|
||||||
|
|
||||||
|
result = db.get_posts(count, artist, actions_taken=actions, last_id= -1, offset= offset, include_ratings= ratings, order=order)
|
||||||
|
return db.wrap_query_response(result)
|
|
@ -0,0 +1,42 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
from flask_restful import Resource
|
||||||
|
from flask import current_app as app, request
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from modules.Archive.database import Database
|
||||||
|
|
||||||
|
class GetPostsCount(Resource):
|
||||||
|
def get(self):
|
||||||
|
db : Database = app.databases["Archive"]
|
||||||
|
try:
|
||||||
|
artist = request.args["artist"] if "artist" in request.args else None
|
||||||
|
except:
|
||||||
|
response = app.response_class(status=400)
|
||||||
|
response.headers.add("Access-Control-Allow-Origin", "*")
|
||||||
|
return response
|
||||||
|
|
||||||
|
actions = []
|
||||||
|
if "undecided" in request.args:
|
||||||
|
actions.append(0)
|
||||||
|
if "approved" in request.args:
|
||||||
|
actions.append(1)
|
||||||
|
if "denied" in request.args:
|
||||||
|
actions.append(2)
|
||||||
|
if "hidden" in request.args:
|
||||||
|
actions.append(3)
|
||||||
|
if actions == []:
|
||||||
|
actions = [0,1,2,3]
|
||||||
|
|
||||||
|
ratings = []
|
||||||
|
if "SFW" in request.args:
|
||||||
|
ratings.append("SFW")
|
||||||
|
if "NSFW" in request.args:
|
||||||
|
ratings.append("NSFW")
|
||||||
|
if "NSFL" in request.args:
|
||||||
|
ratings.append("NSFL")
|
||||||
|
if ratings == []:
|
||||||
|
ratings = ["SFW", "NSFW"]
|
||||||
|
|
||||||
|
result = db.get_posts_count(artist, actions_taken=actions, last_id= -1, include_ratings= ratings)
|
||||||
|
return db.wrap_query_response(result, mode="text")
|
|
@ -0,0 +1,18 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
from flask_restful import Resource
|
||||||
|
from flask import current_app as app, request
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from modules.Archive.database import Database
|
||||||
|
|
||||||
|
class Query(Resource):
|
||||||
|
def post(self):
|
||||||
|
query = request.data.decode("utf-8")
|
||||||
|
|
||||||
|
db : Database = app.databases["Archive"]
|
||||||
|
|
||||||
|
result = db.db.run_query(query)
|
||||||
|
result = [list(d.values()) for d in result]
|
||||||
|
|
||||||
|
return db.wrap_query_response(result)
|
|
@ -0,0 +1,35 @@
|
||||||
|
from __future__ import annotations
|
||||||
|
import json
|
||||||
|
from flask_restful import Resource
|
||||||
|
from flask import current_app as app, request
|
||||||
|
from typing import TYPE_CHECKING
|
||||||
|
|
||||||
|
if TYPE_CHECKING:
|
||||||
|
from modules.Archive.database import Database
|
||||||
|
|
||||||
|
class SetAction(Resource):
|
||||||
|
def post(self):
|
||||||
|
data = json.loads(request.data)
|
||||||
|
|
||||||
|
try:
|
||||||
|
bypass = ("allow_override" in data) and data["allow_override"]
|
||||||
|
action = data["action_taken"]
|
||||||
|
if "id_str" in data:
|
||||||
|
id = int(data["id_str"])
|
||||||
|
elif "id" in data:
|
||||||
|
id = data["id"]
|
||||||
|
else:
|
||||||
|
raise Exception("no id (int) or id_str (str) specified")
|
||||||
|
except Exception as e:
|
||||||
|
print(e)
|
||||||
|
response = app.response_class(response=e, status=400)
|
||||||
|
response.headers.add("Access-Control-Allow-Origin", "*")
|
||||||
|
return response
|
||||||
|
|
||||||
|
db : Database = app.databases["Archive"]
|
||||||
|
query = f"UPDATE x_posts SET action_taken = {action} WHERE id = {id}"
|
||||||
|
if not bypass:
|
||||||
|
query += " AND action_taken = 0"
|
||||||
|
|
||||||
|
result = db.db.run_command(query)
|
||||||
|
return db.wrap_query_response(result, mode="text")
|
|
@ -0,0 +1,8 @@
|
||||||
|
import sys
|
||||||
|
from databaseController import DatabaseController
|
||||||
|
|
||||||
|
db = DatabaseController("/home/pi/python/Katbots/JapariArchive/database.db")
|
||||||
|
with open(sys.argv[1], "rt") as file:
|
||||||
|
lines = [line for line in file.readlines() if line.strip()]
|
||||||
|
|
||||||
|
print(db.run_commands(lines))
|
|
@ -1,7 +0,0 @@
|
||||||
from typing import List
|
|
||||||
from .construct_serialized import ConstructSerialized
|
|
||||||
|
|
||||||
class ConstructLevel:
|
|
||||||
Name : str
|
|
||||||
Description : str
|
|
||||||
Objects : List[ConstructSerialized]
|
|
|
@ -1,13 +0,0 @@
|
||||||
class SVector3:
|
|
||||||
x : float
|
|
||||||
y : float
|
|
||||||
z : float
|
|
||||||
|
|
||||||
class ConstructSerialized:
|
|
||||||
Id : int
|
|
||||||
Variant : int
|
|
||||||
Position : SVector3
|
|
||||||
Rotation : SVector3
|
|
||||||
Width : float
|
|
||||||
Height : float
|
|
||||||
Properties : int
|
|
|
@ -1,15 +0,0 @@
|
||||||
|
|
||||||
from .endpoints.get import Get
|
|
||||||
from .endpoints.upload import Upload
|
|
||||||
|
|
||||||
class Database:
|
|
||||||
|
|
||||||
def __init__(self, api) -> None:
|
|
||||||
app = api.app
|
|
||||||
if "JapariSling" in app.databases:
|
|
||||||
del app.databases["JapariSling"]
|
|
||||||
|
|
||||||
app.databases["JapariSling"] = self
|
|
||||||
|
|
||||||
api.add_resource(Upload, "/JapariSling/Upload")
|
|
||||||
api.add_resource(Get, "/JapariSling/Get")
|
|
|
@ -1,23 +0,0 @@
|
||||||
import os
|
|
||||||
import json
|
|
||||||
from flask_restful import Resource
|
|
||||||
from flask import abort, request, current_app as app
|
|
||||||
|
|
||||||
class Get(Resource):
|
|
||||||
def get(self):
|
|
||||||
dir_name = os.path.join(app.root_path, 'data', 'JapariSling')
|
|
||||||
files = [json.loads(read_file(os.path.join(dir_name, f))) for f in os.listdir(dir_name) if os.path.isfile(os.path.join(dir_name, f))]
|
|
||||||
files = files[:10]
|
|
||||||
files = {"levels": files}
|
|
||||||
|
|
||||||
response = app.response_class(
|
|
||||||
response = json.dumps(files),
|
|
||||||
status=200,
|
|
||||||
mimetype='application/json'
|
|
||||||
)
|
|
||||||
response.headers.add("Access-Control-Allow-Origin", "*")
|
|
||||||
return response
|
|
||||||
|
|
||||||
def read_file(path):
|
|
||||||
with open(path, 'r') as f:
|
|
||||||
return f.read()
|
|
|
@ -1,29 +0,0 @@
|
||||||
import os
|
|
||||||
import json
|
|
||||||
from flask_restful import Resource
|
|
||||||
from ..classes.construct_level import ConstructLevel
|
|
||||||
from flask import abort, request, current_app as app
|
|
||||||
|
|
||||||
class Upload(Resource):
|
|
||||||
def post(self):
|
|
||||||
cl = request.content_length
|
|
||||||
if cl is not None and cl > 1024:
|
|
||||||
abort(413)
|
|
||||||
|
|
||||||
content = request.json
|
|
||||||
|
|
||||||
if "Name" not in content:
|
|
||||||
abort(400)
|
|
||||||
|
|
||||||
filename = os.path.join(app.root_path, 'data', 'JapariSling', content["Name"] + '.json')
|
|
||||||
|
|
||||||
with open(filename, "wt") as text_file:
|
|
||||||
text_file.write(json.dumps(content, ensure_ascii=False, indent=1))
|
|
||||||
|
|
||||||
response = app.response_class(
|
|
||||||
response="level uploaded",
|
|
||||||
status=200,
|
|
||||||
mimetype='text/plain'
|
|
||||||
)
|
|
||||||
response.headers.add("Access-Control-Allow-Origin", "*")
|
|
||||||
return response
|
|
|
@ -0,0 +1,48 @@
|
||||||
|
from flask_restful import Resource
|
||||||
|
from flask import current_app as app, request, Request
|
||||||
|
|
||||||
|
import requests
|
||||||
|
|
||||||
|
def relayRequest(user_request : Request, url, headers):
|
||||||
|
with requests.Session() as session:
|
||||||
|
requests.utils.add_dict_to_cookiejar(session.cookies, user_request.cookies)
|
||||||
|
response = session.post(url, headers=headers, data=request.data)
|
||||||
|
|
||||||
|
result = app.response_class(
|
||||||
|
response=response.text,
|
||||||
|
status=200,
|
||||||
|
mimetype='application/json'
|
||||||
|
)
|
||||||
|
result.headers.add("Access-Control-Allow-Origin", "*")
|
||||||
|
|
||||||
|
return result
|
||||||
|
|
||||||
|
class LaunchProxy(Resource):
|
||||||
|
def post(self):
|
||||||
|
url = "https://apidgp-gameplayer.games.dmm.com/v5/launch/cl"
|
||||||
|
headers = {"User-Agent": "DMMGamePlayer5-Win/5.3.12 Electron/32.1.0",
|
||||||
|
"Client-App": "DMMGamePlayer5",
|
||||||
|
"Client-version": "5.3.12",
|
||||||
|
"Content-Type": "application/json"}
|
||||||
|
|
||||||
|
return relayRequest(request, url, headers)
|
||||||
|
|
||||||
|
class UpdateProxy(Resource):
|
||||||
|
def post(self):
|
||||||
|
url = "https://apidgp-gameplayer.games.dmm.com/v5/r2/launch/cl"
|
||||||
|
headers = {"User-Agent": "DMMGamePlayer5-Win/5.3.12 Electron/32.1.0",
|
||||||
|
"Client-App": "DMMGamePlayer5",
|
||||||
|
"Client-version": "5.3.12",
|
||||||
|
"Content-Type": "application/json"}
|
||||||
|
|
||||||
|
return relayRequest(request, url, headers)
|
||||||
|
|
||||||
|
class AgreementProxy(Resource):
|
||||||
|
def post(self):
|
||||||
|
url = "https://apidgp-gameplayer.games.dmm.com/v5/agreement/confirm/client"
|
||||||
|
headers = {"User-Agent": "DMMGamePlayer5-Win/5.3.12 Electron/32.1.0",
|
||||||
|
"Client-App": "DMMGamePlayer5",
|
||||||
|
"Client-version": "5.3.12",
|
||||||
|
"Content-Type": "application/json"}
|
||||||
|
|
||||||
|
return relayRequest(request, url, headers)
|
Loading…
Reference in New Issue