mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 21:39:40 +02:00
* bootstrap encryption key * secret key message change in cli and secret key file content trimmed * Migrate encryption code to latest version * pull in newer code * tidying up * working data encryption layer * fix tests * remove stray comment * fix a few minor issues and improve the comments * split out databasefilename with param to two methods to be more obvious * DB encryption integration (#6374) * json methods moved under DBConnection * store encryption fixed * cleaned * review comments addressed * newstore value fixed * backup test updated * logrus format config updated * Fix for newStore Co-authored-by: Matt Hook <hookenz@gmail.com> * Minor improvements * Improve the export code. Add missing webhook for import * rename HelmUserRepositorys to HelmUserRepositories * fix logging messages * when starting portainer with a key (first use) http is disabled by default. But when starting fresh without a key, http is enabled? * Fix bug for default settings on new installs Co-authored-by: Prabhat Khera <prabhat.khera@portainer.io> Co-authored-by: Prabhat Khera <91852476+prabhat-org@users.noreply.github.com>
36 lines
1.3 KiB
Go
36 lines
1.3 KiB
Go
package portainer
|
|
|
|
import (
|
|
"io"
|
|
)
|
|
|
|
type Connection interface {
|
|
Open() error
|
|
Close() error
|
|
|
|
// write the db contents to filename as json (the schema needs defining)
|
|
ExportRaw(filename string) error
|
|
|
|
// TODO: this one is very database specific atm
|
|
BackupTo(w io.Writer) error
|
|
GetDatabaseFileName() string
|
|
GetDatabaseFilePath() string
|
|
GetStorePath() string
|
|
|
|
IsEncryptedStore() bool
|
|
NeedsEncryptionMigration() bool
|
|
SetEncrypted(encrypted bool)
|
|
|
|
SetServiceName(bucketName string) error
|
|
GetObject(bucketName string, key []byte, object interface{}) error
|
|
UpdateObject(bucketName string, key []byte, object interface{}) error
|
|
DeleteObject(bucketName string, key []byte) error
|
|
DeleteAllObjects(bucketName string, matching func(o interface{}) (id int, ok bool)) error
|
|
GetNextIdentifier(bucketName string) int
|
|
CreateObject(bucketName string, fn func(uint64) (int, interface{})) error
|
|
CreateObjectWithId(bucketName string, id int, obj interface{}) error
|
|
CreateObjectWithSetSequence(bucketName string, id int, obj interface{}) error
|
|
GetAll(bucketName string, obj interface{}, append func(o interface{}) (interface{}, error)) error
|
|
GetAllWithJsoniter(bucketName string, obj interface{}, append func(o interface{}) (interface{}, error)) error
|
|
ConvertToKey(v int) []byte
|
|
}
|