ensure presence of home and home/db dir's during creation of the default config file
This commit is contained in:
parent
7e9a4fc3b7
commit
90edffb1d7
|
@ -1,7 +1,6 @@
|
||||||
package database
|
package database
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"os"
|
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
|
|
||||||
"github.com/apex/log"
|
"github.com/apex/log"
|
||||||
|
@ -31,18 +30,6 @@ func RunMigrations(db *sqlx.DB) error {
|
||||||
|
|
||||||
// Connect to the database
|
// Connect to the database
|
||||||
func Connect(path string) (db *sqlx.DB, err error) {
|
func Connect(path string) (db *sqlx.DB, err error) {
|
||||||
home, err := ooni.GetOONIHome()
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
|
|
||||||
if _, e := os.Stat(filepath.Join(home, "db")); e != nil {
|
|
||||||
err = os.MkdirAll(filepath.Join(home, "db"), 0700)
|
|
||||||
if err != nil {
|
|
||||||
return
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
db, err = sqlx.Connect("sqlite3", path)
|
db, err = sqlx.Connect("sqlite3", path)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return
|
return
|
||||||
|
|
8
ooni.go
8
ooni.go
|
@ -118,6 +118,14 @@ func (c *Config) Default() error {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if _, e := os.Stat(filepath.Join(home, "db")); e != nil {
|
||||||
|
err = os.MkdirAll(filepath.Join(home, "db"), 0700)
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
c.path = filepath.Join(home, "config.json")
|
c.path = filepath.Join(home, "config.json")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user