interstellar_ai/py/api.py

128 lines
5 KiB
Python
Raw Normal View History

2024-09-19 09:41:00 +02:00
from flask import Flask, request, jsonify
2024-09-19 12:46:52 +02:00
from flask_cors import CORS
import secrets
2024-09-23 11:01:39 +02:00
import threading
2024-09-20 09:03:46 +02:00
from ai import AI
2024-09-20 11:15:42 +02:00
from db import DB
2024-09-20 14:40:16 +02:00
from OpenSSL import crypto
2024-09-19 09:41:00 +02:00
class API:
def __init__(self):
2024-09-23 11:01:39 +02:00
self.crypt_size = 1
2024-09-19 09:41:00 +02:00
self.app = Flask(__name__)
2024-09-19 12:46:52 +02:00
self.ai_response = {}
2024-09-19 09:41:00 +02:00
self.ai = AI()
2024-09-20 11:15:42 +02:00
self.db = DB()
2024-09-20 16:06:40 +02:00
self.db.load_database()
2024-09-23 11:01:39 +02:00
self.ai_response_lock = threading.Lock()
2024-09-19 12:46:52 +02:00
CORS(self.app)
2024-09-19 09:41:00 +02:00
def run(self):
2024-09-19 09:44:54 +02:00
@self.app.route('/interstellar/api/ai_create', methods=['GET'])
2024-09-19 09:41:00 +02:00
def create_ai():
2024-09-20 14:40:16 +02:00
access_token = secrets.token_urlsafe(self.crypt_size)
2024-09-19 12:46:52 +02:00
self.ai_response[access_token] = ""
return jsonify({'status': 200, 'access_token': access_token})
2024-09-19 09:41:00 +02:00
@self.app.route('/interstellar/api/ai_send', methods=['POST'])
def send_ai():
data = request.get_json()
2024-09-19 16:24:16 +02:00
messages = data.get('messages')
model_type = data.get('model_type')
2024-09-19 09:41:00 +02:00
ai_model = data.get('ai_model')
access_token = data.get('access_token')
2024-09-19 12:46:52 +02:00
if access_token not in self.ai_response:
return jsonify({'status': 401, 'error': 'Invalid access token'})
if model_type == "local":
2024-09-23 11:01:39 +02:00
thread = threading.Thread(target=self.ai.process_local, args=(ai_model, messages, self, access_token))
thread.start()
thread.join()
return jsonify({'status': 200})
elif model_type == "mistral":
api_key = data.get('api_key')
2024-09-24 09:24:31 +02:00
thread = threading.Thread(target=self.ai.process_mistralai,
args=(ai_model, messages, self, access_token, api_key))
2024-09-23 11:01:39 +02:00
thread.start()
thread.join()
return jsonify({'status': 200})
2024-09-23 11:57:16 +02:00
elif model_type == "openai":
api_key = data.get('api_key')
2024-09-24 09:24:31 +02:00
thread = threading.Thread(target=self.ai.process_openai,
args=(ai_model, messages, self, access_token, api_key))
2024-09-23 11:57:16 +02:00
thread.start()
thread.join()
return jsonify({'status': 200})
elif model_type == "anthropic":
api_key = data.get('api_key')
2024-09-24 09:24:31 +02:00
thread = threading.Thread(target=self.ai.process_anthropic,
args=(ai_model, messages, self, access_token, api_key))
2024-09-23 11:57:16 +02:00
thread.start()
thread.join()
return jsonify({'status': 200})
2024-09-23 11:01:39 +02:00
return jsonify({'status': 401, 'error': 'Invalid AI model type'})
2024-09-19 09:41:00 +02:00
@self.app.route('/interstellar/api/ai_get', methods=['GET'])
def get_ai():
data = request.args.get('access_token')
2024-09-19 12:46:52 +02:00
if data not in self.ai_response:
return jsonify({'status': 401, 'error': 'Invalid access token'})
return jsonify({'status': 200, 'response': self.ai_response[data]})
2024-09-19 09:41:00 +02:00
2024-09-20 11:15:42 +02:00
@self.app.route('/interstellar/api/db', methods=['POST'])
def db_manipulate():
action = request.args.get('action')
2024-09-20 11:34:21 +02:00
data = request.args.get('data')
2024-09-20 11:15:42 +02:00
if action == "create_account":
2024-09-20 11:34:21 +02:00
self.db.add_user(data)
elif action == "change_password":
2024-09-20 11:34:21 +02:00
self.db.update_password(data)
elif action == "get_data":
2024-09-20 15:26:18 +02:00
self.db.get_data(data)
elif action == "change_data":
2024-09-20 15:26:18 +02:00
self.db.change_data(data)
elif action == "check_credentials":
2024-09-20 11:34:21 +02:00
self.db.check_credentials(data)
2024-09-20 11:15:42 +02:00
2024-09-20 14:40:16 +02:00
email_address = "emailAddress"
common_name = "commonName"
country_name = "NT"
locality_name = "localityName"
state_or_province_name = "stateOrProvinceName"
organization_name = "organizationName"
organization_unit_name = "organizationUnitName"
serial_number = 0
validity_start_in_seconds = 0
validity_end_in_seconds = 10 * 365 * 24 * 60 * 60
k = crypto.PKey()
k.generate_key(crypto.TYPE_RSA, 4096)
cert = crypto.X509()
cert.get_subject().C = country_name
cert.get_subject().ST = state_or_province_name
cert.get_subject().L = locality_name
cert.get_subject().O = organization_name
cert.get_subject().OU = organization_unit_name
cert.get_subject().CN = common_name
cert.get_subject().emailAddress = email_address
cert.set_serial_number(serial_number)
cert.gmtime_adj_notBefore(validity_start_in_seconds)
cert.gmtime_adj_notAfter(validity_end_in_seconds)
cert.set_issuer(cert.get_subject())
cert.set_pubkey(k)
cert.sign(k, 'sha512')
with open("cert.pem", "wt") as f:
f.write(crypto.dump_certificate(crypto.FILETYPE_PEM, cert).decode("utf-8"))
with open("key.pem", "wt") as f:
f.write(crypto.dump_privatekey(crypto.FILETYPE_PEM, k).decode("utf-8"))
ssl_context = ("cert.pem", "key.pem")
2024-09-23 11:01:39 +02:00
self.app.run(debug=True, host='0.0.0.0', port=5000)
2024-09-24 09:24:31 +02:00
api = API()
api.run()