-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
300 lines (234 loc) · 5.56 KB
/
main.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
package main
import (
"database/sql"
"embed"
"encoding/json"
"flag"
"fmt"
"log"
"os"
"sort"
"strconv"
"strings"
_ "github.com/mattn/go-sqlite3" // sqlite driver
)
// Alphabet is a collection of letters and their values
type Alphabet map[string]int
// Cipher definition
type Cipher struct {
Letters Alphabet `json:"letters,omitempty"`
Name string `json:"name,omitempty"`
Desc string `json:"desc,omitempty"`
CaseSensitive bool `json:"case_sensitive,omitempty"`
}
var (
ciphers = make(map[string]Cipher)
ciphername = flag.String("c", "aq36", "Cipher to use")
listFiles = flag.Bool("l", false, "List available ciphers")
viewCipher = flag.Bool("v", false, "View info about a cipher")
textQuery = flag.Bool("q", false, "Query the database with words")
numQuery = flag.Bool("n", false, "Query the database with a number")
noSave = flag.Bool("x", false, "Don't save words to the database")
cfgdir string
//go:embed ciphers
content embed.FS
)
func main() {
cfgdir, _ = os.UserConfigDir()
cfgdir += "/gomatria/"
addAlphabets()
flag.Parse()
args := flag.Args()
values := make([]int, 0)
if *listFiles {
listAlphas()
}
ciph, exist := ciphers[*ciphername]
if !exist {
fmt.Printf("Cipher \"%s\" does not exist.\n", *ciphername)
os.Exit(1)
}
if *viewCipher {
seeCipher(ciph)
}
if *numQuery {
num, errConv := strconv.ParseInt(args[0], 10, 64)
if errConv != nil {
fmt.Println("Error: The -n flag only allows numbers.")
os.Exit(1)
}
queryDB(int(num), ciph)
os.Exit(0)
}
for _, arg := range args {
if !ciph.CaseSensitive {
arg = strings.ToUpper(arg)
}
val := aqCalc(arg, ciph)
values = append(values, val)
fmt.Printf("%s = %v\n", arg, val)
if !*noSave {
saveDB(ciph, arg)
}
}
if *textQuery {
for _, num := range removeDuplicate(values) {
fmt.Println("")
queryDB(num, ciph)
}
}
}
func removeDuplicate[T comparable](sliceList []T) []T {
allKeys := make(map[T]bool)
list := []T{}
for _, item := range sliceList {
if _, value := allKeys[item]; !value {
allKeys[item] = true
list = append(list, item)
}
}
return list
}
func aqCalc(text string, ciph Cipher) (result int) {
for _, letter := range strings.Split(text, "") {
value, ok := ciph.Letters[letter]
if ok {
result += value
} else {
switch letter {
case "0":
result += 0
case "1":
result++
case "2":
result += 2
case "3":
result += 3
case "4":
result += 4
case "5":
result += 5
case "6":
result += 6
case "7":
result += 7
case "8":
result += 8
case "9":
result += 9
default:
result += value
}
}
}
return
}
func readCipher(filename string) Cipher {
contents, err := os.ReadFile(filename)
handleError(err)
var ciph Cipher
err = json.Unmarshal(contents, &ciph)
handleError(err)
return ciph
}
func addAlphabets() {
errCreate := os.Mkdir(cfgdir, os.ModePerm)
if errCreate != nil && !os.IsExist(errCreate) {
log.Fatal(errCreate)
}
basefiles, errReadBase := content.ReadDir("ciphers")
handleError(errReadBase)
for _, bfile := range basefiles {
name := bfile.Name()
jsony, _ := content.ReadFile("ciphers/" + name)
var ciph Cipher
_ = json.Unmarshal(jsony, &ciph)
ciphers[ciph.Name] = ciph
}
customfiles, errReadCustom := os.ReadDir(cfgdir)
handleError(errReadCustom)
for _, file := range customfiles {
name := file.Name()
if !file.IsDir() && strings.Contains(name, ".json") {
ciph := readCipher(cfgdir + name)
ciphers[ciph.Name] = ciph
}
}
}
func listAlphas() {
fmt.Println("Available ciphers:")
var names []string
for ciph := range ciphers {
names = append(names, ciph)
}
sort.Strings(names)
for _, name := range names {
fmt.Println(name)
}
os.Exit(0)
}
func seeCipher(ciph Cipher) {
fmt.Printf("Cipher %s:\n", ciph.Name)
fmt.Println(ciph.Desc)
fmt.Println("\nAlphabet used:")
strs := make([]string, 0)
for letter := range ciph.Letters {
strs = append(strs, letter)
}
sort.Strings(strs)
for _, letter := range strs {
fmt.Printf("%s = %v\n", letter, ciph.Letters[letter])
}
os.Exit(0)
}
func saveDB(ciph Cipher, text string) {
db, err := sql.Open("sqlite3", cfgdir+"gomatria.db")
handleError(err)
defer db.Close()
entry := text
entryval := aqCalc(text, ciph)
dbname := fmt.Sprintf("%s_%v", ciph.Name, entryval)
table := `
CREATE TABLE IF NOT EXISTS %s (
id INTEGER PRIMARY KEY AUTOINCREMENT UNIQUE,
entry VARCHAR(250) UNIQUE);`
table = fmt.Sprintf(table, dbname)
insert := "INSERT OR IGNORE INTO %s (entry) VALUES (@val);"
insert = fmt.Sprintf(insert, dbname)
_, errTable := db.Exec(table)
handleError(errTable)
_, errInsert := db.Exec(insert, sql.Named("val", entry))
handleError(errInsert)
}
func queryDB(num int, ciph Cipher) {
db, err := sql.Open("sqlite3", cfgdir+"gomatria.db")
handleError(err)
defer db.Close()
dbname := fmt.Sprintf("%s_%v", ciph.Name, num)
rows, errQuery := db.Query(fmt.Sprintf("SELECT entry FROM %s;", dbname))
if errQuery != nil {
fmt.Printf("There are no entries with value %v for cipher %s.\n", num, ciph.Name)
os.Exit(1)
}
entries := make([]string, 0)
for rows.Next() {
var entry string
errScan := rows.Scan(&entry)
handleError(errScan)
entries = append(entries, entry)
}
sort.Strings(entries)
if len(entries) == 0 {
fmt.Printf("There are no entries with value %v for cipher %s.\n", num, ciph.Name)
os.Exit(1)
}
fmt.Printf("Results for %v in cipher %s:\n", num, ciph.Name)
for _, entry := range entries {
fmt.Println("-", entry)
}
}
func handleError(err error) {
if err != nil {
log.Fatal(err)
}
}