-
Notifications
You must be signed in to change notification settings - Fork 1
/
task.py
264 lines (228 loc) · 7.53 KB
/
task.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
from database import DB
class Task:
def __init__(self, title, content, task_status_id, task_type_id):
self.id = None
self.title = title
self.content = content
self.task_status_id = task_status_id
self.task_type_id = task_type_id
def create(self, user_id):
with DB() as db:
values = (
None, self.title, self.content,
self.task_status_id, self.task_type_id
)
db.execute(
'''
INSERT INTO tasks
VALUES (?, ?, ?, ?, ?)
''', values
)
id = db.execute(
'''
SELECT id FROM tasks
WHERE tasks.title = ?
''', (self.title,)
).fetchone()[0]
db.execute(
'''
INSERT INTO user_tasks
VALUES (?, ?, ?)
''', (None, str(user_id), str(id))
)
return self
@staticmethod
def get_task_by_id(task_id):
if not task_id:
return None
with DB() as db:
row = db.execute(
'''
SELECT tasks.title, tasks.content, task_types.title
FROM tasks
INNER JOIN task_types
ON tasks.task_type_id = task_types.id
WHERE tasks.id = ?
''', (str(task_id),)
).fetchone()
if row:
return row
return False
@staticmethod
def display_all(user_id):
with DB() as db:
return db.execute(
'''
SELECT tasks.title, tasks.content, task_types.title
FROM tasks
INNER JOIN task_types
ON tasks.task_type_id = task_types.id
INNER JOIN user_tasks
ON tasks.id = user_tasks.task_id
INNER JOIN users
ON user_tasks.user_id = users.id
WHERE users.id = ?
''', (str(user_id),)
).fetchall()
@staticmethod
def count_all(user_id):
with DB() as db:
return db.execute(
'''
SELECT COUNT(user_tasks.task_id) FROM user_tasks
WHERE users.id = ?
''', (str(user_id),)
).fetchone()[0]
@staticmethod
def display_by_status(user_id, status_id):
with DB() as db:
return db.execute(
'''
SELECT tasks.title, tasks.content,
task_types.title, tasks.id
FROM tasks
INNER JOIN task_types
ON tasks.task_type_id = task_types.id
INNER JOIN user_tasks
ON tasks.id = user_tasks.task_id
INNER JOIN users
ON user_tasks.user_id = users.id
WHERE users.id = ? AND tasks.task_status_id = ?
''', (str(user_id), str(status_id))
).fetchall()
@staticmethod
def display_by_type(user_id, task_type_id, status_id):
with DB() as db:
return db.execute(
'''
SELECT tasks.title, tasks.content,
task_types.title, tasks.id
FROM tasks
INNER JOIN task_types
ON tasks.task_type_id = task_types.id
INNER JOIN user_tasks
ON tasks.id = user_tasks.task_id
INNER JOIN users
ON user_tasks.user_id = users.id
WHERE users.id = ? AND task_types.id = ?
AND tasks.task_status_id = ?
''', (str(user_id), str(task_type_id), str(status_id))
).fetchall()
@staticmethod
def select_by_title(user_id, title):
if not title:
return None
with DB() as db:
row = db.execute(
'''
SELECT tasks.title, tasks.content,
tasks.task_type_id, tasks.task_status_id
FROM tasks
INNER JOIN user_tasks
ON tasks.id = user_tasks.task_id
WHERE user_tasks.user_id = ? AND tasks.title = ?
''', (str(user_id), title)
).fetchone()
if row:
return Task(*row)
else:
return False
@staticmethod
def edit_content(task_id, content):
if not content:
return None
with DB() as db:
row = db.execute(
'''
SELECT * FROM tasks
WHERE id = ?
''', (str(task_id),)
).fetchone()
if row:
db.execute(
'''
UPDATE tasks
SET content = ?
WHERE id = ?
''', (content, str(task_id))
)
else:
return False
@staticmethod
def edit_title(task_id, title):
if not title:
return None
with DB() as db:
row = db.execute(
'''
SELECT * FROM tasks
WHERE id = ?
''', (str(task_id),)
).fetchone()
if row:
db.execute(
'''
UPDATE tasks
SET title = ?
WHERE id = ?
''', (title, str(task_id))
)
else:
return False
@staticmethod
def edit_type(task_id, type_id):
if not type_id:
return None
with DB() as db:
row = db.execute(
'''
SELECT * FROM tasks
WHERE id = ?
''', (str(task_id),)
).fetchone()
if row:
db.execute(
'''
UPDATE tasks
SET task_type_id = ?
WHERE id = ?
''', (str(type_id), str(task_id))
)
else:
return False
@staticmethod
def edit_status(task_id, status_id):
if not status_id:
return None
with DB() as db:
row = db.execute(
'''
SELECT * FROM tasks
WHERE id = ?
''', (str(task_id),)
).fetchone()
if row:
db.execute(
'''
UPDATE tasks
SET task_status_id = ?
WHERE id = ?
''', (str(status_id), str(task_id))
)
else:
return False
@staticmethod
def delete(task_id):
with DB() as db:
db.execute(
'''
DELETE FROM tasks
WHERE id = ?
''', (str(task_id),)
)
db.execute(
'''
DELETE FROM user_tasks
WHERE task_id = ?
''', (str(task_id),)
)