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
|
# This file has parts from Buildbot and is modifyed by Gentoo Authors.
# Buildbot is free software: you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation, version 2.
#
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# this program; if not, write to the Free Software Foundation, Inc., 51
# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Copyright Buildbot Team Members
# Origins: buildbot.db.*
# Modifyed by Gentoo Authors.
# Copyright 2024 Gentoo Authors
from __future__ import annotations
from dataclasses import dataclass
from typing import TYPE_CHECKING
import uuid
import sqlalchemy as sa
from twisted.internet import defer
from buildbot.db import base
from buildbot.warnings import warn_deprecated
if TYPE_CHECKING:
import datetime
@dataclass
class PackageModel:
uuid : str
name : str
category_uuid : str
repository_uuid : str
deleted : bool
deleted_at : datetime.datetime | None
# For backward compatibility
def __getitem__(self, key: str):
if hasattr(self, key):
return getattr(self, key)
raise KeyError(key)
def _db2data_Package(model: PackageModel):
if model is None:
return None
return {
'uuid' : model.uuid,
'name' : model.name,
'category_uuid' : model.category_uuid,
'repository_uuid' : model.repository_uuid,
'deleted' : model.deleted,
'deleted_at' : model.deleted_at,
}
class PackagesConnectorComponent(base.DBConnectorComponent):
def getPackageByName(self, name: str, c_uuid: str, repo_uuid: str, deleted: bool | None = False) -> defer.Deferred[PackageModel | None]:
def thd(conn) -> PackageModel | None:
tbl = self.db.model.packages
q = tbl.select()
q = q.where(tbl.c.name == name)
q = q.where(tbl.c.category_uuid == c_uuid)
q = q.where(tbl.c.deleted == deleted)
q = q.where(tbl.c.repository_uuid == repo_uuid)
res = conn.execute(q)
row = res.fetchone()
rv = None
if row:
rv = self._model_from_row_PackageModel(row)
res.close()
return rv
return self.db.pool.do(thd)
def getPackageByUuid(self, uuid: str) -> defer.Deferred[PackageModel | None]:
def thd(conn) -> PackageModel | None:
tbl = self.db.model.packages
q = tbl.select()
q = q.where(tbl.c.uuid == uuid)
res = conn.execute(q)
row = res.fetchone()
rv = None
if row:
rv = self._model_from_row_PackageModel(row)
res.close()
return rv
return self.db.pool.do(thd)
def addPackage(self, name: str, repository_uuid: str, category_uuid: str) -> defer.Deferred[str]:
def thd(conn) -> str:
insert_row = {
'name' : name,
'repository_uuid' : repository_uuid,
'category_uuid' : category_uuid,
'deleted_at' : 0,
'deleted' : False,
}
try:
r = conn.execute(self.db.model.packages.insert(), insert_row)
conn.commit()
except (sa.exc.IntegrityError, sa.exc.ProgrammingError):
conn.rollback()
return None
else:
return r.inserted_primary_key[0]
return self.db.pool.do(thd)
def _model_from_row_PackageModel(self, row):
return PackageModel(
uuid=row.uuid,
name=row.name,
repository_uuid=row.repository_uuid,
category_uuid=row.category_uuid,
deleted=row.deleted,
deleted_at=row.deleted_at,
)
@defer.inlineCallbacks
def getPackageMetadataByPackageUuid(self, package_uuid):
def thd(conn):
tbl = self.db.model.packages_metadata
q = tbl.select()
q = q.where(tbl.c.package_uuid == package_uuid)
res = conn.execute(q)
row = res.fetchone()
if not row:
return None
return self._row2dict_metadata(conn, row)
res = yield self.db.pool.do(thd)
return res
@defer.inlineCallbacks
def addMetadata(self, package_uuid, sha256):
def thd(conn, no_recurse=False):
try:
tbl = self.db.model.packages_metadata
q = tbl.insert()
r = conn.execute(q, dict(package_uuid=package_uuid,
sha256=sha256
))
except Exception as e:
print(type(e))
print(e.args)
print(e)
res = None
else:
res = r.inserted_primary_key[0]
return res
res = yield self.db.pool.do(thd)
return res
def _row2dict_metadata(self, conn, row):
return dict(
id=row.id,
package_uuid=row.package_uuid,
sha256=row.sha256,
)
@defer.inlineCallbacks
def addEmail(self, email):
def thd(conn, no_recurse=False):
try:
tbl = self.db.model.emails
q = tbl.insert()
r = conn.execute(q, dict(email=email))
except Exception as e:
print(type(e))
print(e.args)
print(e)
res = None
else:
res = r.inserted_primary_key[0]
return res
res = yield self.db.pool.do(thd)
return res
@defer.inlineCallbacks
def addPackageEmail(self, email_id, package_uuid, mail_type, proxied):
def thd(conn, no_recurse=False):
try:
tbl = self.db.model.packages_emails
q = tbl.insert()
r = conn.execute(q, dict(email_id=email_id,
package_uuid=package_uuid,
mail_type=mail_type,
proxied=proxied
))
except Exception as e:
print(type(e))
print(e.args)
print(e)
res = None
else:
res = r.inserted_primary_key[0]
return res
res = yield self.db.pool.do(thd)
return res
@defer.inlineCallbacks
def getEmailIdByEmail(self, email):
def thd(conn):
tbl = self.db.model.emails
q = tbl.select()
q = q.where(tbl.c.email == email)
res = conn.execute(q)
row = res.fetchone()
if not row:
return None
return self._row2dict_email(conn, row)
res = yield self.db.pool.do(thd)
return res
@defer.inlineCallbacks
def getEmailByEmailId(self, email_id):
def thd(conn):
tbl = self.db.model.emails
q = tbl.select()
q = q.where(tbl.c.id == email_id)
res = conn.execute(q)
row = res.fetchone()
if not row:
return None
return self._row2dict_email(conn, row)
res = yield self.db.pool.do(thd)
return res
@defer.inlineCallbacks
def getEmailsIdsByPackageUuid(self, package_uuid):
def thd(conn):
tbl = self.db.model.packages_emails
q = tbl.select()
q = q.where(tbl.c.package_uuid == package_uuid)
return [self._row2dict_package_email(conn, row)
for row in conn.execute(q).fetchall()]
res = yield self.db.pool.do(thd)
return res
@defer.inlineCallbacks
def delPackageEmail(self, package_uuid):
def thd(conn, no_recurse=False):
tbl = self.db.model.packages_emails
conn.execute(tbl.delete().where(tbl.c.package_uuid == package_uuid))
res = yield self.db.pool.do(thd)
return res
def _row2dict_email(self, conn, row):
return dict(
id=row.id,
email=row.email,
)
def _row2dict_package_email(self, conn, row):
return dict(
id=row.id,
email_id=row.email_id,
package_uuid=row.package_uuid,
mail_type=row.mail_type,
proxied=row.proxied,
)
|