2020-05-10 23:59:30 +00:00
|
|
|
|
2021-01-04 01:17:30 +00:00
|
|
|
# I was never able to get this type hinting to work correctly
|
|
|
|
# from psycopg2.extensions import connection as Psycopg2Connection, cursor as Psycopg2Cursor
|
2020-05-10 23:59:30 +00:00
|
|
|
from nanoid import generate
|
2020-05-16 04:19:01 +00:00
|
|
|
from flask import current_app
|
2020-12-29 23:34:43 +00:00
|
|
|
from typing import List
|
2020-05-10 23:59:30 +00:00
|
|
|
|
2021-01-04 19:32:52 +00:00
|
|
|
from capsulflask.shared import OnlineHost
|
|
|
|
|
2020-05-10 23:59:30 +00:00
|
|
|
|
|
|
|
class DBModel:
|
2021-01-04 01:17:30 +00:00
|
|
|
#def __init__(self, connection: Psycopg2Connection, cursor: Psycopg2Cursor):
|
2020-05-10 23:59:30 +00:00
|
|
|
def __init__(self, connection, cursor):
|
|
|
|
self.connection = connection
|
|
|
|
self.cursor = cursor
|
2021-01-04 21:02:56 +00:00
|
|
|
self.cursor.execute("SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;")
|
2020-05-10 23:59:30 +00:00
|
|
|
|
2020-12-11 02:32:43 +00:00
|
|
|
|
|
|
|
# ------ LOGIN ---------
|
|
|
|
|
|
|
|
|
2020-05-10 23:59:30 +00:00
|
|
|
def login(self, email):
|
|
|
|
self.cursor.execute("SELECT * FROM accounts WHERE email = %s", (email, ))
|
2020-12-30 00:42:38 +00:00
|
|
|
hasExactMatch = len(self.cursor.fetchall())
|
|
|
|
self.cursor.execute("SELECT * FROM accounts WHERE email = %s AND ever_logged_in = TRUE", (email, ))
|
|
|
|
everLoggedIn = len(self.cursor.fetchall())
|
|
|
|
ignoreCaseMatches = []
|
|
|
|
if everLoggedIn == 0:
|
2020-12-30 01:03:37 +00:00
|
|
|
self.cursor.execute("SELECT email FROM accounts WHERE lower_case_email = %s AND email != %s", (email.lower(), email))
|
|
|
|
ignoreCaseMatches = list(map(lambda x: x[0], self.cursor.fetchall()))
|
2020-12-30 00:42:38 +00:00
|
|
|
|
|
|
|
if hasExactMatch == 0:
|
|
|
|
self.cursor.execute("INSERT INTO accounts (email, lower_case_email) VALUES (%s, %s)", (email, email.lower()))
|
2020-05-10 23:59:30 +00:00
|
|
|
|
2021-02-01 00:02:46 +00:00
|
|
|
self.cursor.execute("SELECT token FROM login_tokens WHERE email = %s and created > (NOW() - INTERVAL '20 min')", (email, ))
|
2020-05-10 23:59:30 +00:00
|
|
|
if len(self.cursor.fetchall()) > 2:
|
2020-12-30 00:42:38 +00:00
|
|
|
return (None, ignoreCaseMatches)
|
2020-05-10 23:59:30 +00:00
|
|
|
|
|
|
|
token = generate()
|
|
|
|
self.cursor.execute("INSERT INTO login_tokens (email, token) VALUES (%s, %s)", (email, token))
|
|
|
|
self.connection.commit()
|
|
|
|
|
2020-12-30 00:42:38 +00:00
|
|
|
return (token, ignoreCaseMatches)
|
2020-05-10 23:59:30 +00:00
|
|
|
|
2020-05-11 06:47:14 +00:00
|
|
|
def consume_token(self, token):
|
2020-05-12 17:38:36 +00:00
|
|
|
self.cursor.execute("SELECT email FROM login_tokens WHERE token = %s and created > (NOW() - INTERVAL '20 min')", (token, ))
|
2020-05-15 04:40:27 +00:00
|
|
|
row = self.cursor.fetchone()
|
|
|
|
if row:
|
|
|
|
email = row[0]
|
2020-05-10 23:59:30 +00:00
|
|
|
self.cursor.execute("DELETE FROM login_tokens WHERE email = %s", (email, ))
|
2020-12-30 00:42:38 +00:00
|
|
|
self.cursor.execute("UPDATE accounts SET ever_logged_in = TRUE WHERE email = %s", (email, ))
|
2020-05-10 23:59:30 +00:00
|
|
|
self.connection.commit()
|
|
|
|
return email
|
2020-05-11 01:23:00 +00:00
|
|
|
return None
|
|
|
|
|
2020-12-11 02:32:43 +00:00
|
|
|
|
|
|
|
# ------ VM & ACCOUNT MANAGEMENT ---------
|
|
|
|
|
|
|
|
|
2020-05-22 02:40:41 +00:00
|
|
|
def all_non_deleted_vm_ids(self,):
|
|
|
|
self.cursor.execute("SELECT id FROM vms WHERE deleted IS NULL")
|
2020-05-11 20:13:20 +00:00
|
|
|
return list(map(lambda x: x[0], self.cursor.fetchall()))
|
2020-05-11 06:47:14 +00:00
|
|
|
|
|
|
|
def operating_systems_dict(self,):
|
2020-05-20 04:04:28 +00:00
|
|
|
self.cursor.execute("SELECT id, template_image_file_name, description FROM os_images WHERE deprecated = FALSE")
|
2020-05-11 06:47:14 +00:00
|
|
|
|
|
|
|
operatingSystems = dict()
|
|
|
|
for row in self.cursor.fetchall():
|
|
|
|
operatingSystems[row[0]] = dict(template_image_file_name=row[1], description=row[2])
|
|
|
|
|
|
|
|
return operatingSystems
|
|
|
|
|
|
|
|
def vm_sizes_dict(self,):
|
|
|
|
self.cursor.execute("SELECT id, dollars_per_month, vcpus, memory_mb, bandwidth_gb_per_month FROM vm_sizes")
|
|
|
|
|
|
|
|
vmSizes = dict()
|
|
|
|
for row in self.cursor.fetchall():
|
|
|
|
vmSizes[row[0]] = dict(dollars_per_month=row[1], vcpus=row[2], memory_mb=row[3], bandwidth_gb_per_month=row[4])
|
|
|
|
|
|
|
|
return vmSizes
|
|
|
|
|
|
|
|
def list_ssh_public_keys_for_account(self, email):
|
2020-05-11 16:57:39 +00:00
|
|
|
self.cursor.execute("SELECT name, content, created FROM ssh_public_keys WHERE email = %s", (email, ))
|
2020-05-11 20:13:20 +00:00
|
|
|
return list(map(
|
2020-05-11 16:57:39 +00:00
|
|
|
lambda x: dict(name=x[0], content=x[1], created=x[2]),
|
2020-05-11 06:47:14 +00:00
|
|
|
self.cursor.fetchall()
|
2020-05-11 20:13:20 +00:00
|
|
|
))
|
2020-05-11 06:47:14 +00:00
|
|
|
|
2020-05-11 16:57:39 +00:00
|
|
|
def ssh_public_key_name_exists(self, email, name):
|
|
|
|
self.cursor.execute( "SELECT name FROM ssh_public_keys where email = %s AND name = %s", (email, name) )
|
|
|
|
return len(self.cursor.fetchall()) > 0
|
|
|
|
|
|
|
|
def create_ssh_public_key(self, email, name, content):
|
|
|
|
self.cursor.execute("""
|
|
|
|
INSERT INTO ssh_public_keys (email, name, content)
|
|
|
|
VALUES (%s, %s, %s)
|
|
|
|
""",
|
|
|
|
(email, name, content)
|
|
|
|
)
|
|
|
|
self.connection.commit()
|
|
|
|
|
|
|
|
def delete_ssh_public_key(self, email, name):
|
|
|
|
self.cursor.execute( "DELETE FROM ssh_public_keys where email = %s AND name = %s", (email, name) )
|
|
|
|
self.connection.commit()
|
|
|
|
|
2020-05-11 06:47:14 +00:00
|
|
|
def list_vms_for_account(self, email):
|
|
|
|
self.cursor.execute("""
|
2020-05-12 01:34:12 +00:00
|
|
|
SELECT vms.id, vms.last_seen_ipv4, vms.last_seen_ipv6, vms.size, vms.os, vms.created, vms.deleted, vm_sizes.dollars_per_month
|
|
|
|
FROM vms JOIN vm_sizes on vms.size = vm_sizes.id
|
|
|
|
WHERE vms.email = %s""",
|
2020-05-11 06:47:14 +00:00
|
|
|
(email, )
|
|
|
|
)
|
2020-05-11 20:13:20 +00:00
|
|
|
return list(map(
|
2020-05-12 01:34:12 +00:00
|
|
|
lambda x: dict(id=x[0], ipv4=x[1], ipv6=x[2], size=x[3], os=x[4], created=x[5], deleted=x[6], dollars_per_month=x[7]),
|
2020-05-11 06:47:14 +00:00
|
|
|
self.cursor.fetchall()
|
2020-05-11 20:13:20 +00:00
|
|
|
))
|
2020-05-11 06:47:14 +00:00
|
|
|
|
2020-05-15 17:23:42 +00:00
|
|
|
def update_vm_ip(self, email, id, ipv4):
|
2020-05-11 21:24:37 +00:00
|
|
|
self.cursor.execute("UPDATE vms SET last_seen_ipv4 = %s WHERE email = %s AND id = %s", (ipv4, email, id))
|
|
|
|
self.connection.commit()
|
|
|
|
|
2021-01-30 07:39:48 +00:00
|
|
|
def update_vm_ssh_host_keys(self, email, id, ssh_host_keys):
|
|
|
|
for key in ssh_host_keys:
|
|
|
|
self.cursor.execute("""
|
|
|
|
INSERT INTO vm_ssh_host_key (email, vm_id, key_type, content, sha256)
|
|
|
|
VALUES (%s, %s, %s, %s, %s)
|
|
|
|
""",
|
|
|
|
(email, id, key['key_type'], key['content'], key['sha256'])
|
|
|
|
)
|
|
|
|
self.connection.commit()
|
|
|
|
|
|
|
|
def create_vm(self, email, id, size, os, ssh_authorized_keys):
|
2020-05-11 06:47:14 +00:00
|
|
|
self.cursor.execute("""
|
|
|
|
INSERT INTO vms (email, id, size, os)
|
|
|
|
VALUES (%s, %s, %s, %s)
|
|
|
|
""",
|
|
|
|
(email, id, size, os)
|
|
|
|
)
|
2020-05-11 21:24:37 +00:00
|
|
|
|
2021-01-30 07:39:48 +00:00
|
|
|
for ssh_authorized_key in ssh_authorized_keys:
|
2020-05-11 21:24:37 +00:00
|
|
|
self.cursor.execute("""
|
2021-01-30 07:39:48 +00:00
|
|
|
INSERT INTO vm_ssh_authorized_key (email, vm_id, ssh_public_key_name)
|
2020-05-11 21:24:37 +00:00
|
|
|
VALUES (%s, %s, %s)
|
|
|
|
""",
|
2021-01-30 07:39:48 +00:00
|
|
|
(email, id, ssh_authorized_key)
|
2020-05-11 21:24:37 +00:00
|
|
|
)
|
|
|
|
self.connection.commit()
|
|
|
|
|
2020-05-15 17:23:42 +00:00
|
|
|
def delete_vm(self, email, id):
|
|
|
|
self.cursor.execute("UPDATE vms SET deleted = now() WHERE email = %s AND id = %s", ( email, id))
|
|
|
|
self.connection.commit()
|
2020-05-13 05:28:53 +00:00
|
|
|
|
2020-05-11 21:24:37 +00:00
|
|
|
def get_vm_detail(self, email, id):
|
|
|
|
self.cursor.execute("""
|
|
|
|
SELECT vms.id, vms.last_seen_ipv4, vms.last_seen_ipv6, os_images.description, vms.created, vms.deleted,
|
|
|
|
vm_sizes.id, vm_sizes.dollars_per_month, vm_sizes.vcpus, vm_sizes.memory_mb, vm_sizes.bandwidth_gb_per_month
|
|
|
|
FROM vms
|
|
|
|
JOIN os_images on vms.os = os_images.id
|
|
|
|
JOIN vm_sizes on vms.size = vm_sizes.id
|
|
|
|
WHERE vms.email = %s AND vms.id = %s""",
|
|
|
|
(email, id)
|
|
|
|
)
|
2020-05-15 04:40:27 +00:00
|
|
|
row = self.cursor.fetchone()
|
|
|
|
if not row:
|
2020-05-11 21:24:37 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
vm = dict(
|
2020-05-15 04:40:27 +00:00
|
|
|
id=row[0], ipv4=row[1], ipv6=row[2], os_description=row[3], created=row[4], deleted=row[5],
|
|
|
|
size=row[6], dollars_per_month=row[7], vcpus=row[8], memory_mb=row[9], bandwidth_gb_per_month=row[10]
|
2020-05-11 21:24:37 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
self.cursor.execute("""
|
2021-01-30 07:39:48 +00:00
|
|
|
SELECT ssh_public_key_name FROM vm_ssh_authorized_key
|
|
|
|
WHERE vm_ssh_authorized_key.email = %s AND vm_ssh_authorized_key.vm_id = %s""",
|
|
|
|
(email, id)
|
|
|
|
)
|
|
|
|
vm["ssh_authorized_keys"] = list(map( lambda x: x[0], self.cursor.fetchall() ))
|
|
|
|
|
|
|
|
|
|
|
|
self.cursor.execute("""
|
|
|
|
SELECT key_type, content, sha256 FROM vm_ssh_host_key
|
|
|
|
WHERE vm_ssh_host_key.email = %s AND vm_ssh_host_key.vm_id = %s""",
|
2020-05-11 21:24:37 +00:00
|
|
|
(email, id)
|
|
|
|
)
|
2021-01-30 07:39:48 +00:00
|
|
|
vm["ssh_host_keys"] = list(map( lambda x: dict(key_type=x[0], content=x[1], sha256=x[2]), self.cursor.fetchall() ))
|
2020-05-11 21:24:37 +00:00
|
|
|
|
|
|
|
return vm
|
2020-05-12 01:34:12 +00:00
|
|
|
|
2020-12-11 02:32:43 +00:00
|
|
|
|
|
|
|
# ------ PAYMENTS & ACCOUNT BALANCE ---------
|
|
|
|
|
|
|
|
|
2020-05-12 01:34:12 +00:00
|
|
|
def list_payments_for_account(self, email):
|
|
|
|
self.cursor.execute("""
|
2020-05-15 01:05:02 +00:00
|
|
|
SELECT id, dollars, invalidated, created
|
2020-05-12 01:34:12 +00:00
|
|
|
FROM payments WHERE payments.email = %s""",
|
|
|
|
(email, )
|
|
|
|
)
|
|
|
|
return list(map(
|
2020-05-15 01:05:02 +00:00
|
|
|
lambda x: dict(id=x[0], dollars=x[1], invalidated=x[2], created=x[3]),
|
2020-05-12 01:34:12 +00:00
|
|
|
self.cursor.fetchall()
|
|
|
|
))
|
2020-05-12 17:38:36 +00:00
|
|
|
|
2020-05-14 23:03:00 +00:00
|
|
|
def create_payment_session(self, payment_type, id, email, dollars):
|
2020-05-12 17:38:36 +00:00
|
|
|
self.cursor.execute("""
|
2020-05-14 23:03:00 +00:00
|
|
|
INSERT INTO payment_sessions (id, type, email, dollars)
|
|
|
|
VALUES (%s, %s, %s, %s)
|
2020-05-12 17:38:36 +00:00
|
|
|
""",
|
2020-05-14 23:03:00 +00:00
|
|
|
(id, payment_type, email, dollars)
|
2020-05-12 17:38:36 +00:00
|
|
|
)
|
|
|
|
self.connection.commit()
|
|
|
|
|
2020-05-17 03:04:51 +00:00
|
|
|
def list_payment_sessions_for_account(self, email):
|
|
|
|
self.cursor.execute("""
|
|
|
|
SELECT id, type, dollars, created
|
|
|
|
FROM payment_sessions WHERE email = %s""",
|
|
|
|
(email, )
|
|
|
|
)
|
|
|
|
return list(map(
|
|
|
|
lambda x: dict(id=x[0], type=x[1], dollars=x[2], created=x[3]),
|
|
|
|
self.cursor.fetchall()
|
|
|
|
))
|
|
|
|
|
2020-05-22 20:20:26 +00:00
|
|
|
def payment_session_redirect(self, email, id):
|
|
|
|
self.cursor.execute("SELECT redirected FROM payment_sessions WHERE email = %s AND id = %s",
|
|
|
|
(email, id)
|
|
|
|
)
|
|
|
|
row = self.cursor.fetchone()
|
|
|
|
if row:
|
|
|
|
self.cursor.execute("UPDATE payment_sessions SET redirected = TRUE WHERE email = %s AND id = %s",
|
|
|
|
(email, id)
|
|
|
|
)
|
|
|
|
self.connection.commit()
|
|
|
|
return row[0]
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2020-05-14 23:03:00 +00:00
|
|
|
def consume_payment_session(self, payment_type, id, dollars):
|
|
|
|
self.cursor.execute("SELECT email, dollars FROM payment_sessions WHERE id = %s AND type = %s", (id, payment_type))
|
2020-05-15 04:40:27 +00:00
|
|
|
row = self.cursor.fetchone()
|
|
|
|
if row:
|
|
|
|
if int(row[1]) != int(dollars):
|
2020-05-16 04:19:01 +00:00
|
|
|
current_app.logger.warning(f"""
|
2020-05-14 23:03:00 +00:00
|
|
|
{payment_type} gave us a completed payment session with a different dollar amount than what we had recorded!!
|
|
|
|
id: {id}
|
2020-05-15 04:40:27 +00:00
|
|
|
account: {row[0]}
|
|
|
|
Recorded amount: {int(row[1])}
|
2020-05-14 23:03:00 +00:00
|
|
|
{payment_type} sent: {int(dollars)}
|
2020-05-12 17:38:36 +00:00
|
|
|
""")
|
|
|
|
# not sure what to do here. For now just log and do nothing.
|
2020-05-14 23:03:00 +00:00
|
|
|
self.cursor.execute( "DELETE FROM payment_sessions WHERE id = %s AND type = %s", (id, payment_type) )
|
2020-05-15 04:40:27 +00:00
|
|
|
self.cursor.execute( "INSERT INTO payments (email, dollars) VALUES (%s, %s) RETURNING id", (row[0], row[1]) )
|
|
|
|
|
|
|
|
if payment_type == "btcpay":
|
|
|
|
payment_id = self.cursor.fetchone()[0]
|
|
|
|
self.cursor.execute(
|
|
|
|
"INSERT INTO unresolved_btcpay_invoices (id, email, payment_id) VALUES (%s, %s, %s)",
|
|
|
|
(id, row[0], payment_id)
|
|
|
|
)
|
|
|
|
|
2020-05-12 17:38:36 +00:00
|
|
|
self.connection.commit()
|
2020-05-15 04:40:27 +00:00
|
|
|
return row[0]
|
2020-05-12 17:38:36 +00:00
|
|
|
else:
|
|
|
|
return None
|
|
|
|
|
2020-07-18 15:16:17 +00:00
|
|
|
def delete_payment_session(self, payment_type, id):
|
|
|
|
self.cursor.execute( "DELETE FROM payment_sessions WHERE id = %s AND type = %s", (id, payment_type) )
|
|
|
|
self.connection.commit()
|
|
|
|
|
2020-05-15 04:40:27 +00:00
|
|
|
def btcpay_invoice_resolved(self, id, completed):
|
|
|
|
self.cursor.execute("SELECT email, payment_id FROM unresolved_btcpay_invoices WHERE id = %s ", (id,))
|
|
|
|
row = self.cursor.fetchone()
|
|
|
|
if row:
|
|
|
|
self.cursor.execute( "DELETE FROM unresolved_btcpay_invoices WHERE id = %s", (id,) )
|
|
|
|
if not completed:
|
2020-12-30 00:42:38 +00:00
|
|
|
self.cursor.execute("UPDATE payments SET invalidated = TRUE WHERE email = %s id = %s", (row[0], row[1]))
|
2020-05-15 04:40:27 +00:00
|
|
|
|
|
|
|
self.connection.commit()
|
|
|
|
|
|
|
|
|
|
|
|
def get_unresolved_btcpay_invoices(self):
|
2020-05-15 23:18:19 +00:00
|
|
|
self.cursor.execute("""
|
|
|
|
SELECT unresolved_btcpay_invoices.id, payments.created, payments.dollars, unresolved_btcpay_invoices.email
|
|
|
|
FROM unresolved_btcpay_invoices JOIN payments on payment_id = payments.id
|
|
|
|
""")
|
|
|
|
return list(map(lambda row: dict(id=row[0], created=row[1], dollars=row[2], email=row[3]), self.cursor.fetchall()))
|
2020-05-15 04:40:27 +00:00
|
|
|
|
|
|
|
def get_account_balance_warning(self, email):
|
|
|
|
self.cursor.execute("SELECT account_balance_warning FROM accounts WHERE email = %s", (email,))
|
|
|
|
return self.cursor.fetchone()[0]
|
|
|
|
|
|
|
|
def set_account_balance_warning(self, email, account_balance_warning):
|
|
|
|
self.cursor.execute("UPDATE accounts SET account_balance_warning = %s WHERE email = %s", (account_balance_warning, email))
|
|
|
|
self.connection.commit()
|
|
|
|
|
|
|
|
def all_accounts(self):
|
2020-12-30 00:42:38 +00:00
|
|
|
self.cursor.execute("SELECT email, account_balance_warning FROM accounts WHERE ever_logged_in = TRUE ")
|
2020-05-15 23:18:19 +00:00
|
|
|
return list(map(lambda row: dict(email=row[0], account_balance_warning=row[1]), self.cursor.fetchall()))
|
2020-05-15 04:40:27 +00:00
|
|
|
|
|
|
|
|
2020-12-11 02:32:43 +00:00
|
|
|
# ------ HOSTS ---------
|
|
|
|
|
2020-12-29 23:34:43 +00:00
|
|
|
def authorized_for_host(self, id, token) -> bool:
|
2021-01-04 19:32:52 +00:00
|
|
|
self.cursor.execute("SELECT id FROM hosts WHERE id = %s AND token = %s", (id, token))
|
2020-12-11 02:32:43 +00:00
|
|
|
return self.cursor.fetchone() != None
|
|
|
|
|
2020-12-29 23:34:43 +00:00
|
|
|
def host_heartbeat(self, id) -> None:
|
2020-12-11 02:32:43 +00:00
|
|
|
self.cursor.execute("UPDATE hosts SET last_health_check = NOW() WHERE id = %s", (id,))
|
|
|
|
self.connection.commit()
|
2020-05-15 04:40:27 +00:00
|
|
|
|
2021-01-04 19:32:52 +00:00
|
|
|
def get_all_hosts(self) -> List[OnlineHost]:
|
|
|
|
self.cursor.execute("SELECT id, https_url FROM hosts")
|
|
|
|
return list(map(lambda x: OnlineHost(id=x[0], url=x[1]), self.cursor.fetchall()))
|
|
|
|
|
2020-12-29 23:34:43 +00:00
|
|
|
def get_online_hosts(self) -> List[OnlineHost]:
|
2021-01-04 19:32:52 +00:00
|
|
|
self.cursor.execute("SELECT id, https_url FROM hosts WHERE last_health_check > NOW() - INTERVAL '20 seconds'")
|
2020-12-29 23:34:43 +00:00
|
|
|
return list(map(lambda x: OnlineHost(id=x[0], url=x[1]), self.cursor.fetchall()))
|
|
|
|
|
2021-01-02 23:10:01 +00:00
|
|
|
def create_operation(self, online_hosts: List[OnlineHost], email: str, payload: str) -> int:
|
2020-12-29 23:34:43 +00:00
|
|
|
|
|
|
|
self.cursor.execute( "INSERT INTO operations (email, payload) VALUES (%s, %s) RETURNING id", (email, payload) )
|
|
|
|
operation_id = self.cursor.fetchone()[0]
|
|
|
|
|
|
|
|
for host in online_hosts:
|
|
|
|
self.cursor.execute( "INSERT INTO host_operation (host, operation) VALUES (%s, %s)", (host.id, operation_id) )
|
|
|
|
|
|
|
|
self.connection.commit()
|
2021-01-02 23:10:01 +00:00
|
|
|
return operation_id
|
|
|
|
|
2021-01-04 21:02:56 +00:00
|
|
|
def update_host_operation(self, host_id: str, operation_id: int, assignment_status: str, result: str):
|
|
|
|
if assignment_status and not result:
|
|
|
|
self.cursor.execute(
|
|
|
|
"UPDATE host_operation SET assignment_status = %s, assigned = NOW() WHERE host = %s AND operation = %s",
|
|
|
|
(assignment_status, host_id, operation_id)
|
|
|
|
)
|
|
|
|
elif not assignment_status and result:
|
|
|
|
self.cursor.execute(
|
|
|
|
"UPDATE host_operation SET results = %s, completed = NOW() WHERE host = %s AND operation = %s",
|
|
|
|
(result, host_id, operation_id)
|
|
|
|
)
|
|
|
|
elif assignment_status and result:
|
|
|
|
self.cursor.execute(
|
|
|
|
"UPDATE host_operation SET assignment_status = %s, assigned = NOW(), results = %s, completed = NOW() WHERE host = %s AND operation = %s",
|
|
|
|
(assignment_status, result, host_id, operation_id)
|
|
|
|
)
|
2021-01-02 23:10:01 +00:00
|
|
|
self.connection.commit()
|
|
|
|
|
2021-01-04 21:02:56 +00:00
|
|
|
def host_of_capsul(self, capsul_id: str) -> OnlineHost:
|
|
|
|
self.cursor.execute("SELECT hosts.id, hosts.https_url from vms JOIN hosts on hosts.id = vms.host where vms.id = %s", (capsul_id,))
|
2021-01-02 23:10:01 +00:00
|
|
|
row = self.cursor.fetchone()
|
|
|
|
if row:
|
2021-01-04 21:02:56 +00:00
|
|
|
return OnlineHost(row[0], row[1])
|
2021-01-02 23:10:01 +00:00
|
|
|
else:
|
|
|
|
return None
|
2020-12-29 23:34:43 +00:00
|
|
|
|
2021-01-04 01:17:30 +00:00
|
|
|
def host_operation_exists(self, operation_id: int, host_id: str) -> bool:
|
|
|
|
self.cursor.execute("SELECT operation FROM host_operation WHERE host = %s AND operation = %s",(host_id, operation_id))
|
|
|
|
return len(self.cursor.fetchall()) != 0
|
|
|
|
|
|
|
|
def claim_operation(self, operation_id: int, host_id: str) -> bool:
|
2021-01-04 21:02:56 +00:00
|
|
|
# have to make a new cursor to set isolation level
|
|
|
|
# cursor = self.connection.cursor()
|
2021-01-04 01:17:30 +00:00
|
|
|
self.cursor.execute("""
|
|
|
|
BEGIN TRANSACTION;
|
|
|
|
UPDATE host_operation SET assignment_status = 'assigned'
|
|
|
|
WHERE host = %s AND operation = %s AND operation != (
|
|
|
|
SELECT COALESCE(
|
|
|
|
(SELECT operation FROM host_operation WHERE operation = %s AND assignment_status = 'assigned'),
|
|
|
|
-1
|
|
|
|
) as already_assigned_operation_id
|
|
|
|
);
|
|
|
|
COMMIT TRANSACTION;
|
|
|
|
""", (host_id, operation_id, operation_id))
|
|
|
|
|
|
|
|
to_return = self.cursor.rowcount != 0
|
|
|
|
|
|
|
|
self.connection.commit()
|
2021-01-04 21:02:56 +00:00
|
|
|
#cursor.close()
|
2021-01-04 01:17:30 +00:00
|
|
|
|
|
|
|
return to_return
|
|
|
|
|
2020-05-15 04:40:27 +00:00
|
|
|
|
|
|
|
|
2020-05-12 17:38:36 +00:00
|
|
|
|
2020-05-12 01:34:12 +00:00
|
|
|
|