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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
|
# Copyright 2009-2010 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
# pylint: disable-msg=E0211,E0213
from datetime import timedelta
from lazr.enum import (
DBEnumeratedType,
DBItem,
EnumeratedType,
Item,
)
from lazr.restful.declarations import (
call_with,
collection_default_content,
export_as_webservice_collection,
export_as_webservice_entry,
export_read_operation,
export_write_operation,
exported,
operation_parameters,
operation_returns_collection_of,
operation_returns_entry,
REQUEST_USER,
webservice_error,
)
from lazr.restful.fields import Reference
from lazr.restful.interface import copy_field
from zope.interface import (
Attribute,
Interface,
)
from zope.schema import (
Bool,
Choice,
Datetime,
Field,
Int,
Text,
TextLine,
)
from zope.security.interfaces import Unauthorized
from canonical.launchpad import _
from lp.registry.interfaces.distroseries import IDistroSeries
from lp.registry.interfaces.productseries import IProductSeries
from lp.registry.interfaces.sourcepackage import ISourcePackage
from lp.services.fields import PersonChoice
from lp.translations.enums import RosettaImportStatus
from lp.translations.interfaces.hastranslationimports import (
IHasTranslationImports,
)
from lp.translations.interfaces.translationcommonformat import (
TranslationImportExportBaseException,
)
from lp.translations.interfaces.translationfileformat import (
TranslationFileFormat,
)
__metaclass__ = type
__all__ = [
'TranslationImportQueueConflictError',
'ITranslationImportQueueEntry',
'ITranslationImportQueue',
'IEditTranslationImportQueueEntry',
'SpecialTranslationImportTargetFilter',
'TranslationFileType',
'translation_import_queue_entry_age',
'UserCannotSetTranslationImportStatus',
]
class TranslationImportQueueConflictError(
TranslationImportExportBaseException):
"""A new entry cannot be inserted into the queue because it
conflicts with existing entries."""
class UserCannotSetTranslationImportStatus(Unauthorized):
"""User not permitted to change status.
Raised when a user tries to transition to a new status who doesn't
have the necessary permissions.
"""
webservice_error(401) # HTTP Error: 'Unauthorized'
# Some time spans in days.
DAYS_IN_MONTH = 30
DAYS_IN_HALF_YEAR = 366 / 2
# Period after which entries with certain statuses are culled from the
# queue.
translation_import_queue_entry_age = {
RosettaImportStatus.DELETED: timedelta(days=3),
RosettaImportStatus.FAILED: timedelta(days=DAYS_IN_MONTH),
RosettaImportStatus.IMPORTED: timedelta(days=3),
RosettaImportStatus.NEEDS_INFORMATION: timedelta(days=14),
RosettaImportStatus.NEEDS_REVIEW: timedelta(days=DAYS_IN_HALF_YEAR),
}
class SpecialTranslationImportTargetFilter(DBEnumeratedType):
"""Special "meta-targets" to filter the queue view by."""
PRODUCT = DBItem(1, """
Any project
Any project registered in Launchpad.
""")
DISTRIBUTION = DBItem(2, """
Any distribution
Any distribution registered in Launchpad.
""")
class ITranslationImportQueueEntry(Interface):
"""An entry of the Translation Import Queue."""
export_as_webservice_entry(
singular_name='translation_import_queue_entry',
plural_name='translation_import_queue_entries')
id = exported(Int(title=_('The entry ID'), required=True, readonly=True))
path = exported(
TextLine(
title=_("Path"),
description=_(
"The path to this file inside the source tree. Includes the"
" filename."),
required=True))
importer = exported(
PersonChoice(
title=_("Uploader"),
required=True,
readonly=True,
description=_(
"The person that uploaded this file to Launchpad."),
vocabulary="ValidOwner"),
exported_as="uploader")
dateimported = exported(
Datetime(
title=_("The timestamp when this queue entry was created."),
required=True,
readonly=True),
exported_as="date_created")
productseries = exported(
Reference(
title=_("Series"),
required=False,
readonly=True,
schema=IProductSeries))
distroseries = exported(
Reference(
title=_("Series"),
required=False,
readonly=True,
schema=IDistroSeries))
sourcepackagename = Choice(
title=_("Source Package Name"),
description=_(
"The source package from where this entry comes."),
required=False,
vocabulary="SourcePackageName")
by_maintainer = Bool(
title=_(
"This upload was done by the maintainer "
"of the project or package."),
description=_(
"If checked, the translations in this import will be marked "
"as is_current_upstream."),
required=True,
default=False)
content = Attribute(
"An ILibraryFileAlias reference with the file content. Must not be"
" None.")
format = exported(
Choice(
title=_('The file format of the import.'),
vocabulary=TranslationFileFormat,
required=True,
readonly=True))
status = exported(
Choice(
title=_("The status of the import."),
vocabulary=RosettaImportStatus,
required=True,
readonly=True))
date_status_changed = exported(
Datetime(
title=_("The timestamp when the status was changed."),
required=True))
is_targeted_to_ubuntu = Attribute(
"True if this entry is to be imported into the Ubuntu distribution.")
sourcepackage = exported(
Reference(
schema=ISourcePackage,
title=_("The sourcepackage associated with this entry."),
readonly=True))
guessed_potemplate = Attribute(
"The IPOTemplate that we can guess this entry could be imported into."
" None if we cannot guess it.")
import_into = Attribute("The Object where this entry will be imported. Is"
" None if we don't know where to import it.")
pofile = Field(
title=_("The IPOfile where this entry should be imported."),
required=False)
potemplate = Field(
title=_("The IPOTemplate associated with this entry."),
description=_("The IPOTemplate associated with this entry. If path"
" notes a .pot file, it should be used as the place where this entry"
" will be imported, if it's a .po file, it indicates the template"
" associated with tha translation."),
required=False)
error_output = exported(
Text(
title=_("Error output"),
description=_("Output from most recent import attempt."),
required=False,
readonly=True))
def canAdmin(roles):
"""Check if the user can administer this entry."""
def canEdit(roles):
"""Check if the user can edit this entry."""
def canSetStatus(new_status, user):
"""Check if the user can set this new status."""
@call_with(user=REQUEST_USER)
@operation_parameters(new_status=copy_field(status))
@export_write_operation()
def setStatus(new_status, user):
"""Transition to a new status if possible.
:param new_status: Status to transition to.
:param user: The user that is doing the transition.
"""
def setErrorOutput(output):
"""Set `error_output` string."""
def addWarningOutput(output):
"""Optionally add warning output to `error_output`.
This may not do everything you expect of it. Read the code if
you need certainty.
"""
def getGuessedPOFile():
"""Return an IPOFile that we think this entry should be imported into.
Return None if we cannot guess it."""
def getFileContent():
"""Return the imported file content as a stream."""
def getTemplatesOnSameDirectory():
"""Return import queue entries stored on the same directory as self.
The returned entries will be only .pot entries.
"""
def getElapsedTimeText():
"""Return a string representing elapsed time since we got the file.
The returned string is like:
'2 days 3 hours 10 minutes ago' or 'just requested'
"""
class ITranslationImportQueue(Interface):
"""A set of files to be imported into Rosetta."""
export_as_webservice_collection(ITranslationImportQueueEntry)
def __iter__():
"""Iterate over all entries in the queue."""
def __getitem__(id):
"""Return the ITranslationImportQueueEntry with the given id.
If there is not entries with that id, the NotFoundError exception is
raised.
"""
def countEntries():
"""Return the number of `TranslationImportQueueEntry` records."""
def addOrUpdateEntry(path, content, by_maintainer, importer,
sourcepackagename=None, distroseries=None, productseries=None,
potemplate=None, pofile=None, format=None):
"""Return a new or updated entry of the import queue.
:arg path: is the path, with the filename, of the uploaded file.
:arg content: is the file content.
:arg by_maintainer: indicates if the file was uploaded by the
maintainer of the project or package.
:arg importer: is the person that did the import.
:arg sourcepackagename: is the link of this import with source
package.
:arg distroseries: is the link of this import with a distribution.
:arg productseries: is the link of this import with a product branch.
:arg potemplate: is the link of this import with an IPOTemplate.
:arg pofile: is the link of this import with an IPOFile.
:arg format: a TranslationFileFormat.
:return: the entry, or None if processing failed.
The entry is either for a sourcepackage or a productseries, so
only one of them can be specified.
"""
def addOrUpdateEntriesFromTarball(content, by_maintainer, importer,
sourcepackagename=None, distroseries=None, productseries=None,
potemplate=None, filename_filter=None, approver_factory=None,
only_templates=False):
"""Add all .po or .pot files from the tarball at :content:.
:arg content: is a tarball stream.
:arg by_maintainer: indicates if the file was uploaded by the
maintainer of the project or package.
:arg importer: is the person that did the import.
:arg sourcepackagename: is the link of this import with source
package.
:arg distroseries: is the link of this import with a distribution.
:arg productseries: is the link of this import with a product branch.
:arg potemplate: is the link of this import with an IPOTemplate.
:arg approver_factory: is a factory that can be called to create an
approver. The method invokes the approver on any queue entries
that it creates. If this is None, no approval is performed.
:arg only_templates: Flag to indicate that only translation templates
in the tarball should be used.
:return: A tuple of the number of successfully processed files and a
list of those filenames that could not be processed correctly.
The entries are either for a sourcepackage or a productseries, so
only one of them can be specified.
"""
def get(id):
"""Return the ITranslationImportQueueEntry with the given id or None.
"""
@collection_default_content()
@operation_parameters(
import_status=copy_field(ITranslationImportQueueEntry['status']))
@operation_returns_collection_of(ITranslationImportQueueEntry)
@export_read_operation()
def getAllEntries(target=None, import_status=None, file_extensions=None):
"""Return all entries this import queue has.
:arg target: IPerson, IProduct, IProductSeries, IDistribution,
IDistroSeries or ISourcePackage the import entries are attached to
or None to get all entries available.
:arg import_status: RosettaImportStatus entry.
:arg file_extensions: Sequence of filename suffixes to match, usually
'po' or 'pot'.
If any of target, status or file_extension are given, the returned
entries are filtered based on those values.
"""
@export_read_operation()
@operation_parameters(target=Reference(schema=IHasTranslationImports))
@operation_returns_entry(ITranslationImportQueueEntry)
def getFirstEntryToImport(target=None):
"""Return the first entry of the queue ready to be imported.
:param target: IPerson, IProduct, IProductSeries, IDistribution,
IDistroSeries or ISourcePackage the import entries are attached to
or None to get all entries available.
"""
@export_read_operation()
@operation_parameters(
status=copy_field(ITranslationImportQueueEntry['status']))
@operation_returns_collection_of(IHasTranslationImports)
def getRequestTargets(status=None):
"""List `Product`s and `DistroSeries` with pending imports.
:arg status: Filter by `RosettaImportStatus`.
All returned items will implement `IHasTranslationImports`.
"""
def executeOptimisticApprovals(txn=None):
"""Try to approve Needs-Review entries.
:arg txn: Optional transaction manager. If given, will be
committed regularly.
This method moves all entries that we know where should they be
imported from the Needs Review status to the Accepted one.
"""
def executeOptimisticBlock(txn=None):
"""Try to move entries from the Needs Review status to Blocked one.
:arg txn: Optional transaction manager. If given, will be
committed regularly.
This method moves uploaded translations for Blocked templates to
the Blocked status as well. This lets you block a template plus
all its present or future translations in one go.
:return: The number of items blocked.
"""
def cleanUpQueue():
"""Remove old entries in terminal states.
This "garbage-collects" entries from the queue based on their
status (e.g. Deleted and Imported ones) and how long they have
been in that status.
:return: The number of entries deleted.
"""
def remove(entry):
"""Remove the given :entry: from the queue."""
class TranslationFileType(EnumeratedType):
"""The different types of translation files that can be imported."""
UNSPEC = Item("""
<Please specify>
Not yet specified.
""")
POT = Item("""
Template
A translation template file.
""")
PO = Item("""
Translations
A translation data file.
""")
class IEditTranslationImportQueueEntry(Interface):
"""Set of widgets needed to moderate an entry on the imports queue."""
file_type = Choice(
title=_("File Type"),
description=_(
"The type of the file being imported."),
required=True,
vocabulary = TranslationFileType)
path = TextLine(
title=_("Path"),
description=_(
"The path to this file inside the source tree."),
required=True)
sourcepackagename = Choice(
title=_("Source Package Name"),
description=_(
"The source package where this entry will be imported."),
required=True,
vocabulary="SourcePackageName")
name = TextLine(
title=_("Name"),
description=_(
"For templates only: "
"The name of this PO template, for example "
"'evolution-2.2'. Each translation template has a "
"unique name in its package."),
required=False)
translation_domain = TextLine(
title=_("Translation domain"),
description=_(
"For templates only: "
"The translation domain for a translation template. "
"Used with PO file format when generating MO files for inclusion "
"in language pack or MO tarball exports."),
required=False)
languagepack = Bool(
title=_("Include translations for this template in language packs?"),
description=_(
"For templates only: "
"Check this box if this template is part of a language pack so "
"its translations should be exported that way."),
required=True,
default=False)
potemplate = Choice(
title=_("Template"),
description=_(
"For translations only: "
"The template that this translation is based on. "
"The template has to be uploaded first."),
required=False,
vocabulary="TranslationTemplate")
potemplate_name = TextLine(
title=_("Template name"),
description=_(
"For translations only: "
"Enter the template name if it does not appear "
"in the list above."),
required=False)
language = Choice(
title=_("Language"),
required=True,
description=_(
"For translations only: "
"The language this PO file translates to."),
vocabulary="Language")
|