Documentation ¶
Index ¶
- Variables
- func DoInit(repoRoot string, nBitsForKeypair int, testnet bool, password string, ...) error
- func GetCrosspostGateway(cfgPath string) ([]string, error)
- func GetDropboxApiToken(cfgPath string) (string, error)
- func GetResolverUrl(cfgPath string) (string, error)
- func InitConfig(repoRoot string) (*config.Config, error)
- type APIConfig
- type Config
- type Datastore
- type Followers
- type Following
- type Inventory
- type OfflineMessages
- type Pointers
- type Purchases
- type SMTPSettings
- type Sales
- type Settings
- type SettingsData
- type ShippingAddress
- type WalletConfig
Constants ¶
This section is empty.
Variables ¶
View Source
var DefaultBootstrapAddresses = []string{
"/ip4/107.170.133.32/tcp/4001/ipfs/QmSwHSqtUi9GhHTegi8gA5n2fsjP7LcnxGQeedj8ScLi8q",
"/ip4/139.59.174.197/tcp/4001/ipfs/Qmf6ZASu56X3iS9zBh5CQRDCLHttDY41637qn87gzSGybs",
"/ip4/139.59.6.222/tcp/4001/ipfs/QmZAZYJ5MvqkdoTuaFaoeyHkHLd8muENfr9JTo7ikQZPSG",
}
View Source
var ErrRepoExists = errors.New("IPFS configuration file exists. Reinitializing would overwrite your keys. Use -f to force overwrite.")
Functions ¶
func GetCrosspostGateway ¶ added in v0.2.0
func GetDropboxApiToken ¶
func GetResolverUrl ¶
Types ¶
type APIConfig ¶ added in v0.2.0
type APIConfig struct { Authenticated bool Username string Password string CORS *string Enabled bool HTTPHeaders map[string][]string SSL bool SSLCert string SSLKey string }
func GetAPIConfig ¶ added in v0.2.0
type Config ¶
type Config interface { /* Initialize the database with the node's mnemonic seed and identity key. This will be called during repo init. */ Init(mnemonic string, identityKey []byte, password string) error // Return the mnemonic string GetMnemonic() (string, error) // Return the identity key GetIdentityKey() ([]byte, error) // Returns true if the database has failed to decrypt properly ex) wrong pw IsEncrypted() bool }
type Followers ¶
type Followers interface { // Put a B58 encoded follower ID to the database Put(follower string) error /* Get followers from the database. The offset and limit arguments can be used to for lazy loading. */ Get(offsetId string, limit int) ([]string, error) // Delete a follower from the databse Delete(follower string) error // Return the number of followers in the database Count() int // Are we followed by this peer? FollowsMe(peerId string) bool }
type Following ¶
type Following interface { // Put a B58 encoded peer ID to the database Put(peer string) error /* Get a list of following peers from the database. The offset and limit arguments can be used to for lazy loading. */ Get(offsetId string, limit int) ([]string, error) // Delete a peer from the database Delete(peer string) error // Return the number of peers in the database Count() int // Am I following this peer? IsFollowing(peerId string) bool }
type Inventory ¶
type Inventory interface { /* Put an inventory count for a listing Override the existing count if it exists */ Put(slug string, count int) error // Return the count for a specific listing including variants GetSpecific(path string) (int, error) // Get the count for all variants of a given listing Get(slug string) (map[string]int, error) // Fetch all inventory countes GetAll() (map[string]int, error) // Delete a listing and related count Delete(path string) error // Delete all variants of a given slug DeleteAll(slug string) error }
type OfflineMessages ¶
type Purchases ¶ added in v0.1.2
type Purchases interface { // Save or update an order Put(orderID string, contract pb.RicardianContract, state pb.OrderState, read bool) error // Mark an order as read in the database MarkAsRead(orderID string) error // Update the funding level for the contract UpdateFunding(orderId string, funded bool, records []*spvwallet.TransactionRecord) error // Delete an order Delete(orderID string) error // Return a purchase given the payment address GetByPaymentAddress(addr btc.Address) (contract *pb.RicardianContract, state pb.OrderState, funded bool, records []*spvwallet.TransactionRecord, err error) // Return a purchase given the order ID GetByOrderId(orderId string) (contract *pb.RicardianContract, state pb.OrderState, funded bool, records []*spvwallet.TransactionRecord, read bool, err error) // Return the IDs for all orders GetAll() ([]string, error) }
type SMTPSettings ¶
type Sales ¶ added in v0.1.2
type Sales interface { // Save or update a sale Put(orderID string, contract pb.RicardianContract, state pb.OrderState, read bool) error // Mark an order as read in the database MarkAsRead(orderID string) error // Update the funding level for the contract UpdateFunding(orderId string, funded bool, records []*spvwallet.TransactionRecord) error // Delete an order Delete(orderID string) error // Return a sale given the payment address GetByPaymentAddress(addr btc.Address) (contract *pb.RicardianContract, state pb.OrderState, funded bool, records []*spvwallet.TransactionRecord, err error) // Return a sale given the order ID GetByOrderId(orderId string) (contract *pb.RicardianContract, state pb.OrderState, funded bool, records []*spvwallet.TransactionRecord, read bool, err error) // Return the IDs for all orders GetAll() ([]string, error) }
type Settings ¶
type Settings interface { // Put settings to the database, overriding all fields Put(settings SettingsData) error // Update all non-nil fields Update(settings SettingsData) error // Return the settings object Get() (SettingsData, error) }
type SettingsData ¶
type SettingsData struct { PaymentDataInQR *bool `json:"paymentDataInQR"` ShowNotifications *bool `json:"showNotificatons"` ShowNsfw *bool `json:"showNsfw"` ShippingAddresses *[]ShippingAddress `json:"shippingAddresses"` LocalCurrency *string `json:"localCurrency"` Country *string `json:"country"` Language *string `json:"language"` TermsAndConditions *string `json:"termsAndConditions"` RefundPolicy *string `json:"refundPolicy"` BlockedNodes *[]string `json:"blockedNodes"` StoreModerators *[]string `json:"storeModerators"` SMTPSettings *SMTPSettings `json:"smtpSettings"` }
type ShippingAddress ¶
type ShippingAddress struct { Name string `json:"name"` Company string `json:"company"` AddressLineOne string `json:"addressLineOne"` AddressLineTwo string `json:"addressLineTwo"` City string `json:"city"` State string `json:"state"` Country string `json:"country"` PostalCode string `json:"postalCode"` AddressNotes string `json:"addressNotes"` }
type WalletConfig ¶ added in v0.2.0
type WalletConfig struct { Type string Binary string MaxFee int FeeAPI string HighFeeDefault int MediumFeeDefault int LowFeeDefault int TrustedPeer string RPCUser string RPCPassword string }
func GetWalletConfig ¶ added in v0.2.0
func GetWalletConfig(cfgPath string) (*WalletConfig, error)
Click to show internal directories.
Click to hide internal directories.