Skip to content

Commit a4a0cc5

Browse files
committedDec 31, 2024·
Migrate to B2 native API v3
1 parent 7c4bf32 commit a4a0cc5

File tree

9 files changed

+70
-36
lines changed

9 files changed

+70
-36
lines changed
 

‎b2sdk/_internal/raw_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
]
8080

8181
# API version number to use when calling the service
82-
API_VERSION = 'v2'
82+
API_VERSION = 'v3'
8383

8484
logger = getLogger(__name__)
8585

‎b2sdk/_internal/raw_simulator.py

+15-6
Original file line numberDiff line numberDiff line change
@@ -1407,12 +1407,21 @@ def authorize_account(self, realm_url, application_key_id, application_key):
14071407
return dict(
14081408
accountId=key_sim.account_id,
14091409
authorizationToken=auth_token,
1410-
apiUrl=self.API_URL,
1411-
downloadUrl=self.DOWNLOAD_URL,
1412-
recommendedPartSize=self.MIN_PART_SIZE,
1413-
absoluteMinimumPartSize=self.MIN_PART_SIZE,
1414-
allowed=allowed,
1415-
s3ApiUrl=self.S3_API_URL,
1410+
apiInfo=dict(
1411+
groupsApi=dict(),
1412+
storageApi=dict(
1413+
apiUrl=self.API_URL,
1414+
downloadUrl=self.DOWNLOAD_URL,
1415+
recommendedPartSize=self.MIN_PART_SIZE,
1416+
absoluteMinimumPartSize=self.MIN_PART_SIZE,
1417+
allowed=allowed,
1418+
s3ApiUrl=self.S3_API_URL,
1419+
bucketId=allowed['bucketId'],
1420+
bucketName=allowed['bucketName'],
1421+
capabilities=allowed['capabilities'],
1422+
namePrefix=allowed['namePrefix'],
1423+
),
1424+
),
14161425
)
14171426

14181427
def cancel_large_file(self, api_url, account_auth_token, file_id):

‎b2sdk/_internal/session.py

+15-6
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,16 @@ def authorize_account(self, realm, application_key_id, application_key):
116116
realm_url = REALM_URLS.get(realm, realm)
117117
response = self.raw_api.authorize_account(realm_url, application_key_id, application_key)
118118
account_id = response['accountId']
119-
allowed = response['allowed']
119+
storage_api_info = response['apiInfo']['storageApi']
120+
121+
# `allowed` object has been deprecated in the v3 of the API, but we still
122+
# construct it artificially to avoid changes in all the reliant parts.
123+
allowed = {
124+
'bucketId': storage_api_info['bucketId'],
125+
'bucketName': storage_api_info['bucketName'],
126+
'capabilities': storage_api_info['capabilities'],
127+
'namePrefix': storage_api_info['namePrefix'],
128+
}
120129

121130
# Clear the cache if new account has been used
122131
if not self.account_info.is_same_account(account_id, realm):
@@ -126,13 +135,13 @@ def authorize_account(self, realm, application_key_id, application_key):
126135
self.account_info.set_auth_data(
127136
account_id=account_id,
128137
auth_token=response['authorizationToken'],
129-
api_url=response['apiUrl'],
130-
download_url=response['downloadUrl'],
131-
absolute_minimum_part_size=response['absoluteMinimumPartSize'],
132-
recommended_part_size=response['recommendedPartSize'],
138+
api_url=storage_api_info['apiUrl'],
139+
download_url=storage_api_info['downloadUrl'],
140+
absolute_minimum_part_size=storage_api_info['absoluteMinimumPartSize'],
141+
recommended_part_size=storage_api_info['recommendedPartSize'],
133142
application_key=application_key,
134143
realm=realm,
135-
s3_api_url=response['s3ApiUrl'],
144+
s3_api_url=storage_api_info['s3ApiUrl'],
136145
allowed=allowed,
137146
application_key_id=application_key_id,
138147
)

‎b2sdk/v1/session.py

+14-5
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,16 @@ def authorize_account(self, realm, application_key_id, application_key):
4949
realm_url = self.account_info.REALM_URLS.get(realm, realm)
5050
response = self.raw_api.authorize_account(realm_url, application_key_id, application_key)
5151
account_id = response['accountId']
52-
allowed = response['allowed']
52+
storage_api_info = response['apiInfo']['storageApi']
53+
54+
# `allowed` object has been deprecated in the v3 of the API, but we still
55+
# construct it artificially to avoid changes in all the reliant parts.
56+
allowed = {
57+
'bucketId': storage_api_info['bucketId'],
58+
'bucketName': storage_api_info['bucketName'],
59+
'capabilities': storage_api_info['capabilities'],
60+
'namePrefix': storage_api_info['namePrefix'],
61+
}
5362

