|
1 | 1 | import sqlite3
|
2 | 2 | from datetime import datetime
|
3 | 3 |
|
| 4 | + |
4 | 5 | class Models:
|
5 | 6 |
|
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() |
10 | 11 |
|
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(''' |
14 | 15 | CREATE TABLE IF NOT EXISTS subscriptions (
|
15 | 16 | chat_id TEXT PRIMARY KEY NOT NULL,
|
16 | 17 | first_name TEXT DEFAULT "",
|
17 | 18 | last_name TEXT DEFAULT "",
|
18 | 19 | subsdate DATETIME DEFAULT CURRENT_TIMESTAMP
|
19 | 20 | )
|
20 | 21 | ''')
|
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() |
22 | 33 |
|
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 | + ''' |
26 | 38 | INSERT INTO subscriptions (chat_id, first_name, last_name) VALUES (?, ?, ?)
|
27 | 39 | ''', (chat_id, first_name, last_name))
|
28 |
| - self.db.commit() |
| 40 | + self.db.commit() |
29 | 41 |
|
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 | + ''' |
33 | 46 | 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 | + ''' |
40 | 54 | SELECT * FROM subscriptions WHERE chat_id = ?
|
41 |
| - ''', (chat_id,)) |
42 |
| - return self.cursor.fetchone() |
| 55 | + ''', (chat_id, )) |
| 56 | + return self.cursor.fetchone() |
43 | 57 |
|
44 |
| - def check_all(self): |
45 |
| - self.cursor.execute(''' |
| 58 | + def check_all(self): |
| 59 | + self.cursor.execute(''' |
46 | 60 | SELECT * FROM subscriptions
|
47 | 61 | ''')
|
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