add database restore/save
This commit is contained in:
parent
353cf2cf8a
commit
dd3e29860a
15
main.go
15
main.go
|
@ -16,7 +16,7 @@ import (
|
||||||
var defaultRSS = "https://nomad.wntrmute.net/u/kyle.rss"
|
var defaultRSS = "https://nomad.wntrmute.net/u/kyle.rss"
|
||||||
|
|
||||||
func defaultPath(file string) string {
|
func defaultPath(file string) string {
|
||||||
return filepath.Join("/perm", "nlink", file)
|
return filepath.Join("/etc", "nlink", file)
|
||||||
}
|
}
|
||||||
|
|
||||||
func fetchItems(db *nomad.DB, markOnly bool) error {
|
func fetchItems(db *nomad.DB, markOnly bool) error {
|
||||||
|
@ -48,9 +48,14 @@ func fetchItems(db *nomad.DB, markOnly bool) error {
|
||||||
}
|
}
|
||||||
|
|
||||||
tx.Commit()
|
tx.Commit()
|
||||||
|
|
||||||
|
if err := restoreDatabase(config.Get("local_database")); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
client := woodstock.NewClient(config.Get("pnut_id"), config.Get("pnut_secret"))
|
client := woodstock.NewClient(config.Get("pnut_id"), config.Get("pnut_secret"))
|
||||||
client.SetAccessToken(config.Get(""))
|
client.SetAccessToken(config.Get(""))
|
||||||
|
|
||||||
|
@ -65,6 +70,10 @@ func fetchItems(db *nomad.DB, markOnly bool) error {
|
||||||
err = db.Mark(nil, item)
|
err = db.Mark(nil, item)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := restoreDatabase(config.Get("local_database")); err != nil {
|
||||||
|
log.Err(err)
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -96,6 +105,10 @@ func main() {
|
||||||
die.If(err)
|
die.If(err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if err := restoreDatabase(config.Get("local_database")); err != nil {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
|
|
||||||
log.Debugf("loading config file %s", configFile)
|
log.Debugf("loading config file %s", configFile)
|
||||||
if err := config.LoadFile(configFile); err != nil {
|
if err := config.LoadFile(configFile); err != nil {
|
||||||
log.Fatal(err)
|
log.Fatal(err)
|
||||||
|
|
Loading…
Reference in New Issue