|
| 1 | +"""Interface to Plotly's /v2/files endpoints.""" |
| 2 | +from __future__ import absolute_import |
| 3 | + |
| 4 | +from plotly.api.v2.utils import build_url, make_params, request |
| 5 | + |
| 6 | +RESOURCE = 'files' |
| 7 | + |
| 8 | + |
| 9 | +def retrieve(fid, share_key=None): |
| 10 | + """ |
| 11 | + Retrieve a general file from Plotly. |
| 12 | +
|
| 13 | + :param (str) fid: The `{username}:{idlocal}` identifier. E.g. `foo:88`. |
| 14 | + :param (str) share_key: The secret key granting 'read' access if private. |
| 15 | + :returns: (requests.Response) Returns response directly from requests. |
| 16 | +
|
| 17 | + """ |
| 18 | + url = build_url(RESOURCE, id=fid) |
| 19 | + params = make_params(share_key=share_key) |
| 20 | + return request('get', url, params=params) |
| 21 | + |
| 22 | + |
| 23 | +def update(fid, body): |
| 24 | + """ |
| 25 | + Update a general file from Plotly. |
| 26 | +
|
| 27 | + :param (str) fid: The `{username}:{idlocal}` identifier. E.g. `foo:88`. |
| 28 | + :param (dict) body: A mapping of body param names to values. |
| 29 | + :returns: (requests.Response) Returns response directly from requests. |
| 30 | +
|
| 31 | + """ |
| 32 | + url = build_url(RESOURCE, id=fid) |
| 33 | + return request('put', url, json=body) |
| 34 | + |
| 35 | + |
| 36 | +def trash(fid): |
| 37 | + """ |
| 38 | + Soft-delete a general file from Plotly. (Can be undone with 'restore'). |
| 39 | +
|
| 40 | + :param (str) fid: The `{username}:{idlocal}` identifier. E.g. `foo:88`. |
| 41 | + :returns: (requests.Response) Returns response directly from requests. |
| 42 | +
|
| 43 | + """ |
| 44 | + url = build_url(RESOURCE, id=fid, route='trash') |
| 45 | + return request('post', url) |
| 46 | + |
| 47 | + |
| 48 | +def restore(fid): |
| 49 | + """ |
| 50 | + Restore a trashed, general file from Plotly. See 'trash'. |
| 51 | +
|
| 52 | + :param (str) fid: The `{username}:{idlocal}` identifier. E.g. `foo:88`. |
| 53 | + :returns: (requests.Response) Returns response directly from requests. |
| 54 | +
|
| 55 | + """ |
| 56 | + url = build_url(RESOURCE, id=fid, route='restore') |
| 57 | + return request('post', url) |
| 58 | + |
| 59 | + |
| 60 | +def permanent_delete(fid): |
| 61 | + """ |
| 62 | + Permanently delete a trashed, general file from Plotly. See 'trash'. |
| 63 | +
|
| 64 | + :param (str) fid: The `{username}:{idlocal}` identifier. E.g. `foo:88`. |
| 65 | + :returns: (requests.Response) Returns response directly from requests. |
| 66 | +
|
| 67 | + """ |
| 68 | + url = build_url(RESOURCE, id=fid, route='permanent_delete') |
| 69 | + return request('delete', url) |
| 70 | + |
| 71 | + |
| 72 | +def lookup(path, parent=None, user=None, exists=None): |
| 73 | + """ |
| 74 | + Retrieve a general file from Plotly without needing a fid. |
| 75 | +
|
| 76 | + :param (str) path: The '/'-delimited path specifying the file location. |
| 77 | + :param (int) parent: Parent id, an integer, which the path is relative to. |
| 78 | + :param (str) user: The username to target files for. Defaults to requestor. |
| 79 | + :param (bool) exists: If True, don't return the full file, just a flag. |
| 80 | + :returns: (requests.Response) Returns response directly from requests. |
| 81 | +
|
| 82 | + """ |
| 83 | + url = build_url(RESOURCE, route='lookup') |
| 84 | + params = make_params(path=path, parent=parent, user=user, exists=exists) |
| 85 | + return request('get', url, params=params) |
0 commit comments