-
Notifications
You must be signed in to change notification settings - Fork 11
/
db.go
288 lines (247 loc) · 7.76 KB
/
db.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
package punksranking
import (
"database/sql"
)
type Store struct {
Driver string
DSN string
}
var db *sql.DB
func SetupDB(configPath string) (*sql.DB, error) {
conf, err := LoadConfig(configPath)
if err != nil {
return nil, err
}
s := &Store{
Driver: conf.SQLDriver,
DSN: conf.SQLDSN,
}
db, err = s.connect()
if err != nil {
return nil, err
}
err = s.prepareSQL()
return db, err
}
func (s *Store) connect() (*sql.DB, error) {
var err error
if db, err = sql.Open(s.Driver, s.DSN); err != nil {
return nil, err
}
// do we have permission to access the table?
_, err = db.Query("SELECT `id` FROM punks LIMIT 1")
if err != nil {
return nil, err
}
return db, err
}
func Close() error {
if db != nil {
return db.Close()
}
return nil
}
var statements map[string]*sql.Stmt
func (s *Store) prepareSQL() error {
if statements == nil {
statements = make(map[string]*sql.Stmt)
}
if stmt, err := db.Prepare(
"INSERT INTO punks (`id`, `sex`, `type`, `skin`, `type_skin`, `slots`, `att1`, `att2`, `att3`, `att4`, `att5`, `att6`, `att7`, `type_rare`, `att_count`, `att1_score`, `att2_score`, `att3_score`, `att4_score`, `att5_score`, `att6_score`, `att7_score`, `min`, `avg`, `rank`, `category`) " +
"VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);"); err != nil {
return err
} else {
statements["insert"] = stmt
}
if stmt, err := db.Prepare("delete from punks;"); err != nil {
return err
} else {
statements["delete"] = stmt
}
if stmt, err := db.Prepare(
"INSERT INTO attributes (`id`, `name`, `total`) VALUES (?, ?, ?) "); err != nil {
return err
} else {
statements["insert_att"] = stmt
}
if stmt, err := db.Prepare("delete from punk_attributes;"); err != nil {
return err
} else {
statements["delete_punk_att"] = stmt
}
if stmt, err := db.Prepare("delete from attributes;"); err != nil {
return err
} else {
statements["delete_att"] = stmt
}
// insert the attributes
if stmt, err := db.Prepare(
"INSERT INTO punk_attributes (punk_id, attribute_id, score) VAlUES (?, ?, ?) "); err != nil {
return err
} else {
statements["insert_pa"] = stmt
}
if stmt, err := db.Prepare(
"select * from punks "); err != nil {
return err
} else {
statements["select_punks"] = stmt
}
// calculate the scores
if stmt, err := db.Prepare(
`update punks set skin_score = ((select total from attributes where name = skin)/100),
type_score = ((select total from attributes where name = type)/100),
skin_score = ((select total from attributes where name = skin)/100),
att1_score = ((select total from attributes where name = att1)/100),
att2_score = ((select total from attributes where name = att2)/100),
att3_score = ((select total from attributes where name = att3)/100),
att4_score = ((select total from attributes where name = att4)/100),
att5_score = ((select total from attributes where name = att5)/100),
att6_score = ((select total from attributes where name = att6)/100),
att7_score = ((select total from attributes where name = att7)/100),
att_count_score = ((select total from attributes where name = CONCAT (slots, "Att"))/100)
WHERE 1`,
); err != nil {
return err
} else {
statements["calculate"] = stmt
}
// populates the attributes table with the 0Att, 1Att, 2Att, 3Att ... 7Att attributes
// the "number of attributes" attribute is a meta-attribute
if stmt, err := db.Prepare(`insert into attributes (id, name, total)
select ROW_NUMBER() OVER (
ORDER BY slots
) + 98 as id, concat ( ROW_NUMBER() OVER (
ORDER BY slots
) -1 , 'Att' ) as name, count(*) as c
from punks group by slots order by slots;`); err != nil {
return err
} else {
statements["insert_count_att"] = stmt
}
// todo: instead of type, use skin?
// populate the punk_attributes table
if stmt, err := db.Prepare(
`INSERT INTO punk_attributes (punk_id, attribute_id, score)
SELECT id, (select a.id from attributes a, punks p where p.skin = a.name AND p.id = punks.id), skin_score FROM punks;`,
); err != nil {
return err
} else {
statements["insert_punk_attributes_skin"] = stmt
}
if stmt, err := db.Prepare(
`INSERT INTO punk_attributes (punk_id, attribute_id, score)
SELECT id, (select a.id from attributes a, punks p where p.type = a.name AND p.id = punks.id), type_score FROM punks;`,
); err != nil {
return err
} else {
statements["insert_punk_attributes_type"] = stmt
}
if stmt, err := db.Prepare(
`INSERT INTO punk_attributes (punk_id, attribute_id, score)
SELECT id, (select a.id from attributes a, punks p where p.att1 = a.name AND p.id = punks.id), att1_score FROM punks;`,
); err != nil {
return err
} else {
statements["insert_punk_attributes_att1"] = stmt
}
if stmt, err := db.Prepare(
`
INSERT INTO punk_attributes (punk_id, attribute_id, score)
SELECT id, (select a.id from attributes a, punks p where p.att2 = a.name AND p.id = punks.id), att2_score FROM punks;
`,
); err != nil {
return err
} else {
statements["insert_punk_attributes_att2"] = stmt
}
if stmt, err := db.Prepare(
`
INSERT INTO punk_attributes (punk_id, attribute_id, score)
SELECT id, (select a.id from attributes a, punks p where p.att3 = a.name AND p.id = punks.id), att3_score FROM punks;
`,
); err != nil {
return err
} else {
statements["insert_punk_attributes_att3"] = stmt
}
if stmt, err := db.Prepare(
`
INSERT INTO punk_attributes (punk_id, attribute_id, score)
SELECT id, (select a.id from attributes a, punks p where p.att4 = a.name AND p.id = punks.id), att4_score FROM punks;
`,
); err != nil {
return err
} else {
statements["insert_punk_attributes_att4"] = stmt
}
if stmt, err := db.Prepare(
`
INSERT INTO punk_attributes (punk_id, attribute_id, score)
SELECT id, (select a.id from attributes a, punks p where p.att5 = a.name AND p.id = punks.id), att5_score FROM punks;
`,
); err != nil {
return err
} else {
statements["insert_punk_attributes_att5"] = stmt
}
if stmt, err := db.Prepare(
`
INSERT INTO punk_attributes (punk_id, attribute_id, score)
SELECT id, (select a.id from attributes a, punks p where p.att6 = a.name AND p.id = punks.id), att6_score FROM punks;
`,
); err != nil {
return err
} else {
statements["insert_punk_attributes_att6"] = stmt
}
if stmt, err := db.Prepare(
`
INSERT INTO punk_attributes (punk_id, attribute_id, score)
SELECT id, (select a.id from attributes a, punks p where p.att7 = a.name AND p.id = punks.id), att7_score FROM punks;`,
); err != nil {
return err
} else {
statements["insert_punk_attributes_att7"] = stmt
}
if stmt, err := db.Prepare(
`INSERT INTO punk_attributes (punk_id, attribute_id, score)
SELECT id as punk_id, (select a.id from attributes a where a.name = concat (p.slots, 'Att')) as attribute_id, (select a.total/100 from attributes a where a.name = concat (p.slots, 'Att')) as total FROM punks p where 1;`,
); err != nil {
return err
} else {
statements["insert_punk_attribute_attributes"] = stmt
}
// Calculate the category scores
/*
if stmt, err := db.Prepare(
`CREATE TEMPORARY TABLE new_tbl select count(*) as total , category from punks group by category;`,
); err != nil {
return err
} else {
statements["insert_punk_cat_temp"] = stmt
}
if stmt, err := db.Prepare(
`UPDATE punks SET category_score = (select total from new_tbl where category = punks.category) / 100 ;`,
); err != nil {
return err
} else {
statements["insert_punk_cat_score"] = stmt
}
if stmt, err := db.Prepare(
`DROP TEMPORARY TABLE new_tbl;`,
); err != nil {
return err
} else {
statements["insert_punk_cat_temp_del"] = stmt
}
*/
if stmt, err := db.Prepare(
`UPDATE attributes SET layer_id = ? WHERE id =? ;`,
); err != nil {
return err
} else {
statements["update_attributes_layer"] = stmt
}
return nil
}