mirror of
https://github.com/filebrowser/filebrowser.git
synced 2024-06-07 23:00:43 +00:00
e278dbba65
* rename File Manager to File Browser
* rename fm to fb
Former-commit-id: 82cd461b7efa992114a6cb6a3bb7fbae53558f42 [formerly 18b0295100462d2c798177086ddc3f615c50ca71] [formerly 5927828ac67268438cc6de00fcaf9140a8620794 [formerly 7643b0c4e3
]]
Former-commit-id: 3661e0339db83f5e4e3afa9bcb1015401afb611d [formerly 50eb65db9848c8db82115913fb58399fc371d990]
Former-commit-id: 03e42a5b429a3f0a83c88799e086a4c51c5e031d
27 lines
585 B
Go
27 lines
585 B
Go
package bolt
|
|
|
|
import (
|
|
"github.com/asdine/storm"
|
|
fb "github.com/filebrowser/filebrowser"
|
|
)
|
|
|
|
// ConfigStore is a configuration store.
|
|
type ConfigStore struct {
|
|
DB *storm.DB
|
|
}
|
|
|
|
// Get gets a configuration from the database to an interface.
|
|
func (c ConfigStore) Get(name string, to interface{}) error {
|
|
err := c.DB.Get("config", name, to)
|
|
if err == storm.ErrNotFound {
|
|
return fb.ErrNotExist
|
|
}
|
|
|
|
return err
|
|
}
|
|
|
|
// Save saves a configuration from an interface to the database.
|
|
func (c ConfigStore) Save(name string, from interface{}) error {
|
|
return c.DB.Set("config", name, from)
|
|
}
|