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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
|
# Copyright 2009-2011 Canonical Ltd. This software is licensed under the
# GNU Affero General Public License version 3 (see the file LICENSE).
"""View classes for `IProductSeries`."""
__metaclass__ = type
__all__ = [
'get_series_branch_error',
'ProductSeriesBreadcrumb',
'ProductSeriesBugsMenu',
'ProductSeriesDeleteView',
'ProductSeriesDetailedDisplayView',
'ProductSeriesEditView',
'ProductSeriesFacets',
'ProductSeriesFileBugRedirect',
'ProductSeriesInvolvedMenu',
'ProductSeriesInvolvementView',
'ProductSeriesLinkBranchView',
'ProductSeriesLinkBranchFromCodeView',
'ProductSeriesNavigation',
'ProductSeriesOverviewMenu',
'ProductSeriesOverviewNavigationMenu',
'ProductSeriesRdfView',
'ProductSeriesReviewView',
'ProductSeriesSetBranchView',
'ProductSeriesSpecificationsMenu',
'ProductSeriesUbuntuPackagingView',
'ProductSeriesView',
]
import cgi
from operator import attrgetter
from bzrlib.revision import NULL_REVISION
from lazr.restful.interface import (
copy_field,
use_template,
)
from z3c.ptcompat import ViewPageTemplateFile
from zope.app.form.browser import (
TextAreaWidget,
TextWidget,
)
from zope.component import getUtility
from zope.formlib import form
from zope.interface import (
implements,
Interface,
)
from zope.schema import Choice
from zope.schema.vocabulary import (
SimpleTerm,
SimpleVocabulary,
)
from lp import _
from lp.services.worlddata.helpers import browser_languages
from lp.services.webapp import (
ApplicationMenu,
canonical_url,
enabled_with_permission,
LaunchpadView,
Link,
Navigation,
NavigationMenu,
StandardLaunchpadFacets,
stepthrough,
stepto,
)
from lp.services.webapp.authorization import check_permission
from lp.services.webapp.batching import BatchNavigator
from lp.services.webapp.breadcrumb import Breadcrumb
from lp.services.webapp.menu import structured
from lp.app.browser.launchpadform import (
action,
custom_widget,
LaunchpadEditFormView,
LaunchpadFormView,
render_radio_widget_part,
ReturnToReferrerMixin,
)
from lp.app.browser.tales import MenuAPI
from lp.app.enums import ServiceUsage
from lp.app.errors import (
NotFoundError,
UnexpectedFormData,
)
from lp.app.interfaces.launchpad import ILaunchpadCelebrities
from lp.app.widgets.itemswidgets import LaunchpadRadioWidget
from lp.app.widgets.textwidgets import StrippedTextWidget
from lp.blueprints.browser.specificationtarget import (
HasSpecificationsMenuMixin,
)
from lp.blueprints.enums import SpecificationImplementationStatus
from lp.blueprints.interfaces.specification import ISpecificationSet
from lp.bugs.browser.bugtask import BugTargetTraversalMixin
from lp.bugs.browser.structuralsubscription import (
expose_structural_subscription_data_to_js,
StructuralSubscriptionMenuMixin,
StructuralSubscriptionTargetTraversalMixin,
)
from lp.bugs.interfaces.bugtask import IBugTaskSet
from lp.code.browser.branch import BranchNameValidationMixin
from lp.code.browser.branchref import BranchRef
from lp.code.enums import (
BranchType,
RevisionControlSystems,
)
from lp.code.errors import (
BranchCreationForbidden,
BranchExists,
)
from lp.code.interfaces.branch import IBranch
from lp.code.interfaces.branchjob import IRosettaUploadJobSource
from lp.code.interfaces.branchtarget import IBranchTarget
from lp.code.interfaces.codeimport import (
ICodeImport,
ICodeImportSet,
)
from lp.registry.browser import (
add_subscribe_link,
BaseRdfView,
MilestoneOverlayMixin,
RegistryDeleteViewMixin,
StatusCount,
)
from lp.registry.browser.pillar import (
InvolvedMenu,
PillarView,
)
from lp.registry.interfaces.packaging import (
IPackaging,
IPackagingUtil,
)
from lp.registry.interfaces.productseries import IProductSeries
from lp.registry.interfaces.series import SeriesStatus
from lp.services.fields import URIField
from lp.services.propertycache import cachedproperty
from lp.services.worlddata.interfaces.country import ICountry
from lp.services.worlddata.interfaces.language import ILanguageSet
from lp.translations.interfaces.potemplate import IPOTemplateSet
from lp.translations.interfaces.productserieslanguage import (
IProductSeriesLanguageSet,
)
def quote(text):
"""Escape and quote text."""
return cgi.escape(text, quote=True)
class ProductSeriesNavigation(Navigation, BugTargetTraversalMixin,
StructuralSubscriptionTargetTraversalMixin):
"""A class to navigate `IProductSeries` URLs."""
usedfor = IProductSeries
@stepto('.bzr')
def dotbzr(self):
"""Return the series branch."""
if self.context.branch:
return BranchRef(self.context.branch)
else:
return None
@stepto('+pots')
def pots(self):
"""Return the series templates."""
potemplateset = getUtility(IPOTemplateSet)
return potemplateset.getSubset(productseries=self.context)
@stepthrough('+lang')
def traverse_lang(self, langcode):
"""Retrieve the ProductSeriesLanguage or a dummy if it is None."""
# We do not want users to see the 'en' pofile because
# we store the messages we want to translate as English.
if langcode == 'en':
raise NotFoundError(langcode)
langset = getUtility(ILanguageSet)
try:
lang = langset[langcode]
except IndexError:
# Unknown language code.
raise NotFoundError
psl_set = getUtility(IProductSeriesLanguageSet)
psl = psl_set.getProductSeriesLanguage(self.context, lang)
return psl
def traverse(self, name):
"""See `INavigation`."""
return self.context.getRelease(name)
class ProductSeriesBreadcrumb(Breadcrumb):
"""Builds a breadcrumb for an `IProductSeries`."""
@property
def text(self):
"""See `IBreadcrumb`."""
return 'Series ' + self.context.name
class ProductSeriesFacets(StandardLaunchpadFacets):
"""A class that provides the series facets."""
usedfor = IProductSeries
enable_only = [
'overview', 'branches', 'bugs', 'specifications', 'translations']
def branches(self):
"""Return a link to view the branches related to this series."""
# Override to go to the branches for the product.
text = 'Code'
summary = 'View related branches of code'
link = canonical_url(self.context.product, rootsite='code')
return Link(link, text, summary=summary)
class IProductSeriesInvolved(Interface):
"""A marker interface for getting involved."""
class ProductSeriesInvolvedMenu(InvolvedMenu):
"""The get involved menu."""
usedfor = IProductSeriesInvolved
links = [
'report_bug', 'help_translate', 'submit_code', 'register_blueprint']
@property
def view(self):
return self.context
@property
def pillar(self):
return self.view.context.product
def submit_code(self):
target = canonical_url(
self.pillar, view_name='+addbranch', rootsite='code')
enabled = self.view.codehosting_usage == ServiceUsage.LAUNCHPAD
return Link(
target, 'Submit code', icon='code', enabled=enabled)
class ProductSeriesInvolvementView(PillarView):
"""Encourage configuration of involvement links for project series."""
implements(IProductSeriesInvolved)
has_involvement = True
visible_disabled_link_names = ['submit_code']
def __init__(self, context, request):
super(ProductSeriesInvolvementView, self).__init__(context, request)
self.answers_usage = ServiceUsage.NOT_APPLICABLE
if self.context.branch is not None:
self.codehosting_usage = ServiceUsage.LAUNCHPAD
else:
self.codehosting_usage = ServiceUsage.UNKNOWN
@property
def configuration_links(self):
"""The enabled involvement links."""
series_menu = MenuAPI(self.context).overview
set_branch = series_menu['set_branch']
set_branch.text = 'Configure series branch'
if self.codehosting_usage == ServiceUsage.LAUNCHPAD:
configured = True
else:
configured = False
return [dict(link=set_branch,
configured=configured)]
class ProductSeriesOverviewMenu(
ApplicationMenu, StructuralSubscriptionMenuMixin):
"""The overview menu."""
usedfor = IProductSeries
facet = 'overview'
@cachedproperty
def links(self):
links = [
'configure_bugtracker',
'create_milestone',
'create_release',
'delete',
'driver',
'edit',
'link_branch',
'rdf',
'set_branch',
]
add_subscribe_link(links)
links.append('ubuntupkg')
return links
@enabled_with_permission('launchpad.Edit')
def configure_bugtracker(self):
text = 'Configure bug tracker'
summary = 'Specify where bugs are tracked for this project'
return Link(
canonical_url(self.context.product,
view_name='+configure-bugtracker'),
text, summary, icon='edit')
@enabled_with_permission('launchpad.Edit')
def edit(self):
"""Return a link to edit this series."""
text = 'Change details'
summary = 'Edit this series'
return Link('+edit', text, summary, icon='edit')
@enabled_with_permission('launchpad.Edit')
def delete(self):
"""Return a link to delete this series."""
text = 'Delete series'
summary = "Delete this series and all it's dependent items."
return Link('+delete', text, summary, icon='trash-icon')
@enabled_with_permission('launchpad.Edit')
def driver(self):
"""Return a link to set the release manager."""
text = 'Appoint release manager'
summary = 'Someone with permission to set goals this series'
return Link('+driver', text, summary, icon='edit')
@enabled_with_permission('launchpad.Edit')
def link_branch(self):
"""Return a link to set the bazaar branch for this series."""
if self.context.branch is None:
text = 'Link to branch'
icon = 'add'
summary = 'Set the branch for this series'
else:
text = "Change branch"
icon = 'edit'
summary = 'Change the branch for this series'
return Link('+linkbranch', text, summary, icon=icon)
@enabled_with_permission('launchpad.Edit')
def set_branch(self):
"""Return a link to set the bazaar branch for this series."""
# Once +setbranch has been beta tested thoroughly, it should
# replace the +linkbranch page.
if self.context.branch is None:
text = 'Link to branch'
icon = 'add'
summary = 'Set the branch for this series'
else:
text = "Change branch"
icon = 'edit'
summary = 'Change the branch for this series'
return Link('+setbranch', text, summary, icon=icon)
@enabled_with_permission('launchpad.AnyPerson')
def ubuntupkg(self):
"""Return a link to link this series to an ubuntu sourcepackage."""
text = 'Link to Ubuntu package'
return Link('+ubuntupkg', text, icon='add')
@enabled_with_permission('launchpad.Edit')
def create_milestone(self):
"""Return a link to create a milestone."""
text = 'Create milestone'
summary = 'Register a new milestone for this series'
return Link('+addmilestone', text, summary, icon='add')
@enabled_with_permission('launchpad.Edit')
def create_release(self):
"""Return a link to create a release."""
text = 'Create release'
return Link('+addrelease', text, icon='add')
def rdf(self):
"""Return a link to download the series RDF data."""
text = 'Download RDF metadata'
return Link('+rdf', text, icon='download')
class ProductSeriesBugsMenu(ApplicationMenu, StructuralSubscriptionMenuMixin):
"""The bugs menu."""
usedfor = IProductSeries
facet = 'bugs'
@cachedproperty
def links(self):
links = ['new', 'nominations']
add_subscribe_link(links)
return links
def new(self):
"""Return a link to report a bug in this series."""
return Link('+filebug', 'Report a bug', icon='add')
def nominations(self):
"""Return a link to review bugs nominated for this series."""
return Link('+nominations', 'Review nominations', icon='bug')
class ProductSeriesSpecificationsMenu(NavigationMenu,
HasSpecificationsMenuMixin):
"""Specs menu for ProductSeries.
This menu needs to keep track of whether we are showing all the
specs, or just those that are approved/declined/proposed. It should
allow you to change the set your are showing while keeping the basic
view intact.
"""
usedfor = IProductSeries
facet = 'specifications'
links = [
'listall', 'assignments', 'setgoals', 'listdeclined',
'new', 'register_sprint']
class ProductSeriesOverviewNavigationMenu(NavigationMenu):
"""Overview navigation menus for `IProductSeries` objects."""
# Suppress the ProductOverviewNavigationMenu from showing on series,
# release, and milestone pages.
usedfor = IProductSeries
facet = 'overview'
links = ()
def get_series_branch_error(product, branch):
"""Check if the given branch is suitable for the given product.
Returns an HTML error message on error, and None otherwise.
"""
if branch.product != product:
return structured(
'<a href="%s">%s</a> is not a branch of <a href="%s">%s</a>.',
canonical_url(branch),
branch.unique_name,
canonical_url(product),
product.displayname)
return None
class ProductSeriesView(LaunchpadView, MilestoneOverlayMixin):
"""A view to show a series with translations."""
def initialize(self):
super(ProductSeriesView, self).initialize()
expose_structural_subscription_data_to_js(
self.context, self.request, self.user)
@property
def page_title(self):
"""Return the HTML page title."""
return self.context.title
def requestCountry(self):
"""The country associated with the IP of the request."""
return ICountry(self.request, None)
def browserLanguages(self):
"""The languages the user's browser requested."""
return browser_languages(self.request)
@property
def request_import_link(self):
"""A link to the page for requesting a new code import."""
return canonical_url(
self.context.product, view_name='+new-import', rootsite='code')
@property
def user_branch_visible(self):
"""Can the logged in user see the user branch."""
branch = self.context.branch
return (branch is not None and
check_permission('launchpad.View', branch))
@property
def is_obsolete(self):
"""Return True if the series is OBSOLETE.
Obsolete series do not need to display as much information as other
series. Accessing private bugs is an expensive operation and showing
them for obsolete series can be a problem if many series are being
displayed.
"""
return self.context.status == SeriesStatus.OBSOLETE
@cachedproperty
def bugtask_status_counts(self):
"""A list StatusCounts summarising the targeted bugtasks."""
bugtaskset = getUtility(IBugTaskSet)
status_counts = bugtaskset.getStatusCountsForProductSeries(
self.user, self.context)
# We sort by value before sortkey because the statuses returned can be
# from different (though related) enums.
statuses = sorted(status_counts, key=attrgetter('value', 'sortkey'))
return [
StatusCount(status, status_counts[status])
for status in statuses]
@cachedproperty
def specification_status_counts(self):
"""A list StatusCounts summarising the targeted specification."""
specification_set = getUtility(ISpecificationSet)
status_id_counts = specification_set.getStatusCountsForProductSeries(
self.context)
SpecStatus = SpecificationImplementationStatus
status_counts = dict([(SpecStatus.items[status_id], count)
for status_id, count in status_id_counts])
return [StatusCount(status, status_counts[status])
for status in sorted(status_counts,
key=attrgetter('sortkey'))]
@cachedproperty
def latest_release_with_download_files(self):
for release in self.context.releases:
if len(list(release.files)) > 0:
return release
return None
@cachedproperty
def milestone_batch_navigator(self):
return BatchNavigator(self.context.all_milestones, self.request)
class ProductSeriesDetailedDisplayView(ProductSeriesView):
@cachedproperty
def latest_milestones(self):
# Convert to list to avoid the query being run multiple times.
return list(self.context.milestones[:12])
@cachedproperty
def latest_releases(self):
# Convert to list to avoid the query being run multiple times.
return list(self.context.releases[:12])
class ProductSeriesUbuntuPackagingView(LaunchpadFormView):
schema = IPackaging
field_names = ['sourcepackagename', 'distroseries']
page_title = 'Ubuntu source packaging'
label = page_title
def __init__(self, context, request):
"""Set the static packaging information for this series."""
super(ProductSeriesUbuntuPackagingView, self).__init__(
context, request)
self._ubuntu = getUtility(ILaunchpadCelebrities).ubuntu
self._ubuntu_series = self._ubuntu.currentseries
try:
package = self.context.getPackage(self._ubuntu_series)
self.default_sourcepackagename = package.sourcepackagename
except NotFoundError:
# The package has never been set.
self.default_sourcepackagename = None
@property
def next_url(self):
"""See `LaunchpadFormView`."""
return canonical_url(self.context)
cancel_url = next_url
def setUpFields(self):
"""See `LaunchpadFormView`.
The packaging is restricted to ubuntu series and the default value
is the current development series.
"""
super(ProductSeriesUbuntuPackagingView, self).setUpFields()
series_vocabulary = SimpleVocabulary(
[SimpleTerm(series, series.name, series.named_version)
for series in self._ubuntu.series])
choice = Choice(__name__='distroseries',
title=_('Series'),
default=self._ubuntu_series,
vocabulary=series_vocabulary,
description=_(
"Series where this package is published. The current series "
"is most important to the Ubuntu community."),
required=True)
field = form.Fields(choice, render_context=self.render_context)
self.form_fields = self.form_fields.omit(choice.__name__) + field
@property
def initial_values(self):
"""See `LaunchpadFormView`."""
if self.default_sourcepackagename is not None:
return {'sourcepackagename': self.default_sourcepackagename}
else:
return {}
@property
def default_distroseries(self):
"""The current Ubuntu distroseries"""
return self._ubuntu_series
@property
def ubuntu_history(self):
return self.context.getPackagingInDistribution(
self.default_distroseries.distribution)
def _getSubmittedSeries(self, data):
"""Return the submitted or default series."""
return data.get('distroseries', self.default_distroseries)
def validate(self, data):
productseries = self.context
sourcepackagename = data.get('sourcepackagename', None)
distroseries = self._getSubmittedSeries(data)
packaging_util = getUtility(IPackagingUtil)
if packaging_util.packagingEntryExists(
productseries=productseries,
sourcepackagename=sourcepackagename,
distroseries=distroseries):
# The package already exists. Don't display an error. The
# action method will let this go by.
return
# Do not allow users to create links to unpublished Ubuntu packages.
if (sourcepackagename is not None
and distroseries.distribution.full_functionality):
source_package = distroseries.getSourcePackage(sourcepackagename)
if source_package.currentrelease is None:
message = ("The source package is not published in %s." %
distroseries.displayname)
self.setFieldError('sourcepackagename', message)
if packaging_util.packagingEntryExists(
sourcepackagename=sourcepackagename,
distroseries=distroseries):
# The series package conflicts with another series.
sourcepackage = distroseries.getSourcePackage(
sourcepackagename.name)
message = structured(
'The <a href="%s">%s</a> package in %s is already linked to '
'another series.' %
(canonical_url(sourcepackage),
sourcepackagename.name,
distroseries.displayname))
self.setFieldError('sourcepackagename', message)
@action('Update', name='continue')
def continue_action(self, action, data):
# set the packaging record for this productseries in the current
# ubuntu series. if none exists, one will be created
distroseries = self._getSubmittedSeries(data)
sourcepackagename = data['sourcepackagename']
if getUtility(IPackagingUtil).packagingEntryExists(
sourcepackagename, distroseries, productseries=self.context):
# There is no change.
return
self.context.setPackaging(
distroseries, sourcepackagename, self.user)
class ProductSeriesEditView(LaunchpadEditFormView):
"""A View to edit the attributes of a series."""
schema = IProductSeries
field_names = [
'name', 'summary', 'status', 'branch', 'releasefileglob']
custom_widget('summary', TextAreaWidget, height=7, width=62)
custom_widget('releasefileglob', StrippedTextWidget, displayWidth=40)
@property
def label(self):
"""The form label."""
return 'Edit %s %s series' % (
self.context.product.displayname, self.context.name)
@property
def page_title(self):
"""The page title."""
return self.label
def validate(self, data):
"""See `LaunchpadFormView`."""
branch = data.get('branch')
if branch is not None:
message = get_series_branch_error(self.context.product, branch)
if message:
self.setFieldError('branch', message)
@action(_('Change'), name='change')
def change_action(self, action, data):
"""Update the series."""
self.updateContextFromData(data)
@property
def next_url(self):
"""See `LaunchpadFormView`."""
return canonical_url(self.context)
@property
def cancel_url(self):
"""See `LaunchpadFormView`."""
return canonical_url(self.context)
class ProductSeriesDeleteView(RegistryDeleteViewMixin, LaunchpadEditFormView):
"""A view to remove a productseries from a product."""
schema = IProductSeries
field_names = []
@property
def label(self):
"""The form label."""
return 'Delete %s %s series' % (
self.context.product.displayname, self.context.name)
@property
def page_title(self):
"""The page title."""
return self.label
@cachedproperty
def milestones(self):
"""A list of all the series `IMilestone`s."""
return self.context.all_milestones
@cachedproperty
def bugtasks(self):
"""A list of all `IBugTask`s targeted to this series."""
all_bugtasks = self._getBugtasks(self.context)
for milestone in self.milestones:
all_bugtasks.extend(self._getBugtasks(milestone))
return all_bugtasks
@cachedproperty
def specifications(self):
"""A list of all `ISpecification`s targeted to this series."""
all_specifications = self._getSpecifications(self.context)
for milestone in self.milestones:
all_specifications.extend(self._getSpecifications(milestone))
return all_specifications
@cachedproperty
def has_bugtasks_and_specifications(self):
"""Does the series have any targeted bugtasks or specifications."""
return len(self.bugtasks) > 0 or len(self.specifications) > 0
@property
def has_linked_branch(self):
"""Is the series linked to a branch."""
return self.context.branch is not None
@cachedproperty
def product_release_files(self):
"""A list of all `IProductReleaseFile`s that belong to this series."""
all_files = []
for milestone in self.milestones:
all_files.extend(self._getProductReleaseFiles(milestone))
return all_files
@cachedproperty
def has_linked_packages(self):
"""Is the series linked to source packages."""
return self.context.packagings.count() > 0
@cachedproperty
def linked_packages_message(self):
url = canonical_url(self.context.product, view_name="+packages")
return (
"You cannot delete a series that is linked to packages in "
"distributions. You can remove the links from the "
'<a href="%s">project packaging</a> page.' % url)
development_focus_message = _(
"You cannot delete a series that is the focus of "
"development. Make another series the focus of development "
"before deleting this one.")
@cachedproperty
def has_translations(self):
"""Does the series have translations?"""
return self.context.potemplate_count > 0
translations_message = (
"This series cannot be deleted because it has translations.")
@cachedproperty
def can_delete(self):
"""Can this series be delete."""
return not (
self.context.is_development_focus
or self.has_linked_packages or self.has_translations)
def canDeleteAction(self, action):
"""Is the delete action available."""
if self.context.is_development_focus:
self.addError(self.development_focus_message)
if self.has_linked_packages:
self.addError(structured(self.linked_packages_message))
if self.has_translations:
self.addError(self.translations_message)
return self.can_delete
@action('Delete this Series', name='delete', condition=canDeleteAction)
def delete_action(self, action, data):
"""Detach and delete associated objects and remove the series."""
product = self.context.product
name = self.context.name
self._deleteProductSeries(self.context)
self.request.response.addInfoNotification(
"Series %s deleted." % name)
self.next_url = canonical_url(product)
LINK_LP_BZR = 'link-lp-bzr'
CREATE_NEW = 'create-new'
IMPORT_EXTERNAL = 'import-external'
BRANCH_TYPE_VOCABULARY = SimpleVocabulary((
SimpleTerm(LINK_LP_BZR, LINK_LP_BZR,
_("Link to a Bazaar branch already on Launchpad")),
SimpleTerm(CREATE_NEW, CREATE_NEW,
_("Create a new, empty branch in Launchpad and "
"link to this series")),
SimpleTerm(IMPORT_EXTERNAL, IMPORT_EXTERNAL,
_("Import a branch hosted somewhere else")),
))
class SetBranchForm(Interface):
"""The fields presented on the form for setting a branch."""
use_template(
ICodeImport,
['cvs_module'])
rcs_type = Choice(title=_("Type of RCS"),
required=False, vocabulary=RevisionControlSystems,
description=_(
"The version control system to import from. "))
repo_url = URIField(
title=_("Branch URL"), required=True,
description=_("The URL of the branch."),
allowed_schemes=["http", "https"],
allow_userinfo=False,
allow_port=True,
allow_query=False,
allow_fragment=False,
trailing_slash=False)
branch_location = copy_field(
IProductSeries['branch'],
__name__='branch_location',
title=_('Branch'),
description=_(
"The Bazaar branch for this series in Launchpad, "
"if one exists."),
)
branch_type = Choice(
title=_('Import type'),
vocabulary=BRANCH_TYPE_VOCABULARY,
description=_("The type of import"),
required=True)
branch_name = copy_field(
IBranch['name'],
__name__='branch_name',
title=_('Branch name'),
description=_(''),
required=True,
)
branch_owner = copy_field(
IBranch['owner'],
__name__='branch_owner',
title=_('Branch owner'),
description=_(''),
required=True,
)
class ProductSeriesSetBranchView(ReturnToReferrerMixin, LaunchpadFormView,
ProductSeriesView,
BranchNameValidationMixin):
"""The view to set a branch for the ProductSeries."""
schema = SetBranchForm
# Set for_input to True to ensure fields marked read-only will be editable
# upon creation.
for_input = True
custom_widget('rcs_type', LaunchpadRadioWidget)
custom_widget('branch_type', LaunchpadRadioWidget)
errors_in_action = False
@property
def initial_values(self):
return dict(
rcs_type=RevisionControlSystems.BZR,
branch_type=LINK_LP_BZR,
branch_location=self.context.branch)
@property
def next_url(self):
"""Return the next_url.
Use the value from `ReturnToReferrerMixin` or None if there
are errors.
"""
if self.errors_in_action:
return None
return super(ProductSeriesSetBranchView, self).next_url
def setUpWidgets(self):
"""See `LaunchpadFormView`."""
super(ProductSeriesSetBranchView, self).setUpWidgets()
widget = self.widgets['rcs_type']
vocab = widget.vocabulary
current_value = widget._getFormValue()
self.rcs_type_cvs = render_radio_widget_part(
widget, vocab.CVS, current_value, 'CVS')
self.rcs_type_svn = render_radio_widget_part(
widget, vocab.BZR_SVN, current_value, 'SVN')
self.rcs_type_git = render_radio_widget_part(
widget, vocab.GIT, current_value)
self.rcs_type_hg = render_radio_widget_part(
widget, vocab.HG, current_value)
self.rcs_type_bzr = render_radio_widget_part(
widget, vocab.BZR, current_value)
self.rcs_type_emptymarker = widget._emptyMarker()
widget = self.widgets['branch_type']
current_value = widget._getFormValue()
vocab = widget.vocabulary
(self.branch_type_link,
self.branch_type_create,
self.branch_type_import) = [
render_radio_widget_part(widget, value, current_value)
for value in (LINK_LP_BZR, CREATE_NEW, IMPORT_EXTERNAL)]
def _validateLinkLpBzr(self, data):
"""Validate data for link-lp-bzr case."""
if 'branch_location' not in data:
self.setFieldError(
'branch_location',
'The branch location must be set.')
def _validateCreateNew(self, data):
"""Validate data for create new case."""
self._validateBranch(data)
def _validateImportExternal(self, data):
"""Validate data for import external case."""
rcs_type = data.get('rcs_type')
repo_url = data.get('repo_url')
if repo_url is None:
self.setFieldError('repo_url',
'You must set the external repository URL.')
else:
# Ensure this URL has not been imported before.
code_import = getUtility(ICodeImportSet).getByURL(repo_url)
if code_import is not None:
self.setFieldError(
'repo_url',
structured("""
This foreign branch URL is already specified for
the imported branch <a href="%s">%s</a>.""",
canonical_url(code_import.branch),
code_import.branch.unique_name))
# RCS type is mandatory.
# This condition should never happen since an initial value is set.
if rcs_type is None:
# The error shows but does not identify the widget.
self.setFieldError(
'rcs_type',
'You must specify the type of RCS for the remote host.')
elif rcs_type == RevisionControlSystems.CVS:
if 'cvs_module' not in data:
self.setFieldError(
'cvs_module',
'The CVS module must be set.')
self._validateBranch(data)
def _validateBranch(self, data):
"""Validate that branch name and owner are set."""
if 'branch_name' not in data:
self.setFieldError(
'branch_name',
'The branch name must be set.')
if 'branch_owner' not in data:
self.setFieldError(
'branch_owner',
'The branch owner must be set.')
def _setRequired(self, names, value):
"""Mark the widget field as optional."""
for name in names:
widget = self.widgets[name]
# The 'required' property on the widget context is set to False.
# The widget also has a 'required' property but it isn't used
# during validation.
widget.context.required = value
def _validSchemes(self, rcs_type):
"""Return the valid schemes for the repository URL."""
schemes = set(['http', 'https'])
# Extend the allowed schemes for the repository URL based on
# rcs_type.
extra_schemes = {
RevisionControlSystems.BZR_SVN: ['svn'],
RevisionControlSystems.GIT: ['git'],
RevisionControlSystems.BZR: ['bzr'],
}
schemes.update(extra_schemes.get(rcs_type, []))
return schemes
def validate_widgets(self, data, names=None):
"""See `LaunchpadFormView`."""
names = ['branch_type', 'rcs_type']
super(ProductSeriesSetBranchView, self).validate_widgets(data, names)
branch_type = data.get('branch_type')
if branch_type == LINK_LP_BZR:
# Mark other widgets as non-required.
self._setRequired(['rcs_type', 'repo_url', 'cvs_module',
'branch_name', 'branch_owner'], False)
elif branch_type == CREATE_NEW:
self._setRequired(
['branch_location', 'repo_url', 'rcs_type', 'cvs_module'],
False)
elif branch_type == IMPORT_EXTERNAL:
rcs_type = data.get('rcs_type')
# Set the valid schemes based on rcs_type.
self.widgets['repo_url'].field.allowed_schemes = (
self._validSchemes(rcs_type))
# The branch location is not required for validation.
self._setRequired(['branch_location'], False)
# The cvs_module is required if it is a CVS import.
if rcs_type == RevisionControlSystems.CVS:
self._setRequired(['cvs_module'], True)
else:
raise AssertionError("Unknown branch type %s" % branch_type)
# Perform full validation now.
super(ProductSeriesSetBranchView, self).validate_widgets(data)
def validate(self, data):
"""See `LaunchpadFormView`."""
# If widget validation returned errors then there is no need to
# continue as we'd likely just override the errors reported there.
if len(self.errors) > 0:
return
branch_type = data['branch_type']
if branch_type == IMPORT_EXTERNAL:
self._validateImportExternal(data)
elif branch_type == LINK_LP_BZR:
self._validateLinkLpBzr(data)
elif branch_type == CREATE_NEW:
self._validateCreateNew(data)
else:
raise AssertionError("Unknown branch type %s" % branch_type)
@property
def target(self):
"""The branch target for the context."""
return IBranchTarget(self.context.product)
@action(_('Update'), name='update')
def update_action(self, action, data):
branch_type = data.get('branch_type')
if branch_type == LINK_LP_BZR:
branch_location = data.get('branch_location')
if branch_location != self.context.branch:
self.context.branch = branch_location
# Request an initial upload of translation files.
getUtility(IRosettaUploadJobSource).create(
self.context.branch, NULL_REVISION)
else:
self.context.branch = branch_location
self.request.response.addInfoNotification(
'Series code location updated.')
else:
branch_name = data.get('branch_name')
branch_owner = data.get('branch_owner')
# Create a new branch.
if branch_type == CREATE_NEW:
branch = self._createBzrBranch(branch_name, branch_owner)
if branch is not None:
self.context.branch = branch
self.request.response.addInfoNotification(
'New branch created and linked to the series.')
# Import or mirror an external branch.
elif branch_type == IMPORT_EXTERNAL:
# Either create an externally hosted bzr branch
# (a.k.a. 'mirrored') or create a new code import.
rcs_type = data.get('rcs_type')
# We need to create an import request.
if rcs_type == RevisionControlSystems.CVS:
cvs_root = data.get('repo_url')
cvs_module = data.get('cvs_module')
url = None
else:
cvs_root = None
cvs_module = None
url = data.get('repo_url')
rcs_item = RevisionControlSystems.items[rcs_type.name]
try:
code_import = getUtility(ICodeImportSet).new(
registrant=branch_owner,
target=IBranchTarget(self.context.product),
branch_name=branch_name,
rcs_type=rcs_item,
url=url,
cvs_root=cvs_root,
cvs_module=cvs_module)
except BranchExists, e:
self._setBranchExists(e.existing_branch,
'branch_name')
self.errors_in_action = True
# Abort transaction. This is normally handled
# by LaunchpadFormView, but we are already in
# the success handler.
self._abort()
return
self.context.branch = code_import.branch
self.request.response.addInfoNotification(
'Code import created and branch linked to the '
'series.')
else:
raise UnexpectedFormData(branch_type)
def _createBzrBranch(self, branch_name, branch_owner, repo_url=None):
"""Create a new hosted Bazaar branch.
Return the branch on success or None.
"""
branch = None
try:
namespace = self.target.getNamespace(branch_owner)
branch = namespace.createBranch(branch_type=BranchType.HOSTED,
name=branch_name,
registrant=self.user,
url=repo_url)
except BranchCreationForbidden:
self.addError(
"You are not allowed to create branches in %s." %
self.context.displayname)
except BranchExists, e:
self._setBranchExists(e.existing_branch, 'branch_name')
if branch is None:
self.errors_in_action = True
# Abort transaction. This is normally handled by
# LaunchpadFormView, but we are already in the success handler.
self._abort()
return branch
class ProductSeriesLinkBranchView(ReturnToReferrerMixin,
ProductSeriesView,
LaunchpadEditFormView):
"""View to set the bazaar branch for a product series."""
schema = IProductSeries
field_names = ['branch']
@property
def label(self):
"""The form label."""
return 'Link an existing branch to %s %s series' % (
self.context.product.displayname, self.context.name)
@property
def page_title(self):
"""The page title."""
return self.label
@action(_('Update'), name='update')
def update_action(self, action, data):
"""Update the branch attribute."""
if data['branch'] != self.context.branch:
self.updateContextFromData(data)
# Request an initial upload of translation files.
getUtility(IRosettaUploadJobSource).create(
self.context.branch, NULL_REVISION)
else:
self.updateContextFromData(data)
self.request.response.addInfoNotification(
'Series code location updated.')
class ProductSeriesLinkBranchFromCodeView(ProductSeriesLinkBranchView):
"""Set the branch link from the code overview page."""
@property
def next_url(self):
"""Take the user back to the code overview page."""
return canonical_url(self.context.product, rootsite="code")
class ProductSeriesReviewView(LaunchpadEditFormView):
"""A view to review and change the series `IProduct` and name."""
schema = IProductSeries
field_names = ['product', 'name']
custom_widget('name', TextWidget, width=20)
@property
def label(self):
"""The form label."""
return 'Administer %s %s series' % (
self.context.product.displayname, self.context.name)
@property
def page_title(self):
"""The page title."""
return self.label
@property
def cancel_url(self):
"""See `LaunchpadFormView`."""
return canonical_url(self.context)
@action(_('Change'), name='change')
def change_action(self, action, data):
"""Update the series."""
self.updateContextFromData(data)
self.request.response.addInfoNotification(
_('This Series has been changed'))
self.next_url = canonical_url(self.context)
class ProductSeriesRdfView(BaseRdfView):
"""A view that sets its mime-type to application/rdf+xml"""
template = ViewPageTemplateFile(
'../templates/productseries-rdf.pt')
@property
def filename(self):
return '%s-%s' % (self.context.product.name, self.context.name)
class ProductSeriesFileBugRedirect(LaunchpadView):
"""Redirect to the product's +filebug page."""
def initialize(self):
"""See `LaunchpadFormView`."""
filebug_url = "%s/+filebug" % canonical_url(self.context.product)
self.request.response.redirect(filebug_url)
|