-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete.py
122 lines (115 loc) · 4.29 KB
/
delete.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import mysql.connector as database
import os
import time
import openstack
import json
dbpass = json.load(open('/home/ubuntu/codeserver/sshreact/api/auth.json', 'r'))
username = dbpass["username"]
password = dbpass["password"]
connection = database.connect(
user=username,
password=password,
host="10.0.1.190",
database="auth"
)
cursor = connection.cursor(buffered=True)
conn = openstack.connect(
cloud="otc"
)
def servers():
statement = "SELECT creation_time, instance_id, floating_ip_id, email FROM servers"
cursor.execute(statement)
for (creation_time, instance_id, floating_ip_id, email) in cursor:
if (int(time.time()) - int(creation_time) > 1800):
server = conn.compute.find_server(instance_id)
if server:
conn.compute.wait_for_server(server)
ip = conn.network.find_ip(name_or_id=floating_ip_id)
if ip:
conn.compute.remove_floating_ip_from_server(
server=instance_id,
address=ip.floating_ip_address
)
conn.network.delete_ip(ip)
conn.compute.delete_server(
server=instance_id
)
dbpass = json.load(open('/home/ubuntu/codeserver/sshreact/api/auth.json', 'r'))
username = dbpass["username"]
password = dbpass["password"]
connection2 = database.connect(
user=username,
password=password,
host="10.0.1.190",
database="auth"
)
cursor2 = connection2.cursor(buffered=True)
statement = "DELETE FROM servers WHERE email = %s"
data = (email,)
cursor2.execute(statement, data)
connection2.commit()
connection2.close()
def emailtoken():
statement = "SELECT email, creation_time FROM emailtoken"
cursor.execute(statement)
for (email, creation_time) in cursor:
if (int(time.time()) - int(creation_time) > 86400):
dbpass = json.load(open('/home/ubuntu/codeserver/sshreact/api/auth.json', 'r'))
username = dbpass["username"]
password = dbpass["password"]
connection2 = database.connect(
user=username,
password=password,
host="10.0.1.190",
database="auth"
)
cursor2 = connection2.cursor(buffered=True)
statement = "DELETE FROM emailtoken WHERE email = %s"
data = (email,)
cursor2.execute(statement, data)
connection2.commit()
connection2.close()
def authtoken():
statement = "SELECT email, creation_time FROM authtoken"
cursor.execute(statement)
for (email, creation_time) in cursor:
if (int(time.time()) - int(creation_time) > 3600):
dbpass = json.load(open('/home/ubuntu/codeserver/sshreact/api/auth.json', 'r'))
username = dbpass["username"]
password = dbpass["password"]
connection2 = database.connect(
user=username,
password=password,
host="10.0.1.190",
database="auth"
)
cursor2 = connection2.cursor(buffered=True)
statement = "DELETE FROM authtoken WHERE email = %s"
data = (email,)
cursor2.execute(statement, data)
connection2.commit()
connection2.close()
def auth():
statement = "SELECT email, creation_time FROM auth"
cursor.execute(statement)
for row in cursor:
if (int(time.time()) - int(row[1]) > 604800):
dbpass = json.load(open('/home/ubuntu/codeserver/sshreact/api/auth.json', 'r'))
username = dbpass["username"]
password = dbpass["password"]
connection2 = database.connect(
user=username,
password=password,
host="10.0.1.190",
database="auth"
)
cursor2 = connection2.cursor(buffered=True)
statement = "DELETE FROM auth WHERE email = %s"
data = (row[0],)
cursor2.execute(statement, data)
connection2.commit()
connection2.close()
servers()
emailtoken()
authtoken()
auth()