Skip to content

Commit 686d84b

Browse files
authored
Update model.py
1 parent b7ff49e commit 686d84b

File tree

1 file changed

+52
-27
lines changed

1 file changed

+52
-27
lines changed

model.py

+52-27
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,74 @@
11
import sqlite3
22
from datetime import datetime
33

4+
45
class Models:
56

6-
def __init__(self):
7-
self.db = sqlite3.connect('database.db',check_same_thread=False)
8-
self.cursor = self.db.cursor()
9-
self.create_table()
7+
def __init__(self):
8+
self.db = sqlite3.connect('database.db', check_same_thread=False)
9+
self.cursor = self.db.cursor()
10+
self.create_table()
1011

11-
def create_table(self):
12-
"""Creates table if not exists"""
13-
self.cursor.execute('''
12+
def create_table(self):
13+
"""Creates table if not exists"""
14+
self.cursor.execute('''
1415
CREATE TABLE IF NOT EXISTS subscriptions (
1516
chat_id TEXT PRIMARY KEY NOT NULL,
1617
first_name TEXT DEFAULT "",
1718
last_name TEXT DEFAULT "",
1819
subsdate DATETIME DEFAULT CURRENT_TIMESTAMP
1920
)
2021
''')
21-
self.db.commit()
22+
self.cursor.execute('''
23+
CREATE TABLE IF NOT EXISTS messages (
24+
id INTEGER PRIMARY KEY,
25+
chat_id TEXT NOT NULL,
26+
first_name TEXT DEFAULT "",
27+
last_name TEXT DEFAULT "",
28+
message TEXT DEFAULT "",
29+
message_date DATETIME DEFAULT CURRENT_TIMESTAMP
30+
)
31+
''')
32+
self.db.commit()
2233

23-
def add_user(self, chat_id, first_name, last_name):
24-
"""Adds people to database"""
25-
self.cursor.execute('''
34+
def add_user(self, chat_id, first_name, last_name):
35+
"""Adds people to database"""
36+
self.cursor.execute(
37+
'''
2638
INSERT INTO subscriptions (chat_id, first_name, last_name) VALUES (?, ?, ?)
2739
''', (chat_id, first_name, last_name))
28-
self.db.commit()
40+
self.db.commit()
2941

30-
def delete_person(self, chat_id):
31-
"""Deletes people from database"""
32-
self.cursor.execute('''
42+
def delete_person(self, chat_id):
43+
"""Deletes people from database"""
44+
self.cursor.execute(
45+
'''
3346
DELETE FROM subscriptions WHERE chat_id = ?
34-
''', (chat_id,))
35-
self.db.commit()
36-
37-
def check_person(self, chat_id):
38-
"""Checks if people exists"""
39-
self.cursor.execute('''
47+
''', (chat_id, ))
48+
self.db.commit()
49+
50+
def check_person(self, chat_id):
51+
"""Checks if people exists"""
52+
self.cursor.execute(
53+
'''
4054
SELECT * FROM subscriptions WHERE chat_id = ?
41-
''', (chat_id,))
42-
return self.cursor.fetchone()
55+
''', (chat_id, ))
56+
return self.cursor.fetchone()
4357

44-
def check_all(self):
45-
self.cursor.execute('''
58+
def check_all(self):
59+
self.cursor.execute('''
4660
SELECT * FROM subscriptions
4761
''')
48-
return self.cursor.fetchall()
49-
62+
return self.cursor.fetchall()
63+
64+
def add_message(self, chat_id, first_name, last_name, message):
65+
self.cursor.execute(
66+
"INSERT INTO messages (chat_id, first_name, last_name,message) VALUES (?, ?, ?, ?)",
67+
(chat_id, first_name, last_name, message))
68+
self.db.commit()
69+
70+
def get_all_messages(self):
71+
self.cursor.execute('''
72+
SELECT * FROM messages
73+
''')
74+
return self.cursor.fetchall()

0 commit comments

Comments
 (0)