Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
fcc13603da | |||
305329c943 | |||
|
54338be381 | ||
b0aec79fcd | |||
1f901154b9 | |||
7a5543df99 | |||
dc87af7195 | |||
|
e1b2bfab4e | ||
|
8a508a45ee | ||
|
ab21f99955 |
5
.gitignore
vendored
5
.gitignore
vendored
@@ -22,6 +22,9 @@ _cgo_export.*
|
|||||||
|
|
||||||
_testmain.go
|
_testmain.go
|
||||||
|
|
||||||
|
# Build Directory
|
||||||
|
build
|
||||||
|
|
||||||
# Binaries
|
# Binaries
|
||||||
*.exe
|
*.exe
|
||||||
boltbrowser
|
boltbrowser
|
||||||
@@ -30,3 +33,5 @@ boltbrowser.*
|
|||||||
# Test Database
|
# Test Database
|
||||||
test.db
|
test.db
|
||||||
*.db
|
*.db
|
||||||
|
|
||||||
|
|
||||||
|
@@ -6,7 +6,7 @@ import (
|
|||||||
"os"
|
"os"
|
||||||
"strings"
|
"strings"
|
||||||
|
|
||||||
"github.com/boltdb/bolt"
|
"go.etcd.io/bbolt"
|
||||||
)
|
)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -268,8 +268,8 @@ func (bd *BoltDB) syncOpenBuckets(shadow *BoltDB) {
|
|||||||
func (bd *BoltDB) refreshDatabase() *BoltDB {
|
func (bd *BoltDB) refreshDatabase() *BoltDB {
|
||||||
// Reload the database into memBolt
|
// Reload the database into memBolt
|
||||||
memBolt = new(BoltDB)
|
memBolt = new(BoltDB)
|
||||||
db.View(func(tx *bolt.Tx) error {
|
db.View(func(tx *bbolt.Tx) error {
|
||||||
err := tx.ForEach(func(nm []byte, b *bolt.Bucket) error {
|
err := tx.ForEach(func(nm []byte, b *bbolt.Bucket) error {
|
||||||
bb, err := readBucket(b)
|
bb, err := readBucket(b)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
bb.name = string(nm)
|
bb.name = string(nm)
|
||||||
@@ -406,7 +406,7 @@ func deleteKey(path []string) error {
|
|||||||
if AppArgs.ReadOnly {
|
if AppArgs.ReadOnly {
|
||||||
return errors.New("DB is in Read-Only Mode")
|
return errors.New("DB is in Read-Only Mode")
|
||||||
}
|
}
|
||||||
err := db.Update(func(tx *bolt.Tx) error {
|
err := db.Update(func(tx *bbolt.Tx) error {
|
||||||
// len(b.path)-1 is the key we need to delete,
|
// len(b.path)-1 is the key we need to delete,
|
||||||
// the rest are buckets leading to that key
|
// the rest are buckets leading to that key
|
||||||
if len(path) == 1 {
|
if len(path) == 1 {
|
||||||
@@ -442,7 +442,7 @@ func deleteKey(path []string) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
func readBucket(b *bolt.Bucket) (*BoltBucket, error) {
|
func readBucket(b *bbolt.Bucket) (*BoltBucket, error) {
|
||||||
bb := new(BoltBucket)
|
bb := new(BoltBucket)
|
||||||
if b == nil {
|
if b == nil {
|
||||||
return nil, errors.New("No bucket passed")
|
return nil, errors.New("No bucket passed")
|
||||||
@@ -471,7 +471,7 @@ func renameBucket(path []string, name string) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
var bb *BoltBucket // For caching the current bucket
|
var bb *BoltBucket // For caching the current bucket
|
||||||
err := db.View(func(tx *bolt.Tx) error {
|
err := db.View(func(tx *bbolt.Tx) error {
|
||||||
// len(b.path)-1 is the key we need to delete,
|
// len(b.path)-1 is the key we need to delete,
|
||||||
// the rest are buckets leading to that key
|
// the rest are buckets leading to that key
|
||||||
b := tx.Bucket([]byte(path[0]))
|
b := tx.Bucket([]byte(path[0]))
|
||||||
@@ -525,7 +525,7 @@ func updatePairKey(path []string, k string) error {
|
|||||||
if AppArgs.ReadOnly {
|
if AppArgs.ReadOnly {
|
||||||
return errors.New("DB is in Read-Only Mode")
|
return errors.New("DB is in Read-Only Mode")
|
||||||
}
|
}
|
||||||
err := db.Update(func(tx *bolt.Tx) error {
|
err := db.Update(func(tx *bbolt.Tx) error {
|
||||||
// len(b.path)-1 is the key for the pair we're updating,
|
// len(b.path)-1 is the key for the pair we're updating,
|
||||||
// the rest are buckets leading to that key
|
// the rest are buckets leading to that key
|
||||||
b := tx.Bucket([]byte(path[0]))
|
b := tx.Bucket([]byte(path[0]))
|
||||||
@@ -561,7 +561,7 @@ func updatePairValue(path []string, v string) error {
|
|||||||
if AppArgs.ReadOnly {
|
if AppArgs.ReadOnly {
|
||||||
return errors.New("DB is in Read-Only Mode")
|
return errors.New("DB is in Read-Only Mode")
|
||||||
}
|
}
|
||||||
err := db.Update(func(tx *bolt.Tx) error {
|
err := db.Update(func(tx *bbolt.Tx) error {
|
||||||
// len(b.GetPath())-1 is the key for the pair we're updating,
|
// len(b.GetPath())-1 is the key for the pair we're updating,
|
||||||
// the rest are buckets leading to that key
|
// the rest are buckets leading to that key
|
||||||
b := tx.Bucket([]byte(path[0]))
|
b := tx.Bucket([]byte(path[0]))
|
||||||
@@ -592,7 +592,7 @@ func insertBucket(path []string, n string) error {
|
|||||||
return errors.New("DB is in Read-Only Mode")
|
return errors.New("DB is in Read-Only Mode")
|
||||||
}
|
}
|
||||||
// Inserts a new bucket named 'n' at 'path'
|
// Inserts a new bucket named 'n' at 'path'
|
||||||
err := db.Update(func(tx *bolt.Tx) error {
|
err := db.Update(func(tx *bbolt.Tx) error {
|
||||||
if len(path) == 0 || path[0] == "" {
|
if len(path) == 0 || path[0] == "" {
|
||||||
// insert at root
|
// insert at root
|
||||||
_, err := tx.CreateBucket([]byte(n))
|
_, err := tx.CreateBucket([]byte(n))
|
||||||
@@ -632,7 +632,7 @@ func insertPair(path []string, k string, v string) error {
|
|||||||
return errors.New("DB is in Read-Only Mode")
|
return errors.New("DB is in Read-Only Mode")
|
||||||
}
|
}
|
||||||
// Insert a new pair k => v at path
|
// Insert a new pair k => v at path
|
||||||
err := db.Update(func(tx *bolt.Tx) error {
|
err := db.Update(func(tx *bbolt.Tx) error {
|
||||||
if len(path) == 0 {
|
if len(path) == 0 {
|
||||||
// We cannot insert a pair at root
|
// We cannot insert a pair at root
|
||||||
return errors.New("insertPair: Cannot insert pair at root")
|
return errors.New("insertPair: Cannot insert pair at root")
|
||||||
@@ -663,7 +663,7 @@ func insertPair(path []string, k string, v string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func exportValue(path []string, fName string) error {
|
func exportValue(path []string, fName string) error {
|
||||||
return db.View(func(tx *bolt.Tx) error {
|
return db.View(func(tx *bbolt.Tx) error {
|
||||||
// len(b.path)-1 is the key whose value we want to export
|
// len(b.path)-1 is the key whose value we want to export
|
||||||
// the rest are buckets leading to that key
|
// the rest are buckets leading to that key
|
||||||
b := tx.Bucket([]byte(path[0]))
|
b := tx.Bucket([]byte(path[0]))
|
||||||
@@ -682,14 +682,14 @@ func exportValue(path []string, fName string) error {
|
|||||||
}
|
}
|
||||||
bk := []byte(path[len(path)-1])
|
bk := []byte(path[len(path)-1])
|
||||||
v := b.Get(bk)
|
v := b.Get(bk)
|
||||||
return writeToFile(fName, string(v)+"\n", os.O_CREATE|os.O_WRONLY|os.O_TRUNC)
|
return writeToFile(fName, string(v), os.O_CREATE|os.O_WRONLY|os.O_TRUNC)
|
||||||
}
|
}
|
||||||
return errors.New("exportValue: Invalid Bucket")
|
return errors.New("exportValue: Invalid Bucket")
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func exportJSON(path []string, fName string) error {
|
func exportJSON(path []string, fName string) error {
|
||||||
return db.View(func(tx *bolt.Tx) error {
|
return db.View(func(tx *bbolt.Tx) error {
|
||||||
// len(b.path)-1 is the key whose value we want to export
|
// len(b.path)-1 is the key whose value we want to export
|
||||||
// the rest are buckets leading to that key
|
// the rest are buckets leading to that key
|
||||||
b := tx.Bucket([]byte(path[0]))
|
b := tx.Bucket([]byte(path[0]))
|
||||||
@@ -719,7 +719,7 @@ func exportJSON(path []string, fName string) error {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func genJSONString(b *bolt.Bucket) string {
|
func genJSONString(b *bbolt.Bucket) string {
|
||||||
ret := "{"
|
ret := "{"
|
||||||
b.ForEach(func(k, v []byte) error {
|
b.ForEach(func(k, v []byte) error {
|
||||||
ret = fmt.Sprintf("%s\"%s\":", ret, string(k))
|
ret = fmt.Sprintf("%s\"%s\":", ret, string(k))
|
||||||
@@ -756,3 +756,36 @@ func writeToFile(fn, s string, mode int) error {
|
|||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func importValue(path []string, fName string) error {
|
||||||
|
if AppArgs.ReadOnly {
|
||||||
|
return errors.New("DB is in Read-Only Mode")
|
||||||
|
}
|
||||||
|
return db.Update(func(tx *bbolt.Tx) error {
|
||||||
|
// len(b.GetPath())-1 is the key for the pair we're updating,
|
||||||
|
// the rest are buckets leading to that key
|
||||||
|
b := tx.Bucket([]byte(path[0]))
|
||||||
|
if b == nil {
|
||||||
|
// Invalid path, try for the root bucket
|
||||||
|
b = tx.Cursor().Bucket()
|
||||||
|
}
|
||||||
|
if b != nil {
|
||||||
|
if len(path) > 0 {
|
||||||
|
for i := range path[1 : len(path)-1] {
|
||||||
|
b = b.Bucket([]byte(path[i+1]))
|
||||||
|
if b == nil {
|
||||||
|
return errors.New("updatePairValue: Invalid Path")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Now update the last key in the path
|
||||||
|
bk := []byte(path[len(path)-1])
|
||||||
|
v, err := os.ReadFile(fName)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
return b.Put(bk, v)
|
||||||
|
}
|
||||||
|
return errors.New("importValue: Invalid Bucket")
|
||||||
|
})
|
||||||
|
}
|
||||||
|
4
go.mod
4
go.mod
@@ -1,14 +1,14 @@
|
|||||||
module github.com/br0xen/boltbrowser
|
module github.com/br0xen/boltbrowser
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/boltdb/bolt v1.3.1
|
|
||||||
github.com/br0xen/termbox-util v0.0.0-20170904143325-de1d4c83380e
|
github.com/br0xen/termbox-util v0.0.0-20170904143325-de1d4c83380e
|
||||||
github.com/nsf/termbox-go v1.1.1
|
github.com/nsf/termbox-go v1.1.1
|
||||||
|
go.etcd.io/bbolt v1.3.7
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/mattn/go-runewidth v0.0.9 // indirect
|
github.com/mattn/go-runewidth v0.0.9 // indirect
|
||||||
golang.org/x/sys v0.6.0 // indirect
|
golang.org/x/sys v0.8.0 // indirect
|
||||||
)
|
)
|
||||||
|
|
||||||
go 1.20
|
go 1.20
|
||||||
|
12
go.sum
12
go.sum
@@ -1,10 +1,14 @@
|
|||||||
github.com/boltdb/bolt v1.3.1 h1:JQmyP4ZBrce+ZQu0dY660FMfatumYDLun9hBCUVIkF4=
|
|
||||||
github.com/boltdb/bolt v1.3.1/go.mod h1:clJnj/oiGkjum5o1McbSZDSLxVThjynRyGBgiAx27Ps=
|
|
||||||
github.com/br0xen/termbox-util v0.0.0-20170904143325-de1d4c83380e h1:PF4gYXcZfTbAoAk5DPZcvjmq8gyg4gpcmWdT8W+0X1c=
|
github.com/br0xen/termbox-util v0.0.0-20170904143325-de1d4c83380e h1:PF4gYXcZfTbAoAk5DPZcvjmq8gyg4gpcmWdT8W+0X1c=
|
||||||
github.com/br0xen/termbox-util v0.0.0-20170904143325-de1d4c83380e/go.mod h1:x9wJlgOj74OFTOBwXOuO8pBguW37EgYNx51Dbjkfzo4=
|
github.com/br0xen/termbox-util v0.0.0-20170904143325-de1d4c83380e/go.mod h1:x9wJlgOj74OFTOBwXOuO8pBguW37EgYNx51Dbjkfzo4=
|
||||||
|
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
|
||||||
github.com/mattn/go-runewidth v0.0.9 h1:Lm995f3rfxdpd6TSmuVCHVb/QhupuXlYr8sCI/QdE+0=
|
github.com/mattn/go-runewidth v0.0.9 h1:Lm995f3rfxdpd6TSmuVCHVb/QhupuXlYr8sCI/QdE+0=
|
||||||
github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
|
github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
|
||||||
github.com/nsf/termbox-go v1.1.1 h1:nksUPLCb73Q++DwbYUBEglYBRPZyoXJdrj5L+TkjyZY=
|
github.com/nsf/termbox-go v1.1.1 h1:nksUPLCb73Q++DwbYUBEglYBRPZyoXJdrj5L+TkjyZY=
|
||||||
github.com/nsf/termbox-go v1.1.1/go.mod h1:T0cTdVuOwf7pHQNtfhnEbzHbcNyCEcVU4YPpouCbVxo=
|
github.com/nsf/termbox-go v1.1.1/go.mod h1:T0cTdVuOwf7pHQNtfhnEbzHbcNyCEcVU4YPpouCbVxo=
|
||||||
golang.org/x/sys v0.6.0 h1:MVltZSvRTcU2ljQOhs94SXPftV6DCNnZViHeQps87pQ=
|
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
|
||||||
golang.org/x/sys v0.6.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
github.com/stretchr/testify v1.8.1 h1:w7B6lhMri9wdJUVmEZPGGhZzrYTPvgJArz7wNPgYKsk=
|
||||||
|
go.etcd.io/bbolt v1.3.7 h1:j+zJOnnEjF/kyHlDDgGnVL/AIqIJPq8UoB2GSNfkUfQ=
|
||||||
|
go.etcd.io/bbolt v1.3.7/go.mod h1:N9Mkw9X8x5fupy0IKsmuqVtoGDyxsaDlbk4Rd05IAQw=
|
||||||
|
golang.org/x/sys v0.8.0 h1:EBmGv8NaZBZTWvrbjNoL6HVt+IVy3QDQpJs7VRIw3tU=
|
||||||
|
golang.org/x/sys v0.8.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||||
|
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
|
||||||
|
8
main.go
8
main.go
@@ -7,15 +7,15 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/boltdb/bolt"
|
|
||||||
"github.com/nsf/termbox-go"
|
"github.com/nsf/termbox-go"
|
||||||
|
"go.etcd.io/bbolt"
|
||||||
)
|
)
|
||||||
|
|
||||||
var ProgramName = "boltbrowser"
|
var ProgramName = "boltbrowser"
|
||||||
var VersionNum = 2.0
|
var VersionNum = 2.0
|
||||||
|
|
||||||
var databaseFiles []string
|
var databaseFiles []string
|
||||||
var db *bolt.DB
|
var db *bbolt.DB
|
||||||
var memBolt *BoltDB
|
var memBolt *BoltDB
|
||||||
|
|
||||||
var currentFilename string
|
var currentFilename string
|
||||||
@@ -114,8 +114,8 @@ func main() {
|
|||||||
|
|
||||||
for _, databaseFile := range databaseFiles {
|
for _, databaseFile := range databaseFiles {
|
||||||
currentFilename = databaseFile
|
currentFilename = databaseFile
|
||||||
db, err = bolt.Open(databaseFile, 0600, &bolt.Options{Timeout: AppArgs.DBOpenTimeout})
|
db, err = bbolt.Open(databaseFile, 0600, &bbolt.Options{Timeout: AppArgs.DBOpenTimeout})
|
||||||
if err == bolt.ErrTimeout {
|
if err == bbolt.ErrTimeout {
|
||||||
termbox.Close()
|
termbox.Close()
|
||||||
fmt.Printf("File %s is locked. Make sure it's not used by another app and try again\n", databaseFile)
|
fmt.Printf("File %s is locked. Make sure it's not used by another app and try again\n", databaseFile)
|
||||||
os.Exit(1)
|
os.Exit(1)
|
||||||
|
@@ -1,3 +1,4 @@
|
|||||||
|
//go:build !windows
|
||||||
// +build !windows
|
// +build !windows
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
// +build windows
|
//go:build windows
|
||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
// Windows doesn't support process backgrounding like *nix.
|
// Windows doesn't support process backgrounding like *nix.
|
||||||
|
@@ -3,7 +3,7 @@ package main
|
|||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/br0xen/termbox-util"
|
termboxUtil "github.com/br0xen/termbox-util"
|
||||||
"github.com/nsf/termbox-go"
|
"github.com/nsf/termbox-go"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -111,9 +111,9 @@ func (screen *AboutScreen) drawScreen(style Style) {
|
|||||||
{"e", "edit value of pair"},
|
{"e", "edit value of pair"},
|
||||||
{"r", "rename pair/bucket"},
|
{"r", "rename pair/bucket"},
|
||||||
{"", ""},
|
{"", ""},
|
||||||
{"", ""},
|
|
||||||
{"D", "delete item"},
|
{"D", "delete item"},
|
||||||
{"x,X", "export as string/json to file"},
|
{"x,X", "export as string/json to file"},
|
||||||
|
{"i", "import file to value of pair"},
|
||||||
{"", ""},
|
{"", ""},
|
||||||
{"?", "this screen"},
|
{"?", "this screen"},
|
||||||
{"q", "quit program"},
|
{"q", "quit program"},
|
||||||
|
@@ -61,9 +61,10 @@ const (
|
|||||||
modeInsertPairVal = 70 // 0000 0100 0110
|
modeInsertPairVal = 70 // 0000 0100 0110
|
||||||
modeDelete = 256 // 0001 0000 0000
|
modeDelete = 256 // 0001 0000 0000
|
||||||
modeModToParent = 8 // 0000 0000 1000
|
modeModToParent = 8 // 0000 0000 1000
|
||||||
modeExport = 512 // 0010 0000 0000
|
modeIO = 512 // 0010 0000 0000
|
||||||
modeExportValue = 513 // 0010 0000 0001
|
modeIOExportValue = 513 // 0010 0000 0001
|
||||||
modeExportJSON = 514 // 0010 0000 0010
|
modeIOExportJSON = 514 // 0010 0000 0010
|
||||||
|
modeIOImportValue = 516 // 0010 0000 0100
|
||||||
)
|
)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -88,8 +89,8 @@ func (screen *BrowserScreen) handleKeyEvent(event termbox.Event) int {
|
|||||||
return screen.handleInsertKeyEvent(event)
|
return screen.handleInsertKeyEvent(event)
|
||||||
} else if screen.mode == modeDelete {
|
} else if screen.mode == modeDelete {
|
||||||
return screen.handleDeleteKeyEvent(event)
|
return screen.handleDeleteKeyEvent(event)
|
||||||
} else if screen.mode&modeExport == modeExport {
|
} else if screen.mode&modeIO == modeIO {
|
||||||
return screen.handleExportKeyEvent(event)
|
return screen.handleIOKeyEvent(event)
|
||||||
}
|
}
|
||||||
return BrowserScreenIndex
|
return BrowserScreenIndex
|
||||||
}
|
}
|
||||||
@@ -204,11 +205,14 @@ func (screen *BrowserScreen) handleBrowseKeyEvent(event termbox.Event) int {
|
|||||||
} else if event.Ch == 'D' {
|
} else if event.Ch == 'D' {
|
||||||
screen.startDeleteItem()
|
screen.startDeleteItem()
|
||||||
} else if event.Ch == 'x' {
|
} else if event.Ch == 'x' {
|
||||||
// Export Value
|
// Export Value to a file
|
||||||
screen.startExportValue()
|
screen.startExportValue()
|
||||||
} else if event.Ch == 'X' {
|
} else if event.Ch == 'X' {
|
||||||
// Export Key/Value (or Bucket) as JSON
|
// Export Key/Value (or Bucket) as JSON
|
||||||
screen.startExportJSON()
|
screen.startExportJSON()
|
||||||
|
} else if event.Ch == 'i' {
|
||||||
|
// Import value from a file
|
||||||
|
screen.startImportValue()
|
||||||
}
|
}
|
||||||
return BrowserScreenIndex
|
return BrowserScreenIndex
|
||||||
}
|
}
|
||||||
@@ -374,7 +378,7 @@ func (screen *BrowserScreen) handleInsertKeyEvent(event termbox.Event) int {
|
|||||||
return BrowserScreenIndex
|
return BrowserScreenIndex
|
||||||
}
|
}
|
||||||
|
|
||||||
func (screen *BrowserScreen) handleExportKeyEvent(event termbox.Event) int {
|
func (screen *BrowserScreen) handleIOKeyEvent(event termbox.Event) int {
|
||||||
if event.Key == termbox.KeyEsc {
|
if event.Key == termbox.KeyEsc {
|
||||||
screen.mode = modeBrowse
|
screen.mode = modeBrowse
|
||||||
screen.inputModal.Clear()
|
screen.inputModal.Clear()
|
||||||
@@ -383,24 +387,33 @@ func (screen *BrowserScreen) handleExportKeyEvent(event termbox.Event) int {
|
|||||||
if screen.inputModal.IsDone() {
|
if screen.inputModal.IsDone() {
|
||||||
b, p, _ := screen.db.getGenericFromPath(screen.currentPath)
|
b, p, _ := screen.db.getGenericFromPath(screen.currentPath)
|
||||||
fileName := screen.inputModal.GetValue()
|
fileName := screen.inputModal.GetValue()
|
||||||
if screen.mode&modeExportValue == modeExportValue {
|
if screen.mode&modeIOExportValue == modeIOExportValue {
|
||||||
// Exporting the value
|
// Exporting the value
|
||||||
if p != nil {
|
if p != nil {
|
||||||
if err := exportValue(screen.currentPath, fileName); err != nil {
|
if err := exportValue(screen.currentPath, fileName); err != nil {
|
||||||
//screen.setMessage("Error Exporting to file " + fileName + ".")
|
//screen.setMessage("Error exporting to file " + fileName + ".")
|
||||||
screen.setMessage(err.Error())
|
screen.setMessage(err.Error())
|
||||||
} else {
|
} else {
|
||||||
screen.setMessage("Value exported to file: " + fileName)
|
screen.setMessage("Value exported to file: " + fileName)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if screen.mode&modeExportJSON == modeExportJSON {
|
} else if screen.mode&modeIOExportJSON == modeIOExportJSON {
|
||||||
if b != nil || p != nil {
|
if b != nil || p != nil {
|
||||||
if exportJSON(screen.currentPath, fileName) != nil {
|
if exportJSON(screen.currentPath, fileName) != nil {
|
||||||
screen.setMessage("Error Exporting to file " + fileName + ".")
|
screen.setMessage("Error exporting to file " + fileName + ".")
|
||||||
} else {
|
} else {
|
||||||
screen.setMessage("Value exported to file: " + fileName)
|
screen.setMessage("Value exported to file: " + fileName)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if screen.mode&modeIOImportValue == modeIOImportValue {
|
||||||
|
if p != nil {
|
||||||
|
if err := importValue(screen.currentPath, fileName); err != nil {
|
||||||
|
screen.setMessage(err.Error())
|
||||||
|
} else {
|
||||||
|
screen.setMessage("Value imported from file: " + fileName)
|
||||||
|
screen.refreshDatabase()
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
screen.mode = modeBrowse
|
screen.mode = modeBrowse
|
||||||
screen.inputModal.Clear()
|
screen.inputModal.Clear()
|
||||||
@@ -907,7 +920,7 @@ func (screen *BrowserScreen) startExportValue() bool {
|
|||||||
mod.SetValue("")
|
mod.SetValue("")
|
||||||
mod.Show()
|
mod.Show()
|
||||||
screen.inputModal = mod
|
screen.inputModal = mod
|
||||||
screen.mode = modeExportValue
|
screen.mode = modeIOExportValue
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
screen.setMessage("Couldn't do string export on " + screen.currentPath[len(screen.currentPath)-1] + "(did you mean 'X'?)")
|
screen.setMessage("Couldn't do string export on " + screen.currentPath[len(screen.currentPath)-1] + "(did you mean 'X'?)")
|
||||||
@@ -930,12 +943,30 @@ func (screen *BrowserScreen) startExportJSON() bool {
|
|||||||
}
|
}
|
||||||
mod.Show()
|
mod.Show()
|
||||||
screen.inputModal = mod
|
screen.inputModal = mod
|
||||||
screen.mode = modeExportJSON
|
screen.mode = modeIOExportJSON
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (screen *BrowserScreen) startImportValue() bool {
|
||||||
|
_, p, e := screen.db.getGenericFromPath(screen.currentPath)
|
||||||
|
if e == nil && p != nil {
|
||||||
|
w, h := termbox.Size()
|
||||||
|
inpW, inpH := (w / 2), 6
|
||||||
|
inpX, inpY := ((w / 2) - (inpW / 2)), ((h / 2) - inpH)
|
||||||
|
mod := termboxUtil.CreateInputModal("", inpX, inpY, inpW, inpH, termbox.ColorWhite, termbox.ColorBlack)
|
||||||
|
mod.SetTitle(termboxUtil.AlignText(fmt.Sprintf("Import value of '%s' from:", p.key), inpW, termboxUtil.AlignCenter))
|
||||||
|
mod.SetValue("")
|
||||||
|
mod.Show()
|
||||||
|
screen.inputModal = mod
|
||||||
|
screen.mode = modeIOImportValue
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
screen.setMessage("Couldn't do import on " + screen.currentPath[len(screen.currentPath)-1] + ", must be a pair.")
|
||||||
|
return false
|
||||||
|
}
|
||||||
|
|
||||||
func (screen *BrowserScreen) setMessage(msg string) {
|
func (screen *BrowserScreen) setMessage(msg string) {
|
||||||
screen.message = msg
|
screen.message = msg
|
||||||
screen.messageTime = time.Now()
|
screen.messageTime = time.Now()
|
||||||
|
Reference in New Issue
Block a user