mirror of
https://github.com/Luzifer/mondash.git
synced 2024-11-10 00:20:02 +00:00
47 lines
1.2 KiB
Go
47 lines
1.2 KiB
Go
package storage // import "github.com/Luzifer/mondash/storage"
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/Luzifer/mondash/config"
|
|
)
|
|
|
|
// Storage is an interface to have all storage systems compatible to each other
|
|
type Storage interface {
|
|
Put(dashboardID string, data []byte) error
|
|
Get(dashboardID string) ([]byte, error)
|
|
Delete(dashboardID string) error
|
|
Exists(dashboardID string) (bool, error)
|
|
}
|
|
|
|
// AdapterNotFoundError is a named error for more simple determination which
|
|
// type of error is thrown
|
|
type AdapterNotFoundError struct {
|
|
Name string
|
|
}
|
|
|
|
func (e AdapterNotFoundError) Error() string {
|
|
return fmt.Sprintf("Storage '%s' not found.", e.Name)
|
|
}
|
|
|
|
// DashboardNotFoundError signalizes the requested dashboard could not be found
|
|
type DashboardNotFoundError struct {
|
|
DashboardID string
|
|
}
|
|
|
|
func (e DashboardNotFoundError) Error() string {
|
|
return fmt.Sprintf("Dashboard with ID '%s' was not found.", e.DashboardID)
|
|
}
|
|
|
|
// GetStorage acts as a storage factory providing the storage named by input
|
|
// name parameter
|
|
func GetStorage(cfg *config.Config) (Storage, error) {
|
|
switch cfg.Storage {
|
|
case "s3":
|
|
return NewS3Storage(cfg), nil
|
|
case "file":
|
|
return NewFileStorage(cfg), nil
|
|
}
|
|
|
|
return nil, AdapterNotFoundError{cfg.Storage}
|
|
}
|