Documentation ¶
Index ¶
- Variables
- func CidBaseDefined(req *cmds.Request) bool
- func CidEncoderFromPath(p string) (cidenc.Encoder, error)
- func EscNonPrint(s string) string
- func GetApi(env cmds.Environment, req *cmds.Request) (coreiface.CoreAPI, error)
- func GetCidEncoder(req *cmds.Request) (cidenc.Encoder, error)
- func GetConfig(env cmds.Environment) (*config.Config, error)
- func GetConfigRoot(env cmds.Environment) (string, error)
- func GetFileArg(it files.DirIterator) (files.File, error)
- func GetLowLevelCidEncoder(req *cmds.Request) (cidenc.Encoder, error)
- func GetNode(env interface{}) (*core.IpfsNode, error)
Constants ¶
This section is empty.
Variables ¶
var OptionCidBase = cmds.StringOption("cid-base", "Multibase encoding used for version 1 CIDs in output.")
var OptionUpgradeCidV0InOutput = cmds.BoolOption("upgrade-cidv0-in-output", "Upgrade version 0 to version 1 CIDs in output.")
Functions ¶
func CidBaseDefined ¶ added in v0.4.19
CidBaseDefined returns true if the `cid-base` option is specified on the command line
func CidEncoderFromPath ¶ added in v0.4.19
CidEncoderFromPath creates a new encoder that is influenced from the encoded Cid in a Path. For CidV0 the multibase from the base encoder is used and automatic upgrades are disabled. For CidV1 the multibase from the CID is used and upgrades are enabled.
This logic is intentionally fuzzy and will match anything of the form `CidLike`, `CidLike/...`, or `/namespace/CidLike/...`.
For example:
* Qm... * Qm.../... * /ipfs/Qm... * /ipns/bafybeiahnxfi7fpmr5wtxs2imx4abnyn7fdxeiox7xxjem6zuiioqkh6zi/... * /bzz/bafybeiahnxfi7fpmr5wtxs2imx4abnyn7fdxeiox7xxjem6zuiioqkh6zi/...
func EscNonPrint ¶ added in v0.8.0
EscNonPrint converts non-printable characters and backslash into Go escape sequences. This is done to display all characters in a string, including those that would otherwise not be displayed or have an undesirable effect on the display.
func GetCidEncoder ¶ added in v0.4.19
GetCidEncoder processes the `cid-base` and `output-cidv1` options and returns a encoder to use based on those parameters.
func GetConfig ¶
func GetConfig(env cmds.Environment) (*config.Config, error)
GetConfig extracts the config from the environment.
func GetConfigRoot ¶ added in v0.4.19
func GetConfigRoot(env cmds.Environment) (string, error)
GetConfigRoot extracts the config root from the environment
func GetFileArg ¶ added in v0.4.19
func GetFileArg(it files.DirIterator) (files.File, error)
GetFileArg returns the next file from the directory or an error
func GetLowLevelCidEncoder ¶ added in v0.4.19
GetLowLevelCidEncoder is like GetCidEncoder but meant to be used by lower level commands. It differs from GetCidEncoder in that CIDv0 are not, by default, auto-upgraded to CIDv1.
Types ¶
This section is empty.