aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/cgitize/bitbucket.py
diff options
context:
space:
mode:
Diffstat (limited to 'cgitize/bitbucket.py')
-rw-r--r--cgitize/bitbucket.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/cgitize/bitbucket.py b/cgitize/bitbucket.py
new file mode 100644
index 0000000..16f6d41
--- /dev/null
+++ b/cgitize/bitbucket.py
@@ -0,0 +1,24 @@
+# Copyright (c) 2021 Egor Tensin <Egor.Tensin@gmail.com>
+# This file is part of the "cgitize" project.
+# For details, see https://github.com/egor-tensin/cgitize.
+# Distributed under the MIT License.
+
+import logging
+
+from atlassian.bitbucket.cloud import Cloud
+from requests.exceptions import HTTPError
+
+
+class Bitbucket:
+ def __init__(self, username=None, password=None):
+ self._impl = Cloud(username=username, password=password, cloud=True)
+
+ def get_repo(self, repo):
+ if 'id' not in repo:
+ raise ValueError('every Bitbucket repository must have an ID')
+ repo_id = repo['id']
+ try:
+ return self._impl.repositories.get(repo_id)
+ except HTTPError:
+ logging.error("Couldn't fetch repository: %s", repo_id)
+ raise