261 lines
5.5 KiB
Go
261 lines
5.5 KiB
Go
package main
|
|
|
|
/*
|
|
#include <stddef.h>
|
|
#include <stdbool.h>
|
|
extern bool StatusServiceSignalEvent(const char *jsonEvent);
|
|
*/
|
|
import "C"
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/ethereum/go-ethereum/whisper"
|
|
"github.com/status-im/status-go/geth"
|
|
"github.com/status-im/status-go/jail"
|
|
)
|
|
|
|
// export TriggerTestSignal
|
|
func TriggerTestSignal() {
|
|
C.StatusServiceSignalEvent(C.CString(`{"answer": 42}`))
|
|
}
|
|
|
|
//export CreateAccount
|
|
func CreateAccount(password *C.char) *C.char {
|
|
// This is equivalent to creating an account from the command line,
|
|
// just modified to handle the function arg passing
|
|
address, pubKey, mnemonic, err := geth.CreateAccount(C.GoString(password))
|
|
|
|
errString := ""
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
errString = err.Error()
|
|
}
|
|
|
|
out := geth.AccountInfo{
|
|
Address: address,
|
|
PubKey: pubKey,
|
|
Mnemonic: mnemonic,
|
|
Error: errString,
|
|
}
|
|
outBytes, _ := json.Marshal(&out)
|
|
|
|
return C.CString(string(outBytes))
|
|
}
|
|
|
|
//export CreateChildAccount
|
|
func CreateChildAccount(parentAddress, password *C.char) *C.char {
|
|
|
|
address, pubKey, err := geth.CreateChildAccount(C.GoString(parentAddress), C.GoString(password))
|
|
|
|
errString := ""
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
errString = err.Error()
|
|
}
|
|
|
|
out := geth.AccountInfo{
|
|
Address: address,
|
|
PubKey: pubKey,
|
|
Error: errString,
|
|
}
|
|
outBytes, _ := json.Marshal(&out)
|
|
|
|
return C.CString(string(outBytes))
|
|
}
|
|
|
|
//export RecoverAccount
|
|
func RecoverAccount(password, mnemonic *C.char) *C.char {
|
|
|
|
address, pubKey, err := geth.RecoverAccount(C.GoString(password), C.GoString(mnemonic))
|
|
|
|
errString := ""
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
errString = err.Error()
|
|
}
|
|
|
|
out := geth.AccountInfo{
|
|
Address: address,
|
|
PubKey: pubKey,
|
|
Mnemonic: C.GoString(mnemonic),
|
|
Error: errString,
|
|
}
|
|
outBytes, _ := json.Marshal(&out)
|
|
|
|
return C.CString(string(outBytes))
|
|
}
|
|
|
|
//export Login
|
|
func Login(address, password *C.char) *C.char {
|
|
// loads a key file (for a given address), tries to decrypt it using the password, to verify ownership
|
|
// if verified, purges all the previous identities from Whisper, and injects verified key as shh identity
|
|
err := geth.SelectAccount(C.GoString(address), C.GoString(password))
|
|
|
|
errString := ""
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
errString = err.Error()
|
|
}
|
|
|
|
out := geth.JSONError{
|
|
Error: errString,
|
|
}
|
|
outBytes, _ := json.Marshal(&out)
|
|
|
|
return C.CString(string(outBytes))
|
|
}
|
|
|
|
//export Logout
|
|
func Logout() *C.char {
|
|
|
|
// This is equivalent to clearing whisper identities
|
|
err := geth.Logout()
|
|
|
|
errString := ""
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
errString = err.Error()
|
|
}
|
|
|
|
out := geth.JSONError{
|
|
Error: errString,
|
|
}
|
|
outBytes, _ := json.Marshal(&out)
|
|
|
|
return C.CString(string(outBytes))
|
|
}
|
|
|
|
//export UnlockAccount
|
|
func UnlockAccount(address, password *C.char, seconds int) *C.char {
|
|
|
|
// This is equivalent to unlocking an account from the command line,
|
|
// just modified to unlock the account for the currently running geth node
|
|
// based on the provided arguments
|
|
err := geth.UnlockAccount(C.GoString(address), C.GoString(password), seconds)
|
|
|
|
errString := ""
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
errString = err.Error()
|
|
}
|
|
|
|
out := geth.JSONError{
|
|
Error: errString,
|
|
}
|
|
outBytes, _ := json.Marshal(&out)
|
|
|
|
return C.CString(string(outBytes))
|
|
}
|
|
|
|
//export CompleteTransaction
|
|
func CompleteTransaction(id, password *C.char) *C.char {
|
|
txHash, err := geth.CompleteTransaction(C.GoString(id), C.GoString(password))
|
|
|
|
errString := ""
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
errString = err.Error()
|
|
}
|
|
|
|
out := geth.CompleteTransactionResult{
|
|
Hash: txHash.Hex(),
|
|
Error: errString,
|
|
}
|
|
outBytes, _ := json.Marshal(&out)
|
|
|
|
return C.CString(string(outBytes))
|
|
}
|
|
|
|
//export StartNode
|
|
func StartNode(datadir *C.char) *C.char {
|
|
// This starts a geth node with the given datadir
|
|
err := geth.CreateAndRunNode(C.GoString(datadir), geth.RPCPort)
|
|
|
|
errString := ""
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
errString = err.Error()
|
|
}
|
|
|
|
out := geth.JSONError{
|
|
Error: errString,
|
|
}
|
|
outBytes, _ := json.Marshal(&out)
|
|
|
|
return C.CString(string(outBytes))
|
|
}
|
|
|
|
//export InitJail
|
|
func InitJail(js *C.char) {
|
|
jail.Init(C.GoString(js))
|
|
}
|
|
|
|
//export Parse
|
|
func Parse(chatId *C.char, js *C.char) *C.char {
|
|
res := jail.GetInstance().Parse(C.GoString(chatId), C.GoString(js))
|
|
return C.CString(res)
|
|
}
|
|
|
|
//export Call
|
|
func Call(chatId *C.char, path *C.char, params *C.char) *C.char {
|
|
res := jail.GetInstance().Call(C.GoString(chatId), C.GoString(path), C.GoString(params))
|
|
return C.CString(res)
|
|
}
|
|
|
|
//export AddPeer
|
|
func AddPeer(url *C.char) *C.char {
|
|
success, err := geth.GetNodeManager().AddPeer(C.GoString(url))
|
|
errString := ""
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
errString = err.Error()
|
|
}
|
|
|
|
out := geth.AddPeerResult{
|
|
Success: success,
|
|
Error: errString,
|
|
}
|
|
outBytes, _ := json.Marshal(&out)
|
|
|
|
return C.CString(string(outBytes))
|
|
}
|
|
|
|
//export AddWhisperFilter
|
|
func AddWhisperFilter(filterJson *C.char) *C.char {
|
|
|
|
var id int
|
|
var filter whisper.NewFilterArgs
|
|
|
|
err := json.Unmarshal([]byte(C.GoString(filterJson)), &filter)
|
|
if err == nil {
|
|
id = geth.AddWhisperFilter(filter)
|
|
}
|
|
|
|
errString := ""
|
|
if err != nil {
|
|
fmt.Fprintln(os.Stderr, err)
|
|
errString = err.Error()
|
|
}
|
|
|
|
out := geth.AddWhisperFilterResult{
|
|
Id: id,
|
|
Error: errString,
|
|
}
|
|
outBytes, _ := json.Marshal(&out)
|
|
|
|
return C.CString(string(outBytes))
|
|
|
|
}
|
|
|
|
//export RemoveWhisperFilter
|
|
func RemoveWhisperFilter(idFilter int) {
|
|
geth.RemoveWhisperFilter(idFilter)
|
|
}
|
|
|
|
//export ClearWhisperFilters
|
|
func ClearWhisperFilters() {
|
|
geth.ClearWhisperFilters()
|
|
}
|