-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDB_Repository_Watcher.py
91 lines (58 loc) · 2.04 KB
/
DB_Repository_Watcher.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
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import github
import db_operation
import datetime
class DB_Repository_Watcher:
"""
This class represents DB_Repository_Watcher as a class descrbles watch-ship between \
github.Repository.Repository and github.NamedUser.NamedUser
"""
repo = None
watcher = None
db = None
table = "Repository_Watcher"
def __init__(self, repo, watcher, db):
self.repo = repo
self.watcher = watcher
self.db = db
def open_if_connection_closed(self):
try:
if self.db is None:
return False
if self.db.open == 0:
self.db = db_operation.connect_to_db_simple()
if self.db is None:
return False
return True
except Exception, e:
print e
return False
def save(self):
try:
if self.open_if_connection_closed() == False:
return False
if self.exist():
return True
sql = "insert into %s (%s, %s) values (%d, %d)"%(self.table, "repository", "watcher", self.repo.id, self.watcher.id)
cursor = self.db.cursor()
cursor.execute(sql)
self.db.commit()
return True
except Exception as e:
print e
return False
def exist(self):
try:
if self.open_if_connection_closed() == False:
return False
cursor = self.db.cursor()
sql = "select count(*) from %s where repository=%d && watcher=%d;"%(self.table, self.repo.id, self.watcher.id)
cursor.execute(sql)
result = cursor.fetchall()
if result[0][0] == 0:
return False
return True
except Exception as e:
print e
return False