gosuki/pathtools.go

66 lines
1.2 KiB
Go
Raw Normal View History

2017-11-17 14:18:53 +00:00
package main
import (
"errors"
2017-11-17 14:18:53 +00:00
"fmt"
"os"
"path"
"path/filepath"
2017-11-17 14:18:53 +00:00
)
func getDefaultDBPath() string {
return "./"
}
func getDBFullPath() string {
dbdir := getDefaultDBPath()
dbpath := filepath.Join(dbdir, DB_FILENAME)
return dbpath
}
func checkFileExists(file string) (bool, error) {
info, err := os.Stat(file)
if err == nil {
if info.IsDir() {
errMsg := fmt.Sprintf("'%s' is a directory", file)
return false, errors.New(errMsg)
}
return true, nil
}
if os.IsNotExist(err) {
return false, nil
}
return false, err
}
2017-11-17 14:18:53 +00:00
func checkWriteable(dir string) error {
_, err := os.Stat(dir)
if err == nil {
// dir exists, make sure we can write to it
testfile := path.Join(dir, "test")
fi, err := os.Create(testfile)
if err != nil {
if os.IsPermission(err) {
return fmt.Errorf("%s is not writeable by the current user", dir)
}
return fmt.Errorf("unexpected error while checking writeablility of repo root: %s", err)
}
fi.Close()
return os.Remove(testfile)
}
if os.IsNotExist(err) {
// dir doesnt exist, check that we can create it
return os.Mkdir(dir, 0775)
}
if os.IsPermission(err) {
return fmt.Errorf("cannot write to %s, incorrect permissions", err)
}
return err
}