1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
package main
import (
"flag"
"fmt"
"log"
"os"
redqdb "sinanmohd.com/redq/db"
)
func help() {
const helpString string =
`redqctl is a tool for managing redq.
Usage:
redqctl <command> [arguments]
The commands are:
create create a redq account
help show this help cruft
`
fmt.Print(helpString)
}
func create(args []string, db *redqdb.SafeDB) {
f := flag.NewFlagSet("create", flag.ExitOnError)
ac := &redqdb.Account{}
ac.Info = &redqdb.Login{}
f.StringVar(&ac.UserName, "username", "",
"The username to associate with the account")
f.StringVar(&ac.Info.FirstName, "fname", "",
"The first name to associate with the account")
f.StringVar(&ac.Info.LastName, "lname", "",
"The last name to associate with the account")
f.StringVar(&ac.PassHash, "pass", "",
"The password to associate with the account")
f.UintVar(&ac.Info.Level, "level", 0,
"The level to associate with the account")
f.Parse(args)
err := ac.CreateAccount(db)
if err != nil {
log.Fatal(err)
}
}
func main() {
args := os.Args[1:]
if len(args) == 0 {
help()
os.Exit(2)
}
db, err := redqdb.NewSafeDB()
if err != nil {
log.Fatal(err)
}
switch args[0] {
case "help":
help()
case "create":
create(args[1:], db)
default:
help()
os.Exit(2)
}
}
|