forked from GoBootcamp/avatarme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
56 lines (43 loc) · 964 Bytes
/
main.go
File metadata and controls
56 lines (43 loc) · 964 Bytes
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
package main
import (
"crypto/sha1"
"fmt"
"os"
"strings"
"gopkg.in/urfave/cli.v1"
)
func createHash(params ...string) string {
joinedParams := strings.Join(params, " ")
h := sha1.New()
h.Write([]byte(joinedParams))
byteSlice := h.Sum(nil)
return string(byteSlice)
}
func main() {
var email, ip string
app := cli.NewApp()
app.Flags = []cli.Flag{
cli.StringFlag{
Name: "email",
Value: "avatar@me.com",
Usage: "e-mail address",
Destination: &email,
},
cli.StringFlag{
Name: "ip-address, ip",
Value: "127.0.0.1",
Usage: "ip address",
Destination: &ip,
},
}
app.Action = func(c *cli.Context) error {
email := c.String("email")
fmt.Printf("received address: %s\n", email)
ip := c.String("ip-address")
fmt.Printf("received ip address: %s\n", ip)
userHash := createHash(email, ip)
fmt.Printf("generated hash: %x\n", userHash)
return nil
}
app.Run(os.Args)
}