2019-08-20 15:38:40 +00:00
|
|
|
package accounts
|
|
|
|
|
|
|
|
import (
|
|
|
|
"database/sql"
|
2019-08-08 07:31:24 +00:00
|
|
|
"encoding/json"
|
2019-08-20 15:38:40 +00:00
|
|
|
"errors"
|
2019-08-08 07:31:24 +00:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
2019-08-20 15:38:40 +00:00
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
"github.com/ethereum/go-ethereum/common/hexutil"
|
|
|
|
"github.com/status-im/status-go/sqlite"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
uniqueChatConstraint = "UNIQUE constraint failed: accounts.chat"
|
|
|
|
uniqueWalletConstraint = "UNIQUE constraint failed: accounts.wallet"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
// ErrWalletNotUnique returned if another account has `wallet` field set to true.
|
|
|
|
ErrWalletNotUnique = errors.New("another account is set to be default wallet. disable it before using new")
|
|
|
|
// ErrChatNotUnique returned if another account has `chat` field set to true.
|
|
|
|
ErrChatNotUnique = errors.New("another account is set to be default chat. disable it before using new")
|
|
|
|
)
|
|
|
|
|
|
|
|
type Account struct {
|
|
|
|
Address common.Address `json:"address"`
|
|
|
|
Wallet bool `json:"wallet"`
|
|
|
|
Chat bool `json:"chat"`
|
2019-12-16 15:23:36 +00:00
|
|
|
Type string `json:"type,omitempty"`
|
|
|
|
Storage string `json:"storage,omitempty"`
|
|
|
|
Path string `json:"path,omitempty"`
|
|
|
|
PublicKey hexutil.Bytes `json:"public-key,omitempty"`
|
2019-08-20 15:38:40 +00:00
|
|
|
Name string `json:"name"`
|
|
|
|
Color string `json:"color"`
|
|
|
|
}
|
|
|
|
|
2019-07-25 05:35:09 +00:00
|
|
|
func NewDB(db *sql.DB) *Database {
|
|
|
|
return &Database{db: db}
|
|
|
|
}
|
|
|
|
|
2019-08-20 15:38:40 +00:00
|
|
|
// Database sql wrapper for operations with browser objects.
|
|
|
|
type Database struct {
|
|
|
|
db *sql.DB
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close closes database.
|
|
|
|
func (db Database) Close() error {
|
|
|
|
return db.db.Close()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (db *Database) SaveConfig(typ string, value interface{}) error {
|
|
|
|
_, err := db.db.Exec("INSERT OR REPLACE INTO settings (type, value) VALUES (?, ?)", typ, &sqlite.JSONBlob{value})
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (db *Database) GetConfig(typ string, value interface{}) error {
|
|
|
|
return db.db.QueryRow("SELECT value FROM settings WHERE type = ?", typ).Scan(&sqlite.JSONBlob{value})
|
|
|
|
}
|
|
|
|
|
2019-08-08 07:31:24 +00:00
|
|
|
func (db *Database) GetConfigBlob(typ string) (rst json.RawMessage, err error) {
|
2019-08-20 15:38:40 +00:00
|
|
|
return rst, db.db.QueryRow("SELECT value FROM settings WHERE type = ?", typ).Scan(&rst)
|
|
|
|
}
|
|
|
|
|
2019-08-08 07:31:24 +00:00
|
|
|
func (db *Database) GetConfigBlobs(types []string) (map[string]json.RawMessage, error) {
|
|
|
|
// it expands number of bind vars to the number of types. sql interface doesn't allow to bypass it without modifying driver.
|
|
|
|
// expansion can be hidden in a function that modifies string but better to make it explicitly.
|
|
|
|
query := fmt.Sprintf("SELECT type, value FROM settings WHERE type IN (?%s)", strings.Repeat(",?", len(types)-1)) // nolint: gosec
|
|
|
|
args := make([]interface{}, len(types))
|
|
|
|
for i := range types {
|
|
|
|
args[i] = types[i]
|
|
|
|
}
|
|
|
|
rows, err := db.db.Query(query, args...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rst := make(map[string]json.RawMessage, len(types))
|
|
|
|
for rows.Next() {
|
|
|
|
var (
|
|
|
|
buf = json.RawMessage{}
|
|
|
|
typ string
|
|
|
|
)
|
|
|
|
err = rows.Scan(&typ, &buf)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rst[typ] = buf
|
|
|
|
}
|
|
|
|
return rst, nil
|
|
|
|
}
|
|
|
|
|
2019-08-20 15:38:40 +00:00
|
|
|
func (db *Database) GetAccounts() ([]Account, error) {
|
2019-12-16 15:23:36 +00:00
|
|
|
rows, err := db.db.Query("SELECT address, wallet, chat, type, storage, pubkey, path, name, color FROM accounts ORDER BY created_at")
|
2019-08-20 15:38:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
accounts := []Account{}
|
|
|
|
pubkey := []byte{}
|
|
|
|
for rows.Next() {
|
|
|
|
acc := Account{}
|
|
|
|
err := rows.Scan(
|
|
|
|
&acc.Address, &acc.Wallet, &acc.Chat, &acc.Type, &acc.Storage,
|
|
|
|
&pubkey, &acc.Path, &acc.Name, &acc.Color)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if lth := len(pubkey); lth > 0 {
|
|
|
|
acc.PublicKey = make(hexutil.Bytes, lth)
|
|
|
|
copy(acc.PublicKey, pubkey)
|
|
|
|
}
|
|
|
|
accounts = append(accounts, acc)
|
|
|
|
}
|
|
|
|
return accounts, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (db *Database) SaveAccounts(accounts []Account) (err error) {
|
|
|
|
var (
|
|
|
|
tx *sql.Tx
|
|
|
|
insert *sql.Stmt
|
|
|
|
update *sql.Stmt
|
|
|
|
)
|
|
|
|
tx, err = db.db.Begin()
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
if err == nil {
|
|
|
|
err = tx.Commit()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
_ = tx.Rollback()
|
|
|
|
}()
|
|
|
|
// NOTE(dshulyak) replace all record values using address (primary key)
|
|
|
|
// can't use `insert or replace` because of the additional constraints (wallet and chat)
|
2019-12-16 15:23:36 +00:00
|
|
|
insert, err = tx.Prepare("INSERT OR IGNORE INTO accounts (address, created_at, updated_at) VALUES (?, datetime('now'), datetime('now'))")
|
2019-08-20 15:38:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-12-16 15:23:36 +00:00
|
|
|
update, err = tx.Prepare("UPDATE accounts SET wallet = ?, chat = ?, type = ?, storage = ?, pubkey = ?, path = ?, name = ?, color = ?, updated_at = datetime('now') WHERE address = ?")
|
2019-08-20 15:38:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for i := range accounts {
|
|
|
|
acc := &accounts[i]
|
|
|
|
_, err = insert.Exec(acc.Address)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
_, err = update.Exec(acc.Wallet, acc.Chat, acc.Type, acc.Storage, acc.PublicKey, acc.Path, acc.Name, acc.Color, acc.Address)
|
|
|
|
if err != nil {
|
|
|
|
switch err.Error() {
|
|
|
|
case uniqueChatConstraint:
|
|
|
|
err = ErrChatNotUnique
|
|
|
|
case uniqueWalletConstraint:
|
|
|
|
err = ErrWalletNotUnique
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-16 15:23:36 +00:00
|
|
|
func (db *Database) DeleteAccount(address common.Address) error {
|
|
|
|
_, err := db.db.Exec("DELETE FROM accounts WHERE address = ?", address)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2019-08-20 15:38:40 +00:00
|
|
|
func (db *Database) GetWalletAddress() (rst common.Address, err error) {
|
|
|
|
err = db.db.QueryRow("SELECT address FROM accounts WHERE wallet = 1").Scan(&rst)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (db *Database) GetChatAddress() (rst common.Address, err error) {
|
|
|
|
err = db.db.QueryRow("SELECT address FROM accounts WHERE chat = 1").Scan(&rst)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (db *Database) GetAddresses() (rst []common.Address, err error) {
|
2019-12-16 15:23:36 +00:00
|
|
|
rows, err := db.db.Query("SELECT address FROM accounts ORDER BY created_at")
|
2019-08-20 15:38:40 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
for rows.Next() {
|
|
|
|
addr := common.Address{}
|
|
|
|
err = rows.Scan(&addr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
rst = append(rst, addr)
|
|
|
|
}
|
|
|
|
return rst, nil
|
|
|
|
}
|
2019-08-29 08:06:22 +00:00
|
|
|
|
|
|
|
// AddressExists returns true if given address is stored in database.
|
|
|
|
func (db *Database) AddressExists(address common.Address) (exists bool, err error) {
|
|
|
|
err = db.db.QueryRow("SELECT EXISTS (SELECT 1 FROM accounts WHERE address = ?)", address).Scan(&exists)
|
|
|
|
return exists, err
|
|
|
|
}
|