5463
# Clear the cache if new account has been used
5564
if not self.account_info.is_same_account(account_id, realm):
@@ -59,12 +68,12 @@ def authorize_account(self, realm, application_key_id, application_key):
5968
self.account_info.set_auth_data(
6069
account_id=account_id,
6170
auth_token=response['authorizationToken'],
62-
api_url=response['apiUrl'],
63-
download_url=response['downloadUrl'],
64-
minimum_part_size=response['recommendedPartSize'],
71+
api_url=storage_api_info['apiUrl'],
72+
download_url=storage_api_info['downloadUrl'],
73+
minimum_part_size=storage_api_info['recommendedPartSize'],
6574
application_key=application_key,
6675
realm=realm,
67-
s3_api_url=response['s3ApiUrl'],
76+
s3_api_url=storage_api_info['s3ApiUrl'],
6877
allowed=allowed,
6978
application_key_id=application_key_id,
7079
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Migrate to B2 Native API v3.

‎test/integration/test_raw_api.py

+9-6
Original file line numberDiff line numberDiff line change
@@ -119,14 +119,14 @@ def raw_api_test_helper(raw_api, should_cleanup_old_buckets):
119119
set(ALL_CAPABILITIES)
120120
- {'readBuckets', 'listAllBucketNames'}
121121
- preview_feature_caps
122-
- set(auth_dict['allowed']['capabilities'])
122+
- set(auth_dict['apiInfo']['storageApi']['capabilities'])
123123
)
124124
assert not missing_capabilities, f'it appears that the raw_api integration test is being run with a non-full key. Missing capabilities: {missing_capabilities}'
125125

126126
account_id = auth_dict['accountId']
127127
account_auth_token = auth_dict['authorizationToken']
128-
api_url = auth_dict['apiUrl']
129-
download_url = auth_dict['downloadUrl']
128+
api_url = auth_dict['apiInfo']['storageApi']['apiUrl']
129+
download_url = auth_dict['apiInfo']['storageApi']['downloadUrl']
130130

131131
# b2_create_key
132132
print('b2_create_key')
@@ -599,7 +599,7 @@ def raw_api_test_helper(raw_api, should_cleanup_old_buckets):
599599

600600

601601
def _subtest_bucket_notification_rules(raw_api, auth_dict, api_url, account_auth_token, bucket_id):
602-
if 'writeBucketNotifications' not in auth_dict['allowed']['capabilities']:
602+
if 'writeBucketNotifications' not in auth_dict['apiInfo']['storageApi']['capabilities']:
603603
pytest.skip('Test account does not have writeBucketNotifications capability')
604604

605605
notification_rule = {
@@ -644,8 +644,11 @@ def _subtest_bucket_notification_rules(raw_api, auth_dict, api_url, account_auth
644644
def cleanup_old_buckets():
645645
raw_api = B2RawHTTPApi(B2Http())
646646
auth_dict = authorize_raw_api(raw_api)
647+
647648
bucket_list_dict = raw_api.list_buckets(
648-
auth_dict['apiUrl'], auth_dict['authorizationToken'], auth_dict['accountId']
649+
auth_dict['apiInfo']['storageApi']['apiUrl'],
650+
auth_dict['authorizationToken'],
651+
auth_dict['accountId'],
649652
)
650653
_cleanup_old_buckets(raw_api, auth_dict, bucket_list_dict)
651654

@@ -658,7 +661,7 @@ def _cleanup_old_buckets(raw_api, auth_dict, bucket_list_dict):
658661
print('cleaning up old bucket: ' + bucket_name)
659662
_clean_and_delete_bucket(
660663
raw_api,
661-
auth_dict['apiUrl'],
664+
auth_dict['apiInfo']['storageApi']['apiUrl'],
662665
auth_dict['authorizationToken'],
663666
auth_dict['accountId'],
664667
bucket_id,

‎test/integration/test_upload.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def test_ssec_key_id(self):
5757

5858
auth_dict = authorize_raw_api(raw_api)
5959
account_auth_token = auth_dict['authorizationToken']
60-
api_url = auth_dict['apiUrl']
60+
api_url = auth_dict['apiInfo']['storageApi']['apiUrl']
6161
bucket = self.create_bucket()
6262

6363
large_info = raw_api.start_large_file(

‎test/unit/fixtures/raw_api.py

+13-10
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,22 @@
1919
def fake_b2_raw_api_responses():
2020
return {
2121
'authorize_account': {
22-
'absoluteMinimumPartSize': 5000000,
2322
'accountId': '6012deadbeef',
24-
'allowed': {
25-
'bucketId': None,
26-
'bucketName': None,
27-
'capabilities': copy(ALL_CAPABILITIES),
28-
'namePrefix': None,
23+
'apiInfo': {
24+
'groupsApi': {},
25+
'storageApi': {
26+
'bucketId': None,
27+
'bucketName': None,
28+
'capabilities': copy(ALL_CAPABILITIES),
29+
'namePrefix': None,
30+
'downloadUrl': 'https://f000.backblazeb2.xyz:8180',
31+
'absoluteMinimumPartSize': 5000000,
32+
'recommendedPartSize': 100000000,
33+
'apiUrl': 'https://api000.backblazeb2.xyz:8180',
34+
's3ApiUrl': 'https://s3.us-west-000.backblazeb2.xyz:8180',
35+
},
2936
},
30-
'apiUrl': 'https://api000.backblazeb2.xyz:8180',
3137
'authorizationToken': '4_1111111111111111111111111_11111111_111111_1111_1111111111111_1111_11111111=',
32-
'downloadUrl': 'https://f000.backblazeb2.xyz:8180',
33-
'recommendedPartSize': 100000000,
34-
's3ApiUrl': 'https://s3.us-west-000.backblazeb2.xyz:8180',
3538
}
3639
}
3740

‎test/unit/v_all/test_api.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,5 +160,5 @@ def test_get_download_url_for_fileid(self):
160160

161161
assert (
162162
download_url
163-
== 'http://download.example.com/b2api/v2/b2_download_file_by_id?fileId=file-id'
163+
== 'http://download.example.com/b2api/v3/b2_download_file_by_id?fileId=file-id'
164164
)

0 commit comments

Comments
 (0)
Please sign in to comment.