Skip to content
This repository was archived by the owner on Dec 22, 2023. It is now read-only.

Commit 59fdbc9

Browse files
committed
fixed upload
1 parent 15f3268 commit 59fdbc9

File tree

3 files changed

+70
-16
lines changed

3 files changed

+70
-16
lines changed

box/client.py

+18-8
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def _check_for_errors(self, response):
272272
def default_headers(self):
273273
return self.credentials.headers
274274

275-
def _request(self, method, resource, params=None, data=None, headers=None, endpoint="api", raw=False, try_refresh=True, **kwargs):
275+
def _request(self, method, resource, params=None, data=None, headers=None, endpoint="api", raw=False, try_refresh=True, auto_json=True, **kwargs):
276276
"""
277277
Performs a HTTP request to Box.
278278
@@ -282,15 +282,16 @@ def _request(self, method, resource, params=None, data=None, headers=None, endpo
282282
- method: The type of HTTP method, f.ex. get or post
283283
- resource: The resource to request (without shared prefix)
284284
- params: Any query parameters to send
285-
- data: Any data to send. If data is a dict, it will be encoded as json
285+
- data: Any data to send. If data is a dict and auto_json is True, it will be encoded as json.
286286
- headers: Any additional headers
287287
- endpoint: The endpoint to use, f.ex. api or upload, defaults to api
288288
- raw: True if the full response should be returned, otherwise the parsed json body will be returned
289289
- try_refresh: True if a refresh of the credentials should be attempted, False otherwise
290+
- auto_json: should data be json-ified automatically.
290291
- **kwargs: Any addiitonal arguments to pass to the request
291292
"""
292293

293-
if isinstance(data, dict):
294+
if auto_json and isinstance(data, dict):
294295
data = json.dumps(data)
295296

296297
if headers:
@@ -528,22 +529,31 @@ def upload_file(self, filename, fileobj, parent=0):
528529
form = {"parent_id": self._get_id(parent)}
529530

530531
# usually Box goes with data==json, but here they want headers (as per standard http form)
531-
result = self._request("post", "files/content", endpoint="upload", data=form, files={filename: fileobj})
532-
return result['entries'][0]
532+
response = requests.post('https://upload.box.com/api/2.0/files/content',
533+
headers=self.default_headers,
534+
data=form,
535+
files={filename: fileobj})
536+
537+
self._check_for_errors(response)
538+
return response.json()['entries'][0]
533539

534540
def overwrite_file(self, file_id, fileobj, etag=None, content_modified_at=None):
535541
"""
536542
Uploads a file that will overwrite an existing one. The file_id must exist on the server.
537543
"""
538-
headers = {}
544+
headers = dict(self.default_headers)
539545
if etag:
540546
headers['If-Match'] = etag
541547

542548
if content_modified_at:
543549
headers['content_modified_at'] = content_modified_at.isoformat()
544550

545-
result = self._request("post", 'files/{}/content'.format(file_id), headers=headers, endpoint="upload", files={'file': fileobj})
546-
return result['entries'][0]
551+
response = requests.post('https://upload.box.com/api/2.0/files/{}/content'.format(file_id),
552+
headers=headers,
553+
files={'file': fileobj})
554+
555+
self._check_for_errors(response)
556+
return response.json()['entries'][0]
547557

548558
def copy_file(self, file_id, destination_parent, new_filename=None):
549559
"""

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name='box.py',
18-
version='1.2',
18+
version='1.2.1',
1919
author='Sookasa',
2020
author_email='[email protected]',
2121
url='http://github.com/sookasa/box.py',

tests/test_client.py

+51-7
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,15 @@ def make_client(self, method, path, params=None, data=None, headers=None, endpoi
2929
else:
3030
headers = client.default_headers
3131

32+
if isinstance(data, dict):
33+
data = json.dumps(data)
34+
3235
flexmock(requests) \
3336
.should_receive('request') \
3437
.with_args(method,
3538
'https://%s.box.com/2.0/%s' % (endpoint, path),
3639
params=params,
37-
data=json.dumps(data) if isinstance(data, dict) else data,
40+
data=data,
3841
headers=headers,
3942
**kwargs) \
4043
.and_return(mocked_response(result)) \
@@ -373,24 +376,65 @@ def test_get_thumbnail(self):
373376
self.assertEqual('Thumbnail contents', thumbnail.read())
374377

375378
def test_upload_file(self):
376-
client = self.make_client("post", "files/content", endpoint="upload", data={'parent_id': '666'}, files={'hello.jpg': FileObjMatcher('hello world')},
377-
result={"entries": [{"id": "1"}]})
379+
client = BoxClient('my_token')
380+
flexmock(client) \
381+
.should_receive('_check_for_errors') \
382+
.once()
383+
384+
response = mocked_response({'entries': [{'id': '1'}]})
385+
flexmock(requests) \
386+
.should_receive('post') \
387+
.with_args('https://upload.box.com/api/2.0/files/content',
388+
headers=client.default_headers,
389+
data={'parent_id': '666'},
390+
files={'hello.jpg': FileObjMatcher('hello world')}) \
391+
.and_return(response) \
392+
.once()
393+
378394
result = client.upload_file('hello.jpg', StringIO('hello world'), parent=666)
379395
self.assertEqual({'id': '1'}, result)
380396

381397
def test_upload_file_with_parent_as_dict(self):
382-
client = self.make_client("post", "files/content", data={'parent_id': '666'},
383-
files={'hello.jpg': FileObjMatcher('hello world')}, result={"entries": [{"id": "1"}]}, endpoint="upload")
398+
client = BoxClient('my_token')
399+
flexmock(client) \
400+
.should_receive('_check_for_errors') \
401+
.once()
402+
403+
response = mocked_response({'entries': [{'id': '1'}]})
404+
flexmock(requests) \
405+
.should_receive('post') \
406+
.with_args('https://upload.box.com/api/2.0/files/content',
407+
headers=client.default_headers,
408+
data={'parent_id': '666'},
409+
files={'hello.jpg': FileObjMatcher('hello world')}) \
410+
.and_return(response) \
411+
.once()
412+
384413
result = client.upload_file('hello.jpg', StringIO('hello world'), parent={'id': 666})
385414
self.assertEqual({'id': '1'}, result)
386415

387416
def test_overwrite_file(self):
417+
client = BoxClient('my_token')
418+
419+
flexmock(client) \
420+
.should_receive('_check_for_errors') \
421+
.once()
422+
388423
expected_headers = {'content_modified_at': '2006-05-04T03:02:01+00:00',
389424
'If-Match': 'some_tag'}
425+
expected_headers.update(client.default_headers)
426+
427+
expected_response = mocked_response({'entries': [{'id': '1'}]})
428+
flexmock(requests) \
429+
.should_receive('post') \
430+
.with_args('https://upload.box.com/api/2.0/files/666/content',
431+
headers=expected_headers,
432+
files={'file': FileObjMatcher('hello world')}) \
433+
.and_return(expected_response) \
434+
.once()
390435

391-
client = self.make_client("post", "files/666/content", headers=expected_headers, files={'file': FileObjMatcher('hello world')}, endpoint="upload", result={"entries": [{"id": "1"}]})
392436
result = client.overwrite_file(666, StringIO('hello world'), etag='some_tag',
393-
content_modified_at=datetime(2006, 5, 4, 3, 2, 1, 0, tzinfo=UTC()))
437+
content_modified_at=datetime(2006, 5, 4, 3, 2, 1, 0, tzinfo=UTC()),)
394438
self.assertEqual({'id': '1'}, result)
395439

396440
def test_copy_file(self):

0 commit comments

Comments
 (0)