Documentation
¶
Overview ¶
Package coreapi provides direct access to the core commands in IPFS. If you are embedding IPFS directly in your Go program, this package is the public interface you should use to read and write files or otherwise control IPFS.
If you are running IPFS as a separate process, you should use `go-ipfs-api` to work with it via HTTP. As we finalize the interfaces here, `go-ipfs-api` will transparently adopt them so you can use the same code with either package.
**NOTE: this package is experimental.** `go-ipfs` has mainly been developed as a standalone application and library-style use of this package is still new. Interfaces here aren't yet completely stable.
Index ¶
- func NewCoreAPI(n *core.IpfsNode) coreiface.CoreAPI
- func ParseCid(c *cid.Cid) coreiface.Path
- func ParsePath(p string) (coreiface.Path, error)
- func ResolvedPath(p string, c *cid.Cid, r *cid.Cid) coreiface.Path
- type BlockAPI
- func (api *BlockAPI) Get(ctx context.Context, p coreiface.Path) (io.Reader, error)
- func (api *BlockAPI) Put(ctx context.Context, src io.Reader, opts ...caopts.BlockPutOption) (coreiface.Path, error)
- func (api *BlockAPI) Rm(ctx context.Context, p coreiface.Path, opts ...caopts.BlockRmOption) error
- func (api *BlockAPI) Stat(ctx context.Context, p coreiface.Path) (coreiface.BlockStat, error)
- type BlockStat
- type CoreAPI
- func (api *CoreAPI) Block() coreiface.BlockAPI
- func (api *CoreAPI) Dag() coreiface.DagAPI
- func (api *CoreAPI) Key() coreiface.KeyAPI
- func (api *CoreAPI) Name() coreiface.NameAPI
- func (api *CoreAPI) Object() coreiface.ObjectAPI
- func (api *CoreAPI) Pin() coreiface.PinAPI
- func (api *CoreAPI) ResolveNode(ctx context.Context, p coreiface.Path) (ipld.Node, error)
- func (api *CoreAPI) ResolvePath(ctx context.Context, p coreiface.Path) (coreiface.Path, error)
- func (api *CoreAPI) Unixfs() coreiface.UnixfsAPI
- type DagAPI
- func (api *DagAPI) Get(ctx context.Context, path coreiface.Path) (ipld.Node, error)
- func (api *DagAPI) Put(ctx context.Context, src io.Reader, opts ...caopts.DagPutOption) (coreiface.Path, error)
- func (api *DagAPI) Tree(ctx context.Context, p coreiface.Path, opts ...caopts.DagTreeOption) ([]coreiface.Path, error)
- type KeyAPI
- func (api *KeyAPI) Generate(ctx context.Context, name string, opts ...caopts.KeyGenerateOption) (coreiface.Key, error)
- func (api *KeyAPI) List(ctx context.Context) ([]coreiface.Key, error)
- func (api *KeyAPI) Remove(ctx context.Context, name string) (coreiface.Path, error)
- func (api *KeyAPI) Rename(ctx context.Context, oldName string, newName string, ...) (coreiface.Key, bool, error)
- type Link
- type NameAPI
- type Node
- type ObjectAPI
- func (api *ObjectAPI) AddLink(ctx context.Context, base coreiface.Path, name string, child coreiface.Path, ...) (coreiface.Path, error)
- func (api *ObjectAPI) AppendData(ctx context.Context, path coreiface.Path, r io.Reader) (coreiface.Path, error)
- func (api *ObjectAPI) Data(ctx context.Context, path coreiface.Path) (io.Reader, error)
- func (api *ObjectAPI) Get(ctx context.Context, path coreiface.Path) (ipld.Node, error)
- func (api *ObjectAPI) Links(ctx context.Context, path coreiface.Path) ([]*ipld.Link, error)
- func (api *ObjectAPI) New(ctx context.Context, opts ...caopts.ObjectNewOption) (ipld.Node, error)
- func (api *ObjectAPI) Put(ctx context.Context, src io.Reader, opts ...caopts.ObjectPutOption) (coreiface.Path, error)
- func (api *ObjectAPI) RmLink(ctx context.Context, base coreiface.Path, link string) (coreiface.Path, error)
- func (api *ObjectAPI) SetData(ctx context.Context, path coreiface.Path, r io.Reader) (coreiface.Path, error)
- func (api *ObjectAPI) Stat(ctx context.Context, path coreiface.Path) (*coreiface.ObjectStat, error)
- type PinAPI
- func (api *PinAPI) Add(ctx context.Context, p coreiface.Path, opts ...caopts.PinAddOption) error
- func (api *PinAPI) Ls(ctx context.Context, opts ...caopts.PinLsOption) ([]coreiface.Pin, error)
- func (api *PinAPI) Rm(ctx context.Context, p coreiface.Path) error
- func (api *PinAPI) Update(ctx context.Context, from coreiface.Path, to coreiface.Path, ...) error
- func (api *PinAPI) Verify(ctx context.Context) (<-chan coreiface.PinStatus, error)
- type UnixfsAPI
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCoreAPI ¶ added in v0.4.8
func NewCoreAPI(n *core.IpfsNode) coreiface.CoreAPI
NewCoreAPI creates new instance of IPFS CoreAPI backed by go-ipfs Node.
func ParseCid ¶ added in v0.4.8
func ParseCid(c *cid.Cid) coreiface.Path
ParseCid parses the path from `c`, returns the parsed path.
func ParsePath ¶ added in v0.4.8
func ParsePath(p string) (coreiface.Path, error)
ParsePath parses path `p` using ipfspath parser, returns the parsed path.
func ResolvedPath ¶ added in v0.4.8
func ResolvedPath(p string, c *cid.Cid, r *cid.Cid) coreiface.Path
ResolvePath parses path from string `p`, returns parsed path.
Types ¶
type BlockAPI ¶ added in v0.4.14
type BlockAPI CoreAPI
func (*BlockAPI) Get ¶ added in v0.4.14
func (api *BlockAPI) Get(ctx context.Context, p coreiface.Path) (io.Reader, error)
func (*BlockAPI) Put ¶ added in v0.4.14
func (api *BlockAPI) Put(ctx context.Context, src io.Reader, opts ...caopts.BlockPutOption) (coreiface.Path, error)
type BlockStat ¶ added in v0.4.14
type BlockStat struct {
// contains filtered or unexported fields
}
type CoreAPI ¶ added in v0.4.8
type CoreAPI struct {
// contains filtered or unexported fields
}
func (*CoreAPI) Block ¶ added in v0.4.14
func (api *CoreAPI) Block() coreiface.BlockAPI
Block returns the BlockAPI interface implementation backed by the go-ipfs node
func (*CoreAPI) Dag ¶ added in v0.4.14
func (api *CoreAPI) Dag() coreiface.DagAPI
Dag returns the DagAPI interface implementation backed by the go-ipfs node
func (*CoreAPI) Key ¶ added in v0.4.14
func (api *CoreAPI) Key() coreiface.KeyAPI
Key returns the KeyAPI interface implementation backed by the go-ipfs node
func (*CoreAPI) Name ¶ added in v0.4.14
func (api *CoreAPI) Name() coreiface.NameAPI
Name returns the NameAPI interface implementation backed by the go-ipfs node
func (*CoreAPI) Object ¶ added in v0.4.14
func (api *CoreAPI) Object() coreiface.ObjectAPI
Object returns the ObjectAPI interface implementation backed by the go-ipfs node
func (*CoreAPI) Pin ¶ added in v0.4.14
func (api *CoreAPI) Pin() coreiface.PinAPI
Pin returns the PinAPI interface implementation backed by the go-ipfs node
func (*CoreAPI) ResolveNode ¶ added in v0.4.8
func (api *CoreAPI) ResolveNode(ctx context.Context, p coreiface.Path) (ipld.Node, error)
ResolveNode resolves the path `p` using Unixfx resolver, gets and returns the resolved Node.
func (*CoreAPI) ResolvePath ¶ added in v0.4.8
func (api *CoreAPI) ResolvePath(ctx context.Context, p coreiface.Path) (coreiface.Path, error)
ResolvePath resolves the path `p` using Unixfs resolver, returns the resolved path. TODO: store all of ipfspath.Resolver.ResolvePathComponents() in Path
type DagAPI ¶ added in v0.4.14
type DagAPI CoreAPI
func (*DagAPI) Get ¶ added in v0.4.14
func (api *DagAPI) Get(ctx context.Context, path coreiface.Path) (ipld.Node, error)
Get resolves `path` using Unixfs resolver, returns the resolved Node.
func (*DagAPI) Put ¶ added in v0.4.14
func (api *DagAPI) Put(ctx context.Context, src io.Reader, opts ...caopts.DagPutOption) (coreiface.Path, error)
Put inserts data using specified format and input encoding. Unless used with `WithCodes` or `WithHash`, the defaults "dag-cbor" and "sha256" are used. Returns the path of the inserted data.
type KeyAPI ¶ added in v0.4.14
type KeyAPI CoreAPI
func (*KeyAPI) Generate ¶ added in v0.4.14
func (api *KeyAPI) Generate(ctx context.Context, name string, opts ...caopts.KeyGenerateOption) (coreiface.Key, error)
Generate generates new key, stores it in the keystore under the specified name and returns a base58 encoded multihash of its public key.
func (*KeyAPI) List ¶ added in v0.4.14
func (api *KeyAPI) List(ctx context.Context) ([]coreiface.Key, error)
List returns a list keys stored in keystore.
type NameAPI ¶ added in v0.4.14
type NameAPI CoreAPI
type ObjectAPI ¶ added in v0.4.14
type ObjectAPI CoreAPI
func (*ObjectAPI) AddLink ¶ added in v0.4.14
func (api *ObjectAPI) AddLink(ctx context.Context, base coreiface.Path, name string, child coreiface.Path, opts ...caopts.ObjectAddLinkOption) (coreiface.Path, error)
func (*ObjectAPI) AppendData ¶ added in v0.4.14
func (api *ObjectAPI) AppendData(ctx context.Context, path coreiface.Path, r io.Reader) (coreiface.Path, error)
func (*ObjectAPI) Data ¶ added in v0.4.14
func (api *ObjectAPI) Data(ctx context.Context, path coreiface.Path) (io.Reader, error)
func (*ObjectAPI) Get ¶ added in v0.4.14
func (api *ObjectAPI) Get(ctx context.Context, path coreiface.Path) (ipld.Node, error)
func (*ObjectAPI) Links ¶ added in v0.4.14
func (api *ObjectAPI) Links(ctx context.Context, path coreiface.Path) ([]*ipld.Link, error)
func (*ObjectAPI) New ¶ added in v0.4.14
func (api *ObjectAPI) New(ctx context.Context, opts ...caopts.ObjectNewOption) (ipld.Node, error)
func (*ObjectAPI) Put ¶ added in v0.4.14
func (api *ObjectAPI) Put(ctx context.Context, src io.Reader, opts ...caopts.ObjectPutOption) (coreiface.Path, error)
func (*ObjectAPI) RmLink ¶ added in v0.4.14
func (api *ObjectAPI) RmLink(ctx context.Context, base coreiface.Path, link string) (coreiface.Path, error)
type PinAPI ¶ added in v0.4.14
type PinAPI CoreAPI
func (*PinAPI) Add ¶ added in v0.4.14
func (api *PinAPI) Add(ctx context.Context, p coreiface.Path, opts ...caopts.PinAddOption) error
func (*PinAPI) Ls ¶ added in v0.4.14
func (api *PinAPI) Ls(ctx context.Context, opts ...caopts.PinLsOption) ([]coreiface.Pin, error)
func (*PinAPI) Rm ¶ added in v0.4.14
func (api *PinAPI) Rm(ctx context.Context, p coreiface.Path) error
type UnixfsAPI ¶
type UnixfsAPI CoreAPI
func (*UnixfsAPI) Add ¶
func (api *UnixfsAPI) Add(ctx context.Context, r io.Reader) (coreiface.Path, error)
Add builds a merkledag node from a reader, adds it to the blockstore, and returns the key representing that node.