46 lines
751 B
Go
Raw Normal View History

2017-10-04 06:12:12 +00:00
package main
import (
2017-10-06 10:44:55 +00:00
"flag"
2017-10-04 06:12:12 +00:00
"fmt"
"github.com/animenotifier/arn"
"github.com/fatih/color"
)
2017-10-06 10:44:55 +00:00
// Shell parameters
var confirmed bool
// Shell flags
func init() {
flag.BoolVar(&confirmed, "confirm", false, "Confirm that you really want to execute this.")
flag.Parse()
}
2017-10-04 06:12:12 +00:00
func main() {
2017-10-06 10:44:55 +00:00
if !confirmed {
color.Green("Please run this command with -confirm option.")
return
}
color.Yellow("Resetting all inventories")
2017-10-04 06:12:12 +00:00
// Get a stream of all users
allUsers, err := arn.StreamUsers()
arn.PanicOnError(err)
// Iterate over the stream
for user := range allUsers {
fmt.Println(user.Nick)
inventory := arn.NewInventory(user.ID)
2017-10-09 13:47:40 +00:00
err = inventory.Save()
2017-10-04 06:12:12 +00:00
if err != nil {
color.Red(err.Error())
}
}
color.Green("Finished.")
}