1
0
mirror of https://github.com/Luzifer/mondash.git synced 2024-09-20 01:12:58 +00:00
mondash/storage/file.go

74 lines
1.7 KiB
Go
Raw Normal View History

package storage
2015-07-06 20:08:27 +00:00
import (
"io/ioutil"
"net/url"
2015-07-06 20:08:27 +00:00
"os"
"path"
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 {
storagePath string
2015-07-06 20:08:27 +00:00
}
// NewFileStorage instanciates a new FileStorage
func NewFileStorage(uri *url.URL) *FileStorage {
2015-07-06 20:08:27 +00:00
// Create directory if not exists
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{
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 {
return path.Join(f.storagePath, dashboardID+".txt")
2015-07-06 20:08:27 +00:00
}