-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcortexForge.go
218 lines (183 loc) · 4.7 KB
/
cortexForge.go
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"os"
"os/exec"
"runtime"
"strings"
)
type UsernameData struct {
Username string `json:"username"`
}
type UsernameResponse struct {
Data UsernameData `json:"data"`
}
type PuzzleData struct {
Puzzle string `json:"puzzle"`
Username string `json:"username,omitempty"`
Achievement string `json:"achievement,omitempty"`
Completed bool `json:"completed"`
}
type PuzzleResponse struct {
Data PuzzleData `json:"data"`
}
type AnswerRequest struct {
Username string `json:"username"`
Answer string `json:"answer"`
}
const (
apiToken = "redacted"
usernameAPI = "https://pointlesscode.dev/redacted"
questionAPI = "https://pointlesscode.dev/redacted"
submitAnswerAPI = "https://pointlesscode.dev/redacted"
)
var (
envUsername = os.Getenv("username")
username string
puzzle string
achievement string
completed = false
)
func main() {
initializeUsername()
getPuzzle(username)
for {
displayGameStatus()
if completed == true {
endGame()
} else {
fmt.Printf("Puzzle: %s\n\n", puzzle)
answer := getUserInput("Your Answer: ")
submitAnswer(username, answer)
}
}
}
func initializeUsername() {
if envUsername != "" {
username = envUsername
newUsername, err := getPuzzle(username)
if err != nil {
username = newUsername
}
} else {
username = getUsername()
}
}
func displayGameStatus() {
clearTerminal()
dashCounter := max(len("New Achievement Unlocked: "+achievement), 44)
fmt.Println(".less X CortexForge")
fmt.Println(strings.Repeat("-", dashCounter) + "\n")
fmt.Println("CTRL + C at any time to quit.\n")
fmt.Printf("Your username: %s\n\n", username)
if achievement != "" {
fmt.Println(strings.Repeat("-", dashCounter))
fmt.Println("New Achievement Unlocked: " + achievement)
fmt.Println(strings.Repeat("-", dashCounter) + "\n")
} else {
fmt.Println(strings.Repeat("-", dashCounter) + "\n")
}
}
func endGame() {
fmt.Println("Well done sherlock!\n")
fmt.Println("Go and check your achievements at:")
fmt.Printf("https://pointlesscode.dev/cortex-forge/achievements/%s\n\n", username)
waitForExit()
}
func waitForExit() {
fmt.Println("Press Enter to exit...")
getUserInput("")
os.Exit(0)
}
func getUserInput(prompt string) string {
var input string
fmt.Print(prompt)
fmt.Scanln(&input)
return input
}
func clearTerminal() {
var cmd *exec.Cmd
switch runtime.GOOS {
case "linux", "darwin":
cmd = exec.Command("clear")
case "windows":
cmd = exec.Command("cmd", "/c", "cls")
default:
fmt.Println("Unsupported platform. Cannot clear terminal.")
return
}
cmd.Stdout = os.Stdout
cmd.Run()
}
func getUsername() string {
response := &UsernameResponse{}
makeHTTPRequest("GET", usernameAPI, nil, response)
return response.Data.Username
}
func makeHTTPRequest(method, url string, body []byte, response interface{}) error {
client := &http.Client{}
req, err := http.NewRequest(method, url, bytes.NewBuffer(body))
if err != nil {
return fmt.Errorf("Error creating request: %v", err)
}
req.Header.Set("Authorization", "Bearer "+apiToken)
req.Header.Set("Content-Type", "application/json")
resp, err := client.Do(req)
if err != nil {
return fmt.Errorf("Error making request: %v", err)
}
defer resp.Body.Close()
bodyBytes, err := ioutil.ReadAll(resp.Body)
if err != nil {
return fmt.Errorf("Error reading response body: %v", err)
}
if err := json.Unmarshal(bodyBytes, response); err != nil {
return fmt.Errorf("Error unmarshalling response: %v", err)
}
if resp.StatusCode == http.StatusNotFound {
return fmt.Errorf("resource not found (404)")
}
return nil
}
func getPuzzle(username string) (string, error) {
reqBody, _ := json.Marshal(map[string]string{"username": username})
response := &PuzzleResponse{}
err := makeHTTPRequest("POST", questionAPI, reqBody, response)
if err != nil {
if response.Data.Username != "" {
username = response.Data.Username
return username, fmt.Errorf("404")
}
return "", fmt.Errorf("Error making request: %v", err)
}
puzzle = response.Data.Puzzle
completed = response.Data.Completed
return "completed", nil
}
func submitAnswer(username, answer string) error {
reqBody, err := json.Marshal(AnswerRequest{Username: username, Answer: answer})
if err != nil {
return fmt.Errorf("error marshalling request body: %v", err)
}
response := &PuzzleResponse{}
err = makeHTTPRequest("POST", submitAnswerAPI, reqBody, response)
if err != nil {
return fmt.Errorf("error submitting answer: %v", err)
}
puzzle = response.Data.Puzzle
completed = response.Data.Completed
if response.Data.Achievement != "" {
achievement = response.Data.Achievement
}
return nil
}
func max(a, b int) int {
if a > b {
return a
}
return b
}