-
Notifications
You must be signed in to change notification settings - Fork 5
/
models.py
133 lines (113 loc) · 3.37 KB
/
models.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
123
124
125
126
127
128
129
130
131
132
133
import asyncio
import aiosqlite
from pathlib import Path
database = Path(__file__).parent.joinpath("database.sqlite3")
async def insert(id, first_name):
query = """
INSERT INTO "main"."accounts" ("id", "first_name", "balance","token","useragent") VALUES (?,?,?,?,?)
"""
values = (
id,
first_name,
None,
None,
None,
)
async with aiosqlite.connect(database=database) as db:
await db.execute(query, values)
await db.commit()
async def update_useragent(id, useragent):
query = """UPDATE "main"."accounts" SET "useragent" = ? WHERE rowid = ?"""
values = (
useragent,
id,
)
async with aiosqlite.connect(database=database) as db:
await db.execute(query, values)
await db.commit()
async def update_balance(id, balance):
query = """
UPDATE "main"."accounts" SET "balance" = ? WHERE rowid = ?
"""
values = (balance, id)
async with aiosqlite.connect(database=database) as db:
await db.execute(query, values)
await db.commit()
async def update_token(id, token):
query = """
UPDATE "main"."accounts" SET "token" = ? WHERE rowid = ?
"""
values = (
token,
id,
)
async with aiosqlite.connect(database=database) as db:
await db.execute(query, values)
await db.commit()
async def get_by_id(id):
query = """
SELECT * FROM "main"."accounts" WHERE rowid = ?
"""
values = (id,)
data = None
async with aiosqlite.connect(database=database) as db:
db.row_factory = aiosqlite.Row
async with db.execute(query, values) as res:
result = await res.fetchone()
if not result:
data = result
else:
data = {
"id": result["id"],
"first_name": result["first_name"],
"balance": result["balance"],
"token": result["token"],
"useragent": result["useragent"],
}
return data
async def get_all():
query = """SELECT "id","first_name","balance" FROM "main"."accounts" """
async with aiosqlite.connect(database=database) as db:
db.row_factory = aiosqlite.Row
async with db.execute(query) as res:
results = await res.fetchall()
data = []
for r in results:
d = {
"id": r["id"],
"first_name": r["first_name"],
"balance": r["balance"],
}
data.append(d)
return data
async def init():
query1 = """
DROP TABLE IF EXISTS "accounts";
"""
query2 = """
CREATE TABLE IF NOT EXISTS "accounts" (
"id" INTEGER NOT NULL,
"first_name" TEXT,
"balance" TEXT,
"token" TEXT,
"useragent" TEXT,
PRIMARY KEY ("id")
);
"""
query3 = """
PRAGMA foreign_keys = true;
"""
async with aiosqlite.connect(database=database) as db:
# await db.execute(query1)
await db.execute(query2)
await db.execute(query3)
await db.commit()
async def test():
await get_all()
# await update_balance(1, 1000000000000)
# await update_token(1, "asjdflaskjflaskjdfklajsflkajsdlkfj")
# result = await get_by_id(2)
# print(result)
# print(result)
# await insert(2, "akwokoawak")
asyncio.run(init())