forked from atlassian-api/atlassian-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfluence.py
3181 lines (2860 loc) · 112 KB
/
confluence.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
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
# coding=utf-8
import logging
import os
import time
import json
from requests import HTTPError
import requests
from deprecated import deprecated
from atlassian import utils
from .errors import ApiError, ApiNotFoundError, ApiPermissionError, ApiValueError, ApiConflictError, ApiNotAcceptable
from .rest_client import AtlassianRestAPI
log = logging.getLogger(__name__)
class Confluence(AtlassianRestAPI):
content_types = {
".gif": "image/gif",
".png": "image/png",
".jpg": "image/jpeg",
".jpeg": "image/jpeg",
".pdf": "application/pdf",
".doc": "application/msword",
".xls": "application/vnd.ms-excel",
".svg": "image/svg+xml",
}
def __init__(self, url, *args, **kwargs):
if ("atlassian.net" in url or "jira.com" in url) and ("/wiki" not in url):
url = AtlassianRestAPI.url_joiner(url, "/wiki")
if "cloud" not in kwargs:
kwargs["cloud"] = True
super(Confluence, self).__init__(url, *args, **kwargs)
@staticmethod
def _create_body(body, representation):
if representation not in [
"editor",
"export_view",
"view",
"storage",
"wiki",
]:
raise ValueError("Wrong value for representation, it should be either wiki or storage")
return {representation: {"value": body, "representation": representation}}
def _get_paged(
self,
url,
params=None,
data=None,
flags=None,
trailing=None,
absolute=False,
):
"""
Used to get the paged data
:param url: string: The url to retrieve
:param params: dict (default is None): The parameter's
:param data: dict (default is None): The data
:param flags: string[] (default is None): The flags
:param trailing: bool (default is None): If True, a trailing slash is added to the url
:param absolute: bool (default is False): If True, the url is used absolute and not relative to the root
:return: A generator object for the data elements
"""
if params is None:
params = {}
while True:
response = self.get(
url,
trailing=trailing,
params=params,
data=data,
flags=flags,
absolute=absolute,
)
if "results" not in response:
return
for value in response.get("results", []):
yield value
# According to Cloud and Server documentation the links are returned the same way:
# https://developer.atlassian.com/cloud/confluence/rest/api-group-content/#api-wiki-rest-api-content-get
# https://developer.atlassian.com/server/confluence/pagination-in-the-rest-api/
url = response.get("_links", {}).get("next")
if url is None:
break
# From now on we have relative URLs with parameters
absolute = False
# Params are now provided by the url
params = {}
# Trailing should not be added as it is already part of the url
trailing = False
return
def page_exists(self, space, title, type=None):
"""
Check if title exists as page.
:param space: Space key
:param title: Title of the page
:param type: type of the page, 'page' or 'blogpost'. Defaults to 'page'
:return:
"""
url = "rest/api/content"
params = {}
if space is not None:
params["spaceKey"] = str(space)
if title is not None:
params["title"] = str(title)
if type is not None:
params["type"] = str(type)
try:
response = self.get(url, params=params)
except HTTPError as e:
if e.response.status_code == 404:
raise ApiPermissionError(
"The calling user does not have permission to view the content",
reason=e,
)
raise
if response.get("results"):
return True
else:
return False
def get_page_child_by_type(self, page_id, type="page", start=None, limit=None, expand=None):
"""
Provide content by type (page, blog, comment)
:param page_id: A string containing the id of the type content container.
:param type:
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: how many items should be returned after the start index. Default: Site limit 200.
:param expand: OPTIONAL: expand e.g. history
:return:
"""
params = {}
if start is not None:
params["start"] = int(start)
if limit is not None:
params["limit"] = int(limit)
if expand is not None:
params["expand"] = expand
url = "rest/api/content/{page_id}/child/{type}".format(page_id=page_id, type=type)
log.info(url)
try:
if not self.advanced_mode and start is None and limit is None:
return self._get_paged(url, params=params)
else:
response = self.get(url, params=params)
if self.advanced_mode:
return response
return response.get("results")
except HTTPError as e:
if e.response.status_code == 404:
# Raise ApiError as the documented reason is ambiguous
raise ApiError(
"There is no content with the given id, "
"or the calling user does not have permission to view the content",
reason=e,
)
raise
def get_child_title_list(self, page_id, type="page", start=None, limit=None):
"""
Find a list of Child title
:param page_id: A string containing the id of the type content container.
:param type:
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: how many items should be returned after the start index. Default: Site limit 200.
:return:
"""
child_page = self.get_page_child_by_type(page_id, type, start, limit)
child_title_list = [child["title"] for child in child_page]
return child_title_list
def get_child_id_list(self, page_id, type="page", start=None, limit=None):
"""
Find a list of Child id
:param page_id: A string containing the id of the type content container.
:param type:
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: how many items should be returned after the start index. Default: Site limit 200.
:return:
"""
child_page = self.get_page_child_by_type(page_id, type, start, limit)
child_id_list = [child["id"] for child in child_page]
return child_id_list
def get_child_pages(self, page_id):
"""
Get child pages for the provided page_id
:param page_id:
:return:
"""
return self.get_page_child_by_type(page_id=page_id, type="page")
def get_page_id(self, space, title, type="page"):
"""
Provide content id from search result by title and space.
:param space: SPACE key
:param title: title
:param type: type of content: Page or Blogpost. Defaults to page
:return:
"""
return (self.get_page_by_title(space, title, type=type) or {}).get("id")
def get_parent_content_id(self, page_id):
"""
Provide parent content id from page id
:type page_id: str
:return:
"""
parent_content_id = None
try:
parent_content_id = (self.get_page_by_id(page_id=page_id, expand="ancestors").get("ancestors") or {})[
-1
].get("id") or None
except Exception as e:
log.error(e)
return parent_content_id
def get_parent_content_title(self, page_id):
"""
Provide parent content title from page id
:type page_id: str
:return:
"""
parent_content_title = None
try:
parent_content_title = (self.get_page_by_id(page_id=page_id, expand="ancestors").get("ancestors") or {})[
-1
].get("title") or None
except Exception as e:
log.error(e)
return parent_content_title
def get_page_space(self, page_id):
"""
Provide space key from content id.
:param page_id: content ID
:return:
"""
return ((self.get_page_by_id(page_id, expand="space") or {}).get("space") or {}).get("key") or None
def get_pages_by_title(self, space, title, start=0, limit=200, expand=None):
"""
Provide pages by title search
:param space: Space key
:param title: Title of the page
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: The limit of the number of labels to return, this may be restricted by
fixed system limits. Default: 200.
:param expand: OPTIONAL: expand e.g. history
:return: The JSON data returned from searched results the content endpoint, or the results of the
callback. Will raise requests.HTTPError on bad input, potentially.
If it has IndexError then return the None.
"""
return self.get_page_by_title(space, title, start, limit, expand)
def get_page_by_title(self, space, title, start=0, limit=1, expand=None, type="page"):
"""
Returns the first page on a piece of Content.
:param space: Space key
:param title: Title of the page
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: The limit of the number of labels to return, this may be restricted by
fixed system limits. Default: 1.
:param expand: OPTIONAL: expand e.g. history
:param type: OPTIONAL: Type of content: Page or Blogpost. Defaults to page
:return: The JSON data returned from searched results the content endpoint, or the results of the
callback. Will raise requests.HTTPError on bad input, potentially.
If it has IndexError then return the None.
"""
url = "rest/api/content"
params = {"type": type}
if start is not None:
params["start"] = int(start)
if limit is not None:
params["limit"] = int(limit)
if expand is not None:
params["expand"] = expand
if space is not None:
params["spaceKey"] = str(space)
if title is not None:
params["title"] = str(title)
if self.advanced_mode:
return self.get(url, params=params)
try:
response = self.get(url, params=params)
except HTTPError as e:
if e.response.status_code == 404:
raise ApiPermissionError(
"The calling user does not have permission to view the content",
reason=e,
)
raise
try:
return response.get("results")[0]
except (IndexError, TypeError) as e:
log.error("Can't find '%s' page on the %s!", title, self.url)
log.debug(e)
return None
def get_page_by_id(self, page_id, expand=None, status=None, version=None):
"""
Returns a piece of Content.
Example request URI(s):
http://example.com/confluence/rest/api/content/1234?expand=space,body.view,version,container
http://example.com/confluence/rest/api/content/1234?status=any
:param page_id: Content ID
:param status: (str) list of Content statuses to filter results on. Default value: [current]
:param version: (int)
:param expand: OPTIONAL: Default value: history,space,version
We can also specify some extensions such as extensions.inlineProperties
(for getting inline comment-specific properties) or extensions. Resolution
for the resolution status of each comment in the results
:return:
"""
params = {}
if expand:
params["expand"] = expand
if status:
params["status"] = status
if version:
params["version"] = version
url = "rest/api/content/{page_id}".format(page_id=page_id)
try:
response = self.get(url, params=params)
except HTTPError as e:
if e.response.status_code == 404:
# Raise ApiError as the documented reason is ambiguous
raise ApiError(
"There is no content with the given id, "
"or the calling user does not have permission to view the content",
reason=e,
)
raise
return response
def get_page_labels(self, page_id, prefix=None, start=None, limit=None):
"""
Returns the list of labels on a piece of Content.
:param page_id: A string containing the id of the labels content container.
:param prefix: OPTIONAL: The prefixes to filter the labels with {@see Label.Prefix}.
Default: None.
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: The limit of the number of labels to return, this may be restricted by
fixed system limits. Default: 200.
:return: The JSON data returned from the content/{id}/label endpoint, or the results of the
callback. Will raise requests.HTTPError on bad input, potentially.
"""
url = "rest/api/content/{id}/label".format(id=page_id)
params = {}
if prefix:
params["prefix"] = prefix
if start is not None:
params["start"] = int(start)
if limit is not None:
params["limit"] = int(limit)
try:
response = self.get(url, params=params)
except HTTPError as e:
if e.response.status_code == 404:
# Raise ApiError as the documented reason is ambiguous
raise ApiError(
"There is no content with the given id, "
"or the calling user does not have permission to view the content",
reason=e,
)
raise
return response
def get_page_comments(
self,
content_id,
expand=None,
parent_version=None,
start=0,
limit=25,
location=None,
depth=None,
):
"""
:param content_id:
:param expand: extensions.inlineProperties,extensions.resolution
:param parent_version:
:param start:
:param limit:
:param location: inline or not
:param depth:
:return:
"""
params = {"id": content_id, "start": start, "limit": limit}
if expand:
params["expand"] = expand
if parent_version:
params["parentVersion"] = parent_version
if location:
params["location"] = location
if depth:
params["depth"] = depth
url = "rest/api/content/{id}/child/comment".format(id=content_id)
try:
response = self.get(url, params=params)
except HTTPError as e:
if e.response.status_code == 404:
# Raise ApiError as the documented reason is ambiguous
raise ApiError(
"There is no content with the given id, "
"or the calling user does not have permission to view the content",
reason=e,
)
raise
return response
def get_draft_page_by_id(self, page_id, status="draft"):
"""
Provide content by id with status = draft
:param page_id:
:param status:
:return:
"""
url = "rest/api/content/{page_id}?status={status}".format(page_id=page_id, status=status)
try:
response = self.get(url)
except HTTPError as e:
if e.response.status_code == 404:
raise ApiPermissionError(
"The calling user does not have permission to view the content",
reason=e,
)
raise
return response
def get_all_pages_by_label(self, label, start=0, limit=50):
"""
Get all page by label
:param label:
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: The limit of the number of pages to return, this may be restricted by
fixed system limits. Default: 50
:return:
"""
url = "rest/api/content/search"
params = {}
if label:
params["cql"] = 'type={type} AND label="{label}"'.format(type="page", label=label)
if start:
params["start"] = start
if limit:
params["limit"] = limit
try:
response = self.get(url, params=params)
except HTTPError as e:
if e.response.status_code == 400:
raise ApiValueError("The CQL is invalid or missing", reason=e)
raise
return response.get("results")
def get_all_pages_from_space_raw(
self,
space,
start=0,
limit=50,
status=None,
expand=None,
content_type="page",
):
"""
Get all pages from space
:param space:
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: The limit of the number of pages to return, this may be restricted by
fixed system limits. Default: 50
:param status: OPTIONAL: list of statuses the content to be found is in.
Defaults to current is not specified.
If set to 'any', content in 'current' and 'trashed' status will be fetched.
Does not support 'historical' status for now.
:param expand: OPTIONAL: a comma separated list of properties to expand on the content.
Default value: history,space,version.
:param content_type: the content type to return. Default value: page. Valid values: page, blogpost.
:return:
"""
url = "rest/api/content"
params = {}
if space:
params["spaceKey"] = space
if start:
params["start"] = start
if limit:
params["limit"] = limit
if status:
params["status"] = status
if expand:
params["expand"] = expand
if content_type:
params["type"] = content_type
try:
response = self.get(url, params=params)
except HTTPError as e:
if e.response.status_code == 404:
raise ApiPermissionError(
"The calling user does not have permission to view the content",
reason=e,
)
raise
return response
def get_all_pages_from_space(
self,
space,
start=0,
limit=50,
status=None,
expand=None,
content_type="page",
):
"""
Get all pages from space
:param space:
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: The limit of the number of pages to return, this may be restricted by
fixed system limits. Default: 50
:param status: OPTIONAL: list of statuses the content to be found is in.
Defaults to current is not specified.
If set to 'any', content in 'current' and 'trashed' status will be fetched.
Does not support 'historical' status for now.
:param expand: OPTIONAL: a comma separated list of properties to expand on the content.
Default value: history,space,version.
:param content_type: the content type to return. Default value: page. Valid values: page, blogpost.
:return:
"""
return self.get_all_pages_from_space_raw(
space=space, start=start, limit=limit, status=status, expand=expand, content_type=content_type
).get("results")
def get_all_pages_from_space_trash(self, space, start=0, limit=500, status="trashed", content_type="page"):
"""
Get list of pages from trash
:param space:
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: The limit of the number of pages to return, this may be restricted by
fixed system limits. Default: 500
:param status:
:param content_type: the content type to return. Default value: page. Valid values: page, blogpost.
:return:
"""
return self.get_all_pages_from_space(space, start, limit, status, content_type=content_type)
def get_all_draft_pages_from_space(self, space, start=0, limit=500, status="draft"):
"""
Get list of draft pages from space
Use case is cleanup old drafts from Confluence
:param space:
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: The limit of the number of pages to return, this may be restricted by
fixed system limits. Default: 500
:param status:
:return:
"""
return self.get_all_pages_from_space(space, start, limit, status)
def get_all_draft_pages_from_space_through_cql(self, space, start=0, limit=500, status="draft"):
"""
Search list of draft pages by space key
Use case is cleanup old drafts from Confluence
:param space: Space Key
:param status: Can be changed
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: The limit of the number of pages to return, this may be restricted by
fixed system limits. Default: 500
:return:
"""
url = "rest/api/content?cql=space=spaceKey={space} and status={status}".format(space=space, status=status)
params = {}
if limit:
params["limit"] = limit
if start:
params["start"] = start
try:
response = self.get(url, params=params)
except HTTPError as e:
if e.response.status_code == 404:
raise ApiPermissionError(
"The calling user does not have permission to view the content",
reason=e,
)
raise
return response.get("results")
@deprecated(version="2.4.2", reason="Use get_all_restrictions_for_content()")
def get_all_restictions_for_content(self, content_id):
"""Let's use the get_all_restrictions_for_content()"""
log.warning("Please, be informed that is deprecated as typo naming")
return self.get_all_restrictions_for_content(content_id=content_id)
def get_all_restrictions_for_content(self, content_id):
"""
Returns info about all restrictions by operation.
:param content_id:
:return: Return the raw json response
"""
url = "rest/api/content/{}/restriction/byOperation".format(content_id)
return self.get(url)
def remove_page_from_trash(self, page_id):
"""
This method removes a page from trash
:param page_id:
:return:
"""
return self.remove_page(page_id=page_id, status="trashed")
def remove_page_as_draft(self, page_id):
"""
This method removes a page from trash if it is a draft
:param page_id:
:return:
"""
return self.remove_page(page_id=page_id, status="draft")
def remove_content(self, content_id):
"""
Remove any content
:param content_id:
:return:
"""
try:
response = self.delete("rest/api/content/{}".format(content_id))
except HTTPError as e:
if e.response.status_code == 404:
# Raise ApiError as the documented reason is ambiguous
raise ApiError(
"There is no content with the given id, or the calling "
"user does not have permission to trash or purge the content",
reason=e,
)
if e.response.status_code == 409:
raise ApiConflictError(
"There is a stale data object conflict when trying to delete a draft",
reason=e,
)
raise
return response
def remove_page(self, page_id, status=None, recursive=False):
"""
This method removes a page, if it has recursive flag, method removes including child pages
:param page_id:
:param status: OPTIONAL: type of page
:param recursive: OPTIONAL: if True - will recursively delete all children pages too
:return:
"""
url = "rest/api/content/{page_id}".format(page_id=page_id)
if recursive:
children_pages = self.get_page_child_by_type(page_id)
for children_page in children_pages:
self.remove_page(children_page.get("id"), status, recursive)
params = {}
if status:
params["status"] = status
try:
response = self.delete(url, params=params)
except HTTPError as e:
if e.response.status_code == 404:
# Raise ApiError as the documented reason is ambiguous
raise ApiError(
"There is no content with the given id, or the calling "
"user does not have permission to trash or purge the content",
reason=e,
)
if e.response.status_code == 409:
raise ApiConflictError(
"There is a stale data object conflict when trying to delete a draft",
reason=e,
)
raise
return response
def create_page(
self,
space,
title,
body,
parent_id=None,
type="page",
representation="storage",
editor=None,
full_width=False,
):
"""
Create page from scratch
:param space:
:param title:
:param body:
:param parent_id:
:param type:
:param representation: OPTIONAL: either Confluence 'storage' or 'wiki' markup format
:param editor: OPTIONAL: v2 to be created in the new editor
:param full_width: DEFAULT: False
:return:
"""
log.info('Creating %s "%s" -> "%s"', type, space, title)
url = "rest/api/content/"
data = {
"type": type,
"title": title,
"space": {"key": space},
"body": self._create_body(body, representation),
"metadata": {"properties": {}},
}
if parent_id:
data["ancestors"] = [{"type": type, "id": parent_id}]
if editor is not None and editor in ["v1", "v2"]:
data["metadata"]["properties"]["editor"] = {"value": editor}
if full_width is True:
data["metadata"]["properties"]["content-appearance-draft"] = {"value": "full-width"}
data["metadata"]["properties"]["content-appearance-published"] = {"value": "full-width"}
else:
data["metadata"]["properties"]["content-appearance-draft"] = {"value": "fixed-width"}
data["metadata"]["properties"]["content-appearance-published"] = {"value": "fixed-width"}
try:
response = self.post(url, data=data)
except HTTPError as e:
if e.response.status_code == 404:
raise ApiPermissionError(
"The calling user does not have permission to view the content",
reason=e,
)
raise
return response
def move_page(
self,
space_key,
page_id,
target_id=None,
target_title=None,
position="append",
):
"""
Move page method
:param space_key:
:param page_id:
:param target_title:
:param target_id:
:param position: topLevel or append , above, below
:return:
"""
url = "/pages/movepage.action"
params = {"spaceKey": space_key, "pageId": page_id}
if target_title:
params["targetTitle"] = target_title
if target_id:
params["targetId"] = target_id
if position:
params["position"] = position
return self.post(url, params=params, headers=self.no_check_headers)
def create_or_update_template(
self,
name,
body,
template_type="page",
template_id=None,
description=None,
labels=None,
space=None,
):
"""
Creates a new or updates an existing content template.
Note, blueprint templates cannot be created or updated via the REST API.
If you provide a ``template_id`` then this method will update the template with the provided settings.
If no ``template_id`` is provided, then this method assumes you are creating a new template.
:param str name: If creating, the name of the new template. If updating, the name to change
the template name to. Set to the current name if this field is not being updated.
:param dict body: This object is used when creating or updating content.
{
"storage": {
"value": "<string>",
"representation": "view"
}
}
:param str template_type: OPTIONAL: The type of the new template. Default: "page".
:param str template_id: OPTIONAL: The ID of the template being updated. REQUIRED if updating a template.
:param str description: OPTIONAL: A description of the new template. Max length 255.
:param list labels: OPTIONAL: Labels for the new template. An array like:
[
{
"prefix": "<string>",
"name": "<string>",
"id": "<string>",
"label": "<string>",
}
]
:param dict space: OPTIONAL: The key for the space of the new template. Only applies to space templates.
If not specified, the template will be created as a global template.
:return:
"""
data = {"name": name, "templateType": template_type, "body": body}
if description:
data["description"] = description
if labels:
data["labels"] = labels
if space:
data["space"] = {"key": space}
if template_id:
data["templateId"] = template_id
return self.put("rest/api/template", data=json.dumps(data))
return self.post("rest/api/template", json=data)
@deprecated(version="3.7.0", reason="Use get_content_template()")
def get_template_by_id(self, template_id):
"""
Get user template by id. Experimental API
Use case is get template body and create page from that
"""
url = "rest/experimental/template/{template_id}".format(template_id=template_id)
try:
response = self.get(url)
except HTTPError as e:
if e.response.status_code == 403:
# Raise ApiError as the documented reason is ambiguous
raise ApiError(
"There is no content with the given id, "
"or the calling user does not have permission to view the content",
reason=e,
)
raise
return response
def get_content_template(self, template_id):
"""
Get a content template.
This includes information about the template, like the name, the space or blueprint
that the template is in, the body of the template, and more.
:param str template_id: The ID of the content template to be returned
:return:
"""
url = "rest/api/template/{template_id}".format(template_id=template_id)
try:
response = self.get(url)
except HTTPError as e:
if e.response.status_code == 403:
# Raise ApiError as the documented reason is ambiguous
raise ApiError(
"There is no content with the given id, "
"or the calling user does not have permission to view the content",
reason=e,
)
raise
return response
@deprecated(version="3.7.0", reason="Use get_blueprint_templates()")
def get_all_blueprints_from_space(self, space, start=0, limit=None, expand=None):
"""
Get all users blueprints from space. Experimental API
:param space: Space Key
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: The limit of the number of pages to return, this may be restricted by
fixed system limits. Default: 20
:param expand: OPTIONAL: expand e.g. body
"""
url = "rest/experimental/template/blueprint"
params = {}
if space:
params["spaceKey"] = space
if start:
params["start"] = start
if limit:
params["limit"] = limit
if expand:
params["expand"] = expand
try:
response = self.get(url, params=params)
except HTTPError as e:
if e.response.status_code == 403:
raise ApiPermissionError(
"The calling user does not have permission to view the content",
reason=e,
)
raise
return response.get("results") or []
def get_blueprint_templates(self, space=None, start=0, limit=None, expand=None):
"""
Gets all templates provided by blueprints.
Use this method to retrieve all global blueprint templates or all blueprint templates in a space.
:param space: OPTIONAL: The key of the space to be queried for templates. If ``space`` is not
specified, global blueprint templates will be returned.
:param start: OPTIONAL: The starting index of the returned templates. Default: None (0).
:param limit: OPTIONAL: The limit of the number of pages to return, this may be restricted by
fixed system limits. Default: 25
:param expand: OPTIONAL: A multi-value parameter indicating which properties of the template to expand.
"""
url = "rest/api/template/blueprint"
params = {}
if space:
params["spaceKey"] = space
if start:
params["start"] = start
if limit:
params["limit"] = limit
if expand:
params["expand"] = expand
try:
response = self.get(url, params=params)
except HTTPError as e:
if e.response.status_code == 403:
raise ApiPermissionError(
"The calling user does not have permission to view the content",
reason=e,
)
raise
return response.get("results") or []
@deprecated(version="3.7.0", reason="Use get_content_templates()")
def get_all_templates_from_space(self, space, start=0, limit=None, expand=None):
"""
Get all users templates from space. Experimental API
ref: https://docs.atlassian.com/atlassian-confluence/1000.73.0/com/atlassian/confluence/plugins/restapi\
/resources/TemplateResource.html
:param space: Space Key
:param start: OPTIONAL: The start point of the collection to return. Default: None (0).
:param limit: OPTIONAL: The limit of the number of pages to return, this may be restricted by
fixed system limits. Default: 20
:param expand: OPTIONAL: expand e.g. body
"""
url = "rest/experimental/template/page"
params = {}
if space: