Merge pull request 'history backend tweaks' (#42) from React-Group/interstellar_ai:main into main

Reviewed-on: https://interstellardevelopment.org/code/code/YasinOnm08/interstellar_ai/pulls/42
This commit is contained in:
YasinOnm08 2024-10-02 14:17:31 +02:00
commit ca07cfebd4
3 changed files with 39 additions and 18 deletions

View file

@ -68,7 +68,7 @@ export const changePassword = async (usernameOrEmail: string, password: string,
export const getData = async (usernameOrEmail: string, password: string) => { export const getData = async (usernameOrEmail: string, password: string) => {
const data = { const data = {
action: "get_data", action: "get_settings",
username: usernameOrEmail.includes('@') ? undefined : usernameOrEmail, username: usernameOrEmail.includes('@') ? undefined : usernameOrEmail,
email: usernameOrEmail.includes('@') ? usernameOrEmail : undefined, email: usernameOrEmail.includes('@') ? usernameOrEmail : undefined,
password, password,
@ -98,7 +98,7 @@ export const getName = async (usernameOrEmail: string, password: string): Promis
export const changeData = async (usernameOrEmail: string, password: string, newData: any) => { export const changeData = async (usernameOrEmail: string, password: string, newData: any) => {
const data = { const data = {
action: "change_data", action: "change_settings",
username: usernameOrEmail.includes('@') ? undefined : usernameOrEmail, username: usernameOrEmail.includes('@') ? undefined : usernameOrEmail,
email: usernameOrEmail.includes('@') ? usernameOrEmail : undefined, email: usernameOrEmail.includes('@') ? usernameOrEmail : undefined,
password, password,

View file

@ -103,10 +103,14 @@ class API:
return jsonify({'status': 200, 'response': self.db.add_user(sent_data)}) return jsonify({'status': 200, 'response': self.db.add_user(sent_data)})
elif action == "change_password": elif action == "change_password":
return jsonify({'status': 200, 'response': self.db.update_password(sent_data)}) return jsonify({'status': 200, 'response': self.db.update_password(sent_data)})
elif action == "get_data": elif action == "get_settings":
return jsonify({'status': 200, 'response': self.db.get_data(sent_data)}) return jsonify({'status': 200, 'response': self.db.get_settings(sent_data)})
elif action == "change_data": elif action == "change_settings":
return jsonify({'status': 200, 'response': self.db.change_data(sent_data)}) return jsonify({'status': 200, 'response': self.db.change_settings(sent_data)})
elif action == "get_history":
return jsonify({'status': 200, 'response': self.db.get_history(sent_data)})
elif action == "change_history":
return jsonify({'status': 200, 'response': self.db.change_history(sent_data)})
elif action == "check_credentials": elif action == "check_credentials":
return jsonify({'status': 200, 'response': self.db.check_credentials(sent_data)}) return jsonify({'status': 200, 'response': self.db.check_credentials(sent_data)})
elif action == "delete_account": elif action == "delete_account":

View file

@ -27,7 +27,7 @@ class DB:
password = data.get('password') password = data.get('password')
email = data.get('email') email = data.get('email')
hashed_password = self.hash_password(password) hashed_password = self.hash_password(password)
user_data = {"hashed_password": hashed_password, "email": email, "data": None} user_data = {"hashed_password": hashed_password, "email": email, "settings": None, "history": None}
if username not in self.database: if username not in self.database:
self.database[username] = user_data self.database[username] = user_data
self.save_database() self.save_database()
@ -43,15 +43,6 @@ class DB:
self.save_database() self.save_database()
return True return True
def change_data(self, data):
username = self.ensure_username(data)
if not self.check_credentials(data):
return False
self.database[username]['data'] = data.get('data')
self.save_database()
return True
def update_password(self, data): def update_password(self, data):
username = self.ensure_username(data) username = self.ensure_username(data)
new_password = data.get('new_password') new_password = data.get('new_password')
@ -74,12 +65,38 @@ class DB:
print(stored_hashed_password == entered_hashed_password) print(stored_hashed_password == entered_hashed_password)
return stored_hashed_password == entered_hashed_password return stored_hashed_password == entered_hashed_password
def get_data(self, data): def change_settings(self, data):
username = self.ensure_username(data)
if not self.check_credentials(data):
return False
self.database[username]['settings'] = data.get('data')
self.save_database()
return True
def get_settings(self, data):
username = self.ensure_username(data) username = self.ensure_username(data)
if not self.check_credentials(data): if not self.check_credentials(data):
return None return None
send_back = self.database[username].get('data') send_back = self.database[username].get('settings')
return send_back
def change_history(self, data):
username = self.ensure_username(data)
if not self.check_credentials(data):
return False
self.database[username]['history'] = data.get('data')
self.save_database()
return True
def get_history(self, data):
username = self.ensure_username(data)
if not self.check_credentials(data):
return None
send_back = self.database[username].get('history')
return send_back return send_back
def get_email(self, data): def get_email(self, data):