mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-23 19:37:46 +08:00
99 lines
2.0 KiB
Go
99 lines
2.0 KiB
Go
package config
|
|
|
|
import (
|
|
"crypto"
|
|
"crypto/x509"
|
|
"encoding/base64"
|
|
"errors"
|
|
"os"
|
|
|
|
u "github.com/jbenet/go-ipfs/util"
|
|
)
|
|
|
|
// Identity tracks the configuration of the local node's identity.
|
|
type Identity struct {
|
|
PeerID string
|
|
PrivKey string
|
|
Address string
|
|
}
|
|
|
|
// Datastore tracks the configuration of the datastore.
|
|
type Datastore struct {
|
|
Type string
|
|
Path string
|
|
}
|
|
|
|
type SavedPeer struct {
|
|
Address string
|
|
}
|
|
|
|
// Config is used to load IPFS config files.
|
|
type Config struct {
|
|
Identity *Identity
|
|
Datastore Datastore
|
|
Peers []*SavedPeer
|
|
}
|
|
|
|
const DefaultPathRoot = "~/.go-ipfs"
|
|
const DefaultConfigFilePath = DefaultPathRoot + "/config"
|
|
const DefaultConfigFile = `{
|
|
"identity": {},
|
|
"datastore": {
|
|
"type": "leveldb",
|
|
"path": "` + DefaultPathRoot + `/datastore"
|
|
}
|
|
}
|
|
`
|
|
|
|
func (i *Identity) DecodePrivateKey(passphrase string) (crypto.PrivateKey, error) {
|
|
pkb, err := base64.StdEncoding.DecodeString(i.PrivKey)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
//pretend to actually decrypt private key
|
|
return x509.ParsePKCS1PrivateKey(pkb)
|
|
}
|
|
|
|
// Filename returns the proper tilde expanded config filename.
|
|
func Filename(filename string) (string, error) {
|
|
if len(filename) == 0 {
|
|
filename = DefaultConfigFilePath
|
|
}
|
|
|
|
// tilde expansion on config file
|
|
return u.TildeExpansion(filename)
|
|
}
|
|
|
|
// Load reads given file and returns the read config, or error.
|
|
func Load(filename string) (*Config, error) {
|
|
filename, err := Filename(filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// if nothing is there, fail. User must run 'ipfs init'
|
|
if _, err := os.Stat(filename); os.IsNotExist(err) {
|
|
return nil, errors.New("ipfs not initialized, please run 'ipfs init'")
|
|
}
|
|
|
|
var cfg Config
|
|
err = ReadConfigFile(filename, &cfg)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// tilde expansion on datastore path
|
|
cfg.Datastore.Path, err = u.TildeExpansion(cfg.Datastore.Path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &cfg, err
|
|
}
|
|
|
|
// Set sets the value of a particular config key
|
|
func Set(filename, key, value string) error {
|
|
return WriteConfigKey(filename, key, value)
|
|
}
|