-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDB_PullRequest_Commit.py
90 lines (58 loc) · 1.99 KB
/
DB_PullRequest_Commit.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
#!/usr/bin/python
# -*- coding: UTF-8 -*-
import github
import datetime
import db_operation
class DB_PullRequest_Commit:
"""
This class represents DB_PullRequest_Commit as a class describles pull-commit relationship
"""
commit = None
pull = None
db = None
table = "PullRequest_Commit"
def __init__(self, commit, pull, db):
self.commit = commit
self.pull = pull
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 ('%s', %d);" \
%(self.table, "commit", "pull", self.commit.sha, self.pull.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 pull=%d && commit='%s';"%(self.table, self.pull.id, self.commit.sha)
cursor.execute(sql)
result = cursor.fetchall()
if result[0][0] == 0:
return False
return True
except Exception as e:
print e
return False