-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.go
More file actions
113 lines (84 loc) · 1.84 KB
/
client.go
File metadata and controls
113 lines (84 loc) · 1.84 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package tuitui
import (
"fmt"
"os/user"
"path/filepath"
"io/ioutil"
"github.com/segmentio/go-prompt"
"encoding/json"
)
func NewAuthenticatedClient() (*TuituiClient, error) {
client := NewTuituiClient()
authenticated := client.Authenticate()
if authenticated {
return client, nil
}
return nil, fmt.Errorf("Could not load authenticated client")
}
func Login(client *TuituiClient) (bool, error) {
fields := map[string]string{}
for k, v := range GetAuthFields() {
message := fmt.Sprintf("Please enter your twitter %v", k)
promptValue := ""
if v {
promptValue = prompt.PasswordMasked(message)
} else {
promptValue = prompt.String(message)
}
fields[k] = promptValue
}
err := Save(fields)
if err != nil {
return false, err
}
authenticated := client.Authenticate()
if authenticated {
return true, nil
}
return false, fmt.Errorf("Could not login")
}
func Load() (map[string]string, error) {
fileLocation := getFileLocation()
var c = map[string]string{}
file, err := ioutil.ReadFile(fileLocation)
if err != nil {
return nil, err
}
err = json.Unmarshal(file, &c)
if err != nil {
return nil, err
}
return c, nil
}
// Save : saves the configuration to a file
func Save(values map[string]string) error {
fileLocation := getFileLocation()
loginDetails, err := json.Marshal(values)
if err != nil {
return err
}
err = ioutil.WriteFile(fileLocation, loginDetails, 0644)
if err != nil {
return err
}
return nil
}
func getFileLocation() string {
dir := getUserHomeOrDefault()
return filepath.Join(dir, ".tuitui.json")
}
func getUserHomeOrDefault() string {
usr, err := user.Current()
if err != nil {
return "./"
}
return usr.HomeDir
}
func GetAuthFields() map[string]bool {
return map[string]bool{
"consumerKey": true,
"consumerSecret": true,
"accessToken": true,
"accessSecret": true,
}
}