-
Notifications
You must be signed in to change notification settings - Fork 200
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add interface for the remote pinning API
revbump to 0.8.0a3
- Loading branch information
cipres
authored and
cipres
committed
Jun 9, 2022
1 parent
f04ff60
commit 93dbf12
Showing
3 changed files
with
90 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
from . import base | ||
|
||
|
||
class Section(base.SectionBase): | ||
@base.returns_single_item(base.ResponseBase) | ||
def service_add(self, service: str, endpoint: str, | ||
key: str, | ||
**kwargs: base.CommonArgs): | ||
args = (service, endpoint, key) | ||
return self._client.request('/pin/remote/service/add', args, | ||
decoder='json', **kwargs) | ||
|
||
@base.returns_single_item(base.ResponseBase) | ||
def service_ls(self, stat: bool = False, **kwargs: base.CommonArgs): | ||
kwargs.setdefault('opts', {'stat': stat}) | ||
|
||
return self._client.request('/pin/remote/service/ls', (), | ||
decoder='json', **kwargs) | ||
|
||
@base.returns_single_item(base.ResponseBase) | ||
def service_rm(self, service: str, **kwargs: base.CommonArgs): | ||
args = (service,) | ||
return self._client.request('/pin/remote/service/rm', args, | ||
decoder='json', **kwargs) | ||
|
||
@base.returns_single_item(base.ResponseBase) | ||
def add(self, service: str, path: base.cid_t, | ||
name: str = None, background = False, | ||
**kwargs: base.CommonArgs): | ||
opts = { | ||
'service': service, | ||
'arg': path, | ||
'background': background | ||
} | ||
if name: | ||
opts['name'] = name | ||
|
||
kwargs.setdefault('opts', opts) | ||
|
||
return self._client.request('/pin/remote/add', (), | ||
decoder='json', **kwargs) | ||
|
||
@base.returns_multiple_items(base.ResponseBase) | ||
def ls(self, service: str, | ||
name: str = None, cid: list = [], | ||
status: list = ['pinned'], | ||
**kwargs: base.CommonArgs): | ||
opts = { | ||
'service': service, | ||
'status': status | ||
} | ||
|
||
if len(cid) > 0: | ||
opts['cid'] = cid | ||
|
||
if name: | ||
opts['name'] = name | ||
|
||
kwargs.setdefault('opts', opts) | ||
|
||
return self._client.request('/pin/remote/ls', (), | ||
decoder='json', **kwargs) | ||
|
||
@base.returns_single_item(base.ResponseBase) | ||
def rm(self, service: str, | ||
name: str = None, cid: list = [], | ||
status: list = ['pinned'], | ||
force: bool = False, | ||
**kwargs: base.CommonArgs): | ||
opts = { | ||
'service': service, | ||
'cid': cid, | ||
'status': status, | ||
'force': force | ||
} | ||
|
||
if len(cid) > 0: | ||
opts['cid'] = cid | ||
|
||
if name is not None: | ||
opts['name'] = name | ||
|
||
kwargs.setdefault('opts', opts) | ||
|
||
return self._client.request('/pin/remote/rm', (), | ||
decoder='json', **kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters