2019-05-24 22:03:06 +00:00
|
|
|
package storage
|
2015-07-06 20:08:27 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
2019-05-24 22:03:06 +00:00
|
|
|
"net/url"
|
2015-07-06 20:08:27 +00:00
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
|
2019-05-24 22:03:06 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2015-07-06 20:08:27 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// FileStorage is a storage adapter storing the data into single local files
|
|
|
|
type FileStorage struct {
|
2019-05-24 22:03:06 +00:00
|
|
|
storagePath string
|
2015-07-06 20:08:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewFileStorage instanciates a new FileStorage
|
2019-05-24 22:03:06 +00:00
|
|
|
func NewFileStorage(uri *url.URL) *FileStorage {
|
2015-07-06 20:08:27 +00:00
|
|
|
// Create directory if not exists
|
2019-05-24 22:03:06 +00:00
|
|
|
if _, err := os.Stat(uri.Path); os.IsNotExist(err) {
|
|
|
|
if err := os.MkdirAll(uri.Path, 0700); err != nil {
|
|
|
|
log.WithError(err).Fatal("Could not create storage directory")
|
2015-07-06 20:08:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return &FileStorage{
|
2019-05-24 22:03:06 +00:00
|
|
|
storagePath: uri.Path,
|
2015-07-06 20:08:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Put writes the given data to FS
|
|
|
|
func (f *FileStorage) Put(dashboardID string, data []byte) error {
|
|
|
|
err := ioutil.WriteFile(f.getFilePath(dashboardID), data, 0600)
|
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get loads the data for the given dashboard from FS
|
|
|
|
func (f *FileStorage) Get(dashboardID string) ([]byte, error) {
|
|
|
|
data, err := ioutil.ReadFile(f.getFilePath(dashboardID))
|
|
|
|
if err != nil {
|
|
|
|
return nil, DashboardNotFoundError{dashboardID}
|
|
|
|
}
|
|
|
|
|
|
|
|
return data, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Delete deletes the given dashboard from FS
|
|
|
|
func (f *FileStorage) Delete(dashboardID string) error {
|
|
|
|
if exists, err := f.Exists(dashboardID); err != nil || !exists {
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return DashboardNotFoundError{dashboardID}
|
|
|
|
}
|
|
|
|
|
|
|
|
return os.Remove(f.getFilePath(dashboardID))
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exists checks for the existence of the given dashboard
|
|
|
|
func (f *FileStorage) Exists(dashboardID string) (bool, error) {
|
|
|
|
if _, err := os.Stat(f.getFilePath(dashboardID)); err != nil {
|
|
|
|
if os.IsNotExist(err) {
|
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *FileStorage) getFilePath(dashboardID string) string {
|
2019-05-24 22:03:06 +00:00
|
|
|
return path.Join(f.storagePath, dashboardID+".txt")
|
2015-07-06 20:08:27 +00:00
|
|
|
}
|