2014-11-29 17:42:22 -05:00
|
|
|
package storage
|
2014-11-14 20:22:50 -05:00
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path"
|
|
|
|
"path/filepath"
|
|
|
|
)
|
|
|
|
|
|
|
|
type FileStorage struct {
|
|
|
|
RootDir string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (storage FileStorage) Get(objectPath string) ([]byte, error) {
|
|
|
|
return ioutil.ReadFile(path.Join(storage.RootDir, objectPath))
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (storage FileStorage) Put(objectPath string, object []byte) error {
|
|
|
|
os.MkdirAll(filepath.Dir(path.Join(storage.RootDir, objectPath)), 0700)
|
|
|
|
return ioutil.WriteFile(path.Join(storage.RootDir, objectPath), object, 0600)
|
|
|
|
}
|