Skip to content

Commit 5638b08

Browse files
ciprescipres
cipres
authored and
cipres
committed
Add interface for the remote pinning API
revbump to 0.8.0a3
1 parent f04ff60 commit 5638b08

File tree

3 files changed

+85
-2
lines changed

3 files changed

+85
-2
lines changed

ipfshttpclient/client/__init__.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
from . import name
3737
from . import object
3838
from . import pin
39+
from . import pinremote
3940
from . import pubsub
4041
from . import repo
4142
#TODO: `from . import stats`
@@ -186,6 +187,7 @@ def close(self): # Call this when you're done
186187
name = base.SectionProperty(name.Section)
187188
object = base.SectionProperty(object.Section)
188189
pin = base.SectionProperty(pin.Section)
190+
pinremote = base.SectionProperty(pinremote.Section)
189191
pubsub = base.SectionProperty(pubsub.Section)
190192
repo = base.SectionProperty(repo.Section)
191193
swarm = base.SectionProperty(swarm.Section)
@@ -330,4 +332,4 @@ def get_json(self, cid, **kwargs):
330332
object
331333
Deserialized IPFS JSON object value
332334
"""
333-
return self.cat(cid, decoder='json', **kwargs)
335+
return self.cat(cid, decoder='json', **kwargs)

ipfshttpclient/client/pinremote.py

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
from . import base
2+
3+
4+
class Section(base.SectionBase):
5+
def service_add(self, service: str, endpoint: str,
6+
key: str,
7+
**kwargs: base.CommonArgs):
8+
args = (service, endpoint, key)
9+
return self._client.request('/pin/remote/service/add',
10+
args, **kwargs)
11+
12+
@base.returns_single_item(base.ResponseBase)
13+
def service_ls(self, stat: bool = False, **kwargs: base.CommonArgs):
14+
kwargs.setdefault('opts', {'stat': stat})
15+
16+
return self._client.request('/pin/remote/service/ls', (),
17+
decoder='json', **kwargs)
18+
19+
def service_rm(self, service: str, **kwargs: base.CommonArgs):
20+
args = (service,)
21+
return self._client.request('/pin/remote/service/rm', args, **kwargs)
22+
23+
@base.returns_single_item(base.ResponseBase)
24+
def add(self, service: str, path: base.cid_t,
25+
name: str = None, background = False,
26+
**kwargs: base.CommonArgs):
27+
opts = {
28+
'service': service,
29+
'arg': path,
30+
'background': background
31+
}
32+
if name:
33+
opts['name'] = name
34+
35+
kwargs.setdefault('opts', opts)
36+
37+
return self._client.request('/pin/remote/add', (),
38+
decoder='json', **kwargs)
39+
40+
@base.returns_multiple_items(base.ResponseBase)
41+
def ls(self, service: str,
42+
name: str = None, cid: list = [],
43+
status: list = ['pinned'],
44+
**kwargs: base.CommonArgs):
45+
opts = {
46+
'service': service,
47+
'status': status
48+
}
49+
50+
if len(cid) > 0:
51+
opts['cid'] = cid
52+
53+
if name:
54+
opts['name'] = name
55+
56+
kwargs.setdefault('opts', opts)
57+
58+
return self._client.request('/pin/remote/ls', (),
59+
decoder='json', **kwargs)
60+
61+
def rm(self, service: str,
62+
name: str = None, cid: list = [],
63+
status: list = ['pinned'],
64+
force: bool = False,
65+
**kwargs: base.CommonArgs):
66+
opts = {
67+
'service': service,
68+
'cid': cid,
69+
'status': status,
70+
'force': force
71+
}
72+
73+
if len(cid) > 0:
74+
opts['cid'] = cid
75+
76+
if name is not None:
77+
opts['name'] = name
78+
79+
kwargs.setdefault('opts', opts)
80+
81+
return self._client.request('/pin/remote/rm', (), **kwargs)

ipfshttpclient/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88
# `0.4.1` and so on. When IPFS `0.5.0` is released, the first client version
99
# to support it will also be released as `0.5.0`.
1010

11-
__version__ = "0.8.0a2"
11+
__version__ = "0.8.0a3"

0 commit comments

Comments
 (0)