43 lines
855 B
Go
43 lines
855 B
Go
|
package storage
|
||
|
|
||
|
import (
|
||
|
"path/filepath"
|
||
|
|
||
|
"github.com/khlieng/dispatch/Godeps/_workspace/src/github.com/mitchellh/go-homedir"
|
||
|
)
|
||
|
|
||
|
func DefaultDirectory() string {
|
||
|
home, _ := homedir.Dir()
|
||
|
return filepath.Join(home, ".dispatch")
|
||
|
}
|
||
|
|
||
|
type directory string
|
||
|
|
||
|
func (d directory) Root() string {
|
||
|
return string(d)
|
||
|
}
|
||
|
|
||
|
func (d directory) LetsEncrypt() string {
|
||
|
return filepath.Join(d.Root(), "letsencrypt")
|
||
|
}
|
||
|
|
||
|
func (d directory) Logs() string {
|
||
|
return filepath.Join(d.Root(), "logs")
|
||
|
}
|
||
|
|
||
|
func (d directory) Log(userID string) string {
|
||
|
return filepath.Join(d.Logs(), userID+".log")
|
||
|
}
|
||
|
|
||
|
func (d directory) Index(userID string) string {
|
||
|
return filepath.Join(d.Logs(), userID+".idx")
|
||
|
}
|
||
|
|
||
|
func (d directory) Config() string {
|
||
|
return filepath.Join(d.Root(), "config.toml")
|
||
|
}
|
||
|
|
||
|
func (d directory) Database() string {
|
||
|
return filepath.Join(d.Root(), "dispatch.db")
|
||
|
}
|