2023-11-08 19:02:24 +11:00
|
|
|
import mysql.connector
|
|
|
|
import os
|
|
|
|
import dotenv
|
|
|
|
|
|
|
|
dotenv.load_dotenv()
|
|
|
|
|
|
|
|
# Database connection
|
|
|
|
dbargs = {
|
|
|
|
'host':os.getenv('DB_HOST'),
|
|
|
|
'user':os.getenv('DB_USER'),
|
|
|
|
'password':os.getenv('DB_PASSWORD'),
|
|
|
|
'database':os.getenv('DB_NAME')
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def check_tables():
|
|
|
|
connection = mysql.connector.connect(**dbargs)
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.execute("""
|
|
|
|
CREATE TABLE IF NOT EXISTS users (
|
|
|
|
id INT(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
email VARCHAR(255) NOT NULL,
|
|
|
|
domain VARCHAR(255) NOT NULL,
|
|
|
|
password VARCHAR(255) NOT NULL,
|
|
|
|
token VARCHAR(255) NOT NULL,
|
|
|
|
PRIMARY KEY (id)
|
|
|
|
)
|
2023-11-08 19:18:16 +11:00
|
|
|
""")
|
|
|
|
cursor.execute("""
|
|
|
|
CREATE TABLE IF NOT EXISTS site (
|
|
|
|
id INT(11) NOT NULL AUTO_INCREMENT,
|
|
|
|
domain VARCHAR(255) NOT NULL,
|
|
|
|
data VARCHAR(2048) NOT NULL,
|
|
|
|
PRIMARY KEY (id)
|
|
|
|
)
|
|
|
|
""")
|
2023-11-08 19:02:24 +11:00
|
|
|
cursor.close()
|
|
|
|
connection.close()
|
2023-11-08 19:15:23 +11:00
|
|
|
print("Checked tables")
|
2023-11-08 19:02:24 +11:00
|
|
|
|
|
|
|
def add_user(email,domain,password,token):
|
|
|
|
connection = mysql.connector.connect(**dbargs)
|
|
|
|
cursor = connection.cursor()
|
|
|
|
|
|
|
|
cursor.execute("""
|
|
|
|
INSERT INTO users (email, domain, password, token)
|
|
|
|
VALUES (%s, %s, %s, %s)
|
|
|
|
""", (email, domain, password, token))
|
|
|
|
connection.commit()
|
|
|
|
cursor.close()
|
|
|
|
connection.close()
|
|
|
|
|
|
|
|
def search_users(email):
|
|
|
|
connection = mysql.connector.connect(**dbargs)
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.execute("""
|
|
|
|
SELECT * FROM users WHERE email = %s
|
|
|
|
""", (email,))
|
|
|
|
users = cursor.fetchall()
|
|
|
|
cursor.close()
|
|
|
|
connection.close()
|
|
|
|
return users
|
|
|
|
|
|
|
|
def search_users_token(token):
|
|
|
|
connection = mysql.connector.connect(**dbargs)
|
|
|
|
cursor = connection.cursor()
|
|
|
|
query = "SELECT * FROM users WHERE token LIKE %s"
|
|
|
|
cursor.execute(query, ('%' + token + '%',))
|
|
|
|
|
|
|
|
users = cursor.fetchall()
|
|
|
|
cursor.close()
|
|
|
|
connection.close()
|
|
|
|
return users
|
|
|
|
|
|
|
|
def update_tokens(id,tokens):
|
|
|
|
tokens = ','.join(tokens)
|
|
|
|
connection = mysql.connector.connect(**dbargs)
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.execute("""
|
|
|
|
UPDATE users SET token = %s WHERE id = %s
|
|
|
|
""", (tokens, id))
|
|
|
|
connection.commit()
|
|
|
|
cursor.close()
|
|
|
|
connection.close()
|
2023-11-08 20:43:33 +11:00
|
|
|
|
|
|
|
def get_website_data(domain):
|
|
|
|
connection = mysql.connector.connect(**dbargs)
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.execute("""
|
|
|
|
SELECT * FROM site WHERE domain = %s
|
|
|
|
""", (domain,))
|
|
|
|
data = cursor.fetchall()
|
|
|
|
cursor.close()
|
|
|
|
connection.close()
|
|
|
|
|
|
|
|
if data == []:
|
|
|
|
# Create new entry
|
|
|
|
connection = mysql.connector.connect(**dbargs)
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.execute("""
|
|
|
|
INSERT INTO site (domain, data)
|
|
|
|
VALUES (%s, %s)
|
|
|
|
""", (domain, ""))
|
|
|
|
connection.commit()
|
|
|
|
cursor.close()
|
|
|
|
connection.close()
|
|
|
|
return ""
|
|
|
|
return data[0][2]
|
|
|
|
|
2023-11-08 20:45:37 +11:00
|
|
|
def update_website_data(domain,data):
|
2023-11-08 20:43:33 +11:00
|
|
|
connection = mysql.connector.connect(**dbargs)
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.execute("""
|
|
|
|
UPDATE site SET data = %s WHERE domain = %s
|
2023-11-08 20:45:37 +11:00
|
|
|
""", (data, domain))
|
2023-11-08 20:43:33 +11:00
|
|
|
connection.commit()
|
|
|
|
cursor.close()
|
|
|
|
connection.close()
|