Refactor how we create the context

This commit is contained in:
Arturo Filastò 2018-03-23 12:10:14 +01:00
parent 6ba779b156
commit 7fe1551951
6 changed files with 105 additions and 76 deletions

View File

@ -0,0 +1,44 @@
package geoip
import (
"path/filepath"
"github.com/alecthomas/kingpin"
"github.com/apex/log"
"github.com/openobservatory/gooni/internal/cli/root"
"github.com/openobservatory/gooni/utils"
)
func init() {
cmd := root.Command("geoip", "Perform a geoip lookup")
shouldUpdate := cmd.Flag("update", "Update the geoip database").Bool()
cmd.Action(func(_ *kingpin.ParseContext) error {
log.Info("geoip")
ctx, err := root.Init()
if err != nil {
return err
}
geoipPath := filepath.Join(ctx.Home, "geoip")
if *shouldUpdate {
utils.DownloadGeoIPDatabaseFiles(geoipPath)
}
loc, err := utils.GeoIPLookup(geoipPath)
if err != nil {
return err
}
log.WithFields(log.Fields{
"asn": loc.ASN,
"network_name": loc.NetworkName,
"country_code": loc.CountryCode,
"ip": loc.IP,
}).Info("Looked up your location")
return nil
})
}

View File

@ -4,7 +4,6 @@ import (
"github.com/alecthomas/kingpin" "github.com/alecthomas/kingpin"
"github.com/apex/log" "github.com/apex/log"
ooni "github.com/openobservatory/gooni" ooni "github.com/openobservatory/gooni"
"github.com/openobservatory/gooni/internal/database"
"github.com/openobservatory/gooni/internal/log/handlers/batch" "github.com/openobservatory/gooni/internal/log/handlers/batch"
"github.com/openobservatory/gooni/internal/log/handlers/cli" "github.com/openobservatory/gooni/internal/log/handlers/cli"
"github.com/prometheus/common/version" "github.com/prometheus/common/version"
@ -17,7 +16,7 @@ var Cmd = kingpin.New("ooni", "")
var Command = Cmd.Command var Command = Cmd.Command
// Init should be called by all subcommand that care to have a ooni.OONI instance // Init should be called by all subcommand that care to have a ooni.OONI instance
var Init func() (*ooni.Config, *ooni.Context, error) var Init func() (*ooni.Context, error)
func init() { func init() {
configPath := Cmd.Flag("config", "Set a custom config file path").Short('c').String() configPath := Cmd.Flag("config", "Set a custom config file path").Short('c').String()
@ -36,39 +35,21 @@ func init() {
log.Debugf("ooni version %s", version.Version) log.Debugf("ooni version %s", version.Version)
} }
Init = func() (*ooni.Config, *ooni.Context, error) { Init = func() (*ooni.Context, error) {
var config *ooni.Config
var err error var err error
if *configPath != "" { homePath, err := ooni.GetOONIHome()
log.Debugf("Reading config file from %s", *configPath)
config, err = ooni.ReadConfig(*configPath)
} else {
log.Debug("Reading default config file")
config, err = ooni.ReadDefaultConfigPaths()
}
if err != nil { if err != nil {
return nil, nil, err return nil, err
} }
dbPath, err := database.DefaultDatabasePath() ctx := ooni.NewContext(*configPath, homePath)
if err != nil {
return nil, nil, err
}
log.Debugf("Connecting to database sqlite3://%s", dbPath)
db, err := database.Connect(dbPath)
if err != nil {
return nil, nil, err
}
ctx := ooni.New(config, db)
err = ctx.Init() err = ctx.Init()
if err != nil { if err != nil {
return nil, nil, err return nil, err
} }
return config, ctx, nil return ctx, nil
} }
return nil return nil

View File

@ -21,7 +21,7 @@ func init() {
cmd.Action(func(_ *kingpin.ParseContext) error { cmd.Action(func(_ *kingpin.ParseContext) error {
log.Infof("Starting %s", *nettestGroup) log.Infof("Starting %s", *nettestGroup)
_, ctx, err := root.Init() ctx, err := root.Init()
if err != nil { if err != nil {
log.Errorf("%s", err) log.Errorf("%s", err)
return err return err
@ -33,7 +33,7 @@ func init() {
} }
log.Debugf("Running test group %s", group.Label) log.Debugf("Running test group %s", group.Label)
result, err := database.CreateResult(ctx.DB, database.Result{ result, err := database.CreateResult(ctx.DB, ctx.Home, database.Result{
Name: *nettestGroup, Name: *nettestGroup,
StartTime: time.Now().UTC(), StartTime: time.Now().UTC(),
}) })

View File

@ -1,14 +1,10 @@
package database package database
import ( import (
"path/filepath"
"github.com/apex/log" "github.com/apex/log"
"github.com/jmoiron/sqlx" "github.com/jmoiron/sqlx"
_ "github.com/mattn/go-sqlite3" // this is needed to load the sqlite3 driver _ "github.com/mattn/go-sqlite3" // this is needed to load the sqlite3 driver
ooni "github.com/openobservatory/gooni"
"github.com/openobservatory/gooni/internal/bindata" "github.com/openobservatory/gooni/internal/bindata"
"github.com/pkg/errors"
migrate "github.com/rubenv/sql-migrate" migrate "github.com/rubenv/sql-migrate"
) )
@ -41,12 +37,3 @@ func Connect(path string) (db *sqlx.DB, err error) {
} }
return return
} }
// DefaultDatabasePath for the main database
func DefaultDatabasePath() (string, error) {
home, err := ooni.GetOONIHome()
if err != nil {
return "", errors.Wrap(err, "default database path")
}
return filepath.Join(home, "db", "main.sqlite3"), nil
}

View File

@ -8,7 +8,6 @@ import (
"github.com/apex/log" "github.com/apex/log"
"github.com/jmoiron/sqlx" "github.com/jmoiron/sqlx"
ooni "github.com/openobservatory/gooni"
"github.com/pkg/errors" "github.com/pkg/errors"
) )
@ -238,11 +237,7 @@ func (r *Result) Finished(db *sqlx.DB, makeSummary ResultSummaryFunc) error {
} }
// MakeResultsPath creates and returns a directory for the result // MakeResultsPath creates and returns a directory for the result
func MakeResultsPath(r *Result) (string, error) { func MakeResultsPath(home string, r *Result) (string, error) {
home, err := ooni.GetOONIHome()
if err != nil {
return "", errors.Wrap(err, "default measurements path")
}
p := filepath.Join(home, "msmts", p := filepath.Join(home, "msmts",
fmt.Sprintf("%s-%s", r.Name, r.StartTime.Format(time.RFC3339Nano))) fmt.Sprintf("%s-%s", r.Name, r.StartTime.Format(time.RFC3339Nano)))
@ -251,7 +246,7 @@ func MakeResultsPath(r *Result) (string, error) {
if _, e := os.Stat(p); e == nil { if _, e := os.Stat(p); e == nil {
return "", errors.New("results path already exists") return "", errors.New("results path already exists")
} }
err = os.MkdirAll(p, 0700) err := os.MkdirAll(p, 0700)
if err != nil { if err != nil {
return "", err return "", err
} }
@ -260,10 +255,10 @@ func MakeResultsPath(r *Result) (string, error) {
// CreateResult writes the Result to the database a returns a pointer // CreateResult writes the Result to the database a returns a pointer
// to the Result // to the Result
func CreateResult(db *sqlx.DB, r Result) (*Result, error) { func CreateResult(db *sqlx.DB, homePath string, r Result) (*Result, error) {
log.Debugf("Creating result %v", r) log.Debugf("Creating result %v", r)
p, err := MakeResultsPath(&r) p, err := MakeResultsPath(homePath, &r)
if err != nil { if err != nil {
return nil, err return nil, err
} }

74
ooni.go
View File

@ -11,6 +11,7 @@ import (
"github.com/jmoiron/sqlx" "github.com/jmoiron/sqlx"
homedir "github.com/mitchellh/go-homedir" homedir "github.com/mitchellh/go-homedir"
"github.com/openobservatory/gooni/config" "github.com/openobservatory/gooni/config"
"github.com/openobservatory/gooni/internal/database"
"github.com/openobservatory/gooni/internal/legacy" "github.com/openobservatory/gooni/internal/legacy"
"github.com/pkg/errors" "github.com/pkg/errors"
) )
@ -34,22 +35,52 @@ func Onboarding(c *Config) error {
// Context for OONI Probe // Context for OONI Probe
type Context struct { type Context struct {
Config *Config Config *Config
DB *sqlx.DB DB *sqlx.DB
TempDir string
Home string
TempDir string
dbPath string
configPath string
} }
// Init the OONI manager // Init the OONI manager
func (c *Context) Init() error { func (c *Context) Init() error {
if err := legacy.MaybeMigrateHome(); err != nil { var err error
if err = legacy.MaybeMigrateHome(); err != nil {
return errors.Wrap(err, "migrating home") return errors.Wrap(err, "migrating home")
} }
if err = CreateHomeDirs(c.Home); err != nil {
return err
}
if c.configPath != "" {
log.Debugf("Reading config file from %s", c.configPath)
c.Config, err = ReadConfig(c.configPath)
} else {
log.Debug("Reading default config file")
c.Config, err = ReadDefaultConfigPaths(c.Home)
}
if err != nil {
return err
}
c.dbPath = filepath.Join(c.Home, "db", "main.sqlite3")
if c.Config.InformedConsent == false { if c.Config.InformedConsent == false {
if err := Onboarding(c.Config); err != nil { if err = Onboarding(c.Config); err != nil {
return errors.Wrap(err, "onboarding") return errors.Wrap(err, "onboarding")
} }
} }
log.Debugf("Connecting to database sqlite3://%s", c.dbPath)
db, err := database.Connect(c.dbPath)
if err != nil {
return err
}
c.DB = db
tempDir, err := ioutil.TempDir("", "ooni") tempDir, err := ioutil.TempDir("", "ooni")
if err != nil { if err != nil {
return errors.Wrap(err, "creating TempDir") return errors.Wrap(err, "creating TempDir")
@ -59,11 +90,12 @@ func (c *Context) Init() error {
return nil return nil
} }
// New Context instance. // NewContext instance.
func New(c *Config, d *sqlx.DB) *Context { func NewContext(configPath string, homePath string) *Context {
return &Context{ return &Context{
Config: c, Home: homePath,
DB: d, Config: &Config{},
configPath: configPath,
} }
} }
@ -155,24 +187,18 @@ func ParseConfig(b []byte) (*Config, error) {
return c, nil return c, nil
} }
//EnsureDefaultOONIHomeDir makes sure the paths to the OONI Home exist // CreateHomeDirs creates the OONI home subdirectories
func EnsureDefaultOONIHomeDir() (string, error) { func CreateHomeDirs(home string) error {
home, err := GetOONIHome() requiredDirs := []string{"db", "msmts", "geoip"}
if err != nil {
return "", err
}
requiredDirs := []string{"db", "msmts"}
for _, d := range requiredDirs { for _, d := range requiredDirs {
if _, e := os.Stat(filepath.Join(home, d)); e != nil { if _, e := os.Stat(filepath.Join(home, d)); e != nil {
err = os.MkdirAll(filepath.Join(home, d), 0700) if err := os.MkdirAll(filepath.Join(home, d), 0700); err != nil {
if err != nil { return err
return "", err
} }
} }
} }
return home, nil return nil
} }
// ReadConfig reads the configuration from the path // ReadConfig reads the configuration from the path
@ -206,11 +232,7 @@ func ReadConfig(path string) (*Config, error) {
} }
// ReadDefaultConfigPaths from common locations. // ReadDefaultConfigPaths from common locations.
func ReadDefaultConfigPaths() (*Config, error) { func ReadDefaultConfigPaths(home string) (*Config, error) {
home, err := EnsureDefaultOONIHomeDir()
if err != nil {
return nil, errors.Wrap(err, "reading default config paths")
}
var paths = []string{ var paths = []string{
filepath.Join(home, "config.json"), filepath.Join(home, "config.json"),
} }