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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
|
# Copyright 2009-2011 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# pylint: disable-msg=E0611,W0212
__metaclass__ = type
__all__ = [
'TranslationGroup',
'TranslationGroupSet',
]
import operator
from sqlobject import (
ForeignKey,
SQLMultipleJoin,
SQLObjectNotFound,
SQLRelatedJoin,
StringCol,
)
from storm.expr import (
Join,
LeftJoin,
)
from storm.store import Store
from zope.interface import implements
from canonical.database.constants import DEFAULT
from canonical.database.datetimecol import UtcDateTimeCol
from canonical.database.sqlbase import SQLBase
from lp.app.errors import NotFoundError
from lp.registry.interfaces.person import validate_public_person
from lp.registry.model.person import Person
from lp.registry.model.teammembership import TeamParticipation
from lp.services.database.decoratedresultset import DecoratedResultSet
from lp.services.database.lpstorm import (
ISlaveStore,
IStore,
)
from lp.services.librarian.model import (
LibraryFileAlias,
LibraryFileContent,
)
from lp.services.worlddata.model.language import Language
from lp.translations.interfaces.translationgroup import (
ITranslationGroup,
ITranslationGroupSet,
)
from lp.translations.model.translator import Translator
class TranslationGroup(SQLBase):
"""A TranslationGroup."""
implements(ITranslationGroup)
# default to listing alphabetically
_defaultOrder = 'name'
# db field names
name = StringCol(unique=True, alternateID=True, notNull=True)
title = StringCol(notNull=True)
summary = StringCol(notNull=True)
datecreated = UtcDateTimeCol(notNull=True, default=DEFAULT)
owner = ForeignKey(
dbName='owner', foreignKey='Person',
storm_validator=validate_public_person, notNull=True)
# useful joins
distributions = SQLMultipleJoin('Distribution',
joinColumn='translationgroup')
languages = SQLRelatedJoin('Language', joinColumn='translationgroup',
intermediateTable='Translator', otherColumn='language')
translators = SQLMultipleJoin('Translator',
joinColumn='translationgroup')
translation_guide_url = StringCol(notNull=False, default=None)
def __getitem__(self, language_code):
"""See `ITranslationGroup`."""
query = Store.of(self).find(
Translator,
Translator.translationgroup == self,
Translator.languageID == Language.id,
Language.code == language_code)
translator = query.one()
if translator is None:
raise NotFoundError(language_code)
return translator
# used to note additions
def add(self, content):
"""See ITranslationGroup."""
return content
# adding and removing translators
def remove_translator(self, translator):
"""See ITranslationGroup."""
Translator.delete(translator.id)
# get a translator by language or code
def query_translator(self, language):
"""See ITranslationGroup."""
return Translator.selectOneBy(language=language,
translationgroup=self)
@property
def products(self):
"""See `ITranslationGroup`."""
# Avoid circular imports.
from lp.registry.model.product import Product
return Product.selectBy(translationgroup=self.id, active=True)
@property
def projects(self):
"""See `ITranslationGroup`."""
# Avoid circular imports.
from lp.registry.model.projectgroup import ProjectGroup
return ProjectGroup.selectBy(translationgroup=self.id, active=True)
# A limit of projects to get for the `top_projects`.
TOP_PROJECTS_LIMIT = 6
@property
def top_projects(self):
"""See `ITranslationGroup`."""
# XXX Danilo 2009-08-25: We should make this list show a list
# of projects based on the top translations karma (bug #418493).
goal = self.TOP_PROJECTS_LIMIT
projects = list(self.distributions[:goal])
found = len(projects)
if found < goal:
projects.extend(
list(self.projects[:goal-found]))
found = len(projects)
if found < goal:
projects.extend(
list(self.products[:goal-found]))
return projects
@property
def number_of_remaining_projects(self):
"""See `ITranslationGroup`."""
total = (
self.projects.count() +
self.products.count() +
self.distributions.count())
if total > self.TOP_PROJECTS_LIMIT:
return total - self.TOP_PROJECTS_LIMIT
else:
return 0
def fetchTranslatorData(self):
"""See `ITranslationGroup`."""
# Fetch Translator, Language, and Person; but also prefetch the
# icon information.
using = [
Translator,
Language,
Person,
LeftJoin(LibraryFileAlias, LibraryFileAlias.id == Person.iconID),
LeftJoin(
LibraryFileContent,
LibraryFileContent.id == LibraryFileAlias.contentID),
]
tables = (
Translator,
Language,
Person,
LibraryFileAlias,
LibraryFileContent,
)
translator_data = Store.of(self).using(*using).find(
tables,
Translator.translationgroup == self,
Language.id == Translator.languageID,
Person.id == Translator.translatorID)
translator_data = translator_data.order_by(Language.englishname)
mapper = lambda row: row[slice(0, 3)]
return DecoratedResultSet(translator_data, mapper)
def fetchProjectsForDisplay(self):
"""See `ITranslationGroup`."""
# Avoid circular imports.
from lp.registry.model.product import (
Product,
ProductWithLicenses,
)
using = [
Product,
LeftJoin(LibraryFileAlias, LibraryFileAlias.id == Product.iconID),
LeftJoin(
LibraryFileContent,
LibraryFileContent.id == LibraryFileAlias.contentID),
]
columns = (
Product,
ProductWithLicenses.composeLicensesColumn(),
LibraryFileAlias,
LibraryFileContent,
)
product_data = ISlaveStore(Product).using(*using).find(
columns,
Product.translationgroupID == self.id, Product.active == True)
product_data = product_data.order_by(Product.displayname)
return [
ProductWithLicenses(product, tuple(licenses))
for product, licenses, icon_alias, icon_content in product_data]
def fetchProjectGroupsForDisplay(self):
"""See `ITranslationGroup`."""
# Avoid circular imports.
from lp.registry.model.projectgroup import ProjectGroup
using = [
ProjectGroup,
LeftJoin(
LibraryFileAlias, LibraryFileAlias.id == ProjectGroup.iconID),
LeftJoin(
LibraryFileContent,
LibraryFileContent.id == LibraryFileAlias.contentID),
]
tables = (
ProjectGroup,
LibraryFileAlias,
LibraryFileContent,
)
project_data = ISlaveStore(ProjectGroup).using(*using).find(
tables,
ProjectGroup.translationgroupID == self.id,
ProjectGroup.active == True).order_by(ProjectGroup.displayname)
return DecoratedResultSet(project_data, operator.itemgetter(0))
def fetchDistrosForDisplay(self):
"""See `ITranslationGroup`."""
# Avoid circular imports.
from lp.registry.model.distribution import Distribution
using = [
Distribution,
LeftJoin(
LibraryFileAlias, LibraryFileAlias.id == Distribution.iconID),
LeftJoin(
LibraryFileContent,
LibraryFileContent.id == LibraryFileAlias.contentID),
]
tables = (
Distribution,
LibraryFileAlias,
LibraryFileContent,
)
distro_data = ISlaveStore(Distribution).using(*using).find(
tables, Distribution.translationgroupID == self.id).order_by(
Distribution.displayname)
return DecoratedResultSet(distro_data, operator.itemgetter(0))
class TranslationGroupSet:
implements(ITranslationGroupSet)
title = 'Rosetta Translation Groups'
def __iter__(self):
"""See `ITranslationGroupSet`."""
# XXX Danilo 2009-08-25: See bug #418490: we should get
# group names from their respective celebrities. For now,
# just hard-code them so they show up at the top of the
# listing of all translation groups.
for group in TranslationGroup.select(
orderBy=[
"-(name in ('launchpad-translators', 'ubuntu-translators'))",
"title"]):
yield group
def __getitem__(self, name):
"""See ITranslationGroupSet."""
return self.getByName(name)
def getByName(self, name):
"""See ITranslationGroupSet."""
try:
return TranslationGroup.byName(name)
except SQLObjectNotFound:
raise NotFoundError(name)
def _get(self):
return IStore(TranslationGroup).find(TranslationGroup)
def new(self, name, title, summary, translation_guide_url, owner):
"""See ITranslationGroupSet."""
return TranslationGroup(
name=name,
title=title,
summary=summary,
translation_guide_url=translation_guide_url,
owner=owner)
def getByPerson(self, person):
"""See `ITranslationGroupSet`."""
store = Store.of(person)
origin = [
TranslationGroup,
Join(Translator,
Translator.translationgroupID == TranslationGroup.id),
Join(TeamParticipation,
TeamParticipation.teamID == Translator.translatorID),
]
result = store.using(*origin).find(
TranslationGroup, TeamParticipation.person == person)
return result.config(distinct=True).order_by(TranslationGroup.title)
def getGroupsCount(self):
"""See ITranslationGroupSet."""
return TranslationGroup.select().count()
|