-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdatabase.go
682 lines (548 loc) · 15.6 KB
/
database.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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
package main
import (
"bytes"
"database/sql"
"log"
"strings"
_ "github.com/mattn/go-sqlite3"
"github.com/w32blaster/fyzon/generator"
)
/**
* Represents a language that project may expect
*/
type ProjectLanguage struct {
CountryCode string
IsDefault bool
}
/**
* One translation in one given language for a selected term
*/
type Translation struct {
ID int
Translation string
CountryCode string
IsDefault bool
TermId int
}
/**
* Term (a key, that can have many translations on other languages)
*/
type Term struct {
ID int
Code string
Comment string
Translations []Translation
ProjectId int
HasDefault bool // whether default language has Translation for this term or not
}
type Project struct {
ID int
Name string
Terms []Term
TermsCount int
CountryCodes []string
DefaultCountryCode string
}
type Projects []Project
/*
* Tuple pair, used via a file parsing
*/
type ImportTranslation struct {
Translation string
Comment string
}
/**
* Creates new project
*/
func CreateNewProject(dbFilePath string, name string, defaultLanguage string) *Project {
var db, err = sql.Open("sqlite3", dbFilePath)
checkErr(err)
defer db.Close()
stmt, err := db.Prepare("INSERT INTO projects(name, default_country_code) values(?, ?)")
checkErr(err)
defer stmt.Close()
res, err := stmt.Exec(name, defaultLanguage)
checkErr(err)
id64, err := res.LastInsertId()
id := int(id64)
checkErr(err)
AddNewLanguage(dbFilePath, id, defaultLanguage)
return FindOneProject(dbFilePath, int(id), "")
}
/*
Get all the projects as map
*/
func GetProjects(dbFilePath string) *Projects {
// connect to a database
var db, err = sql.Open("sqlite3", dbFilePath)
if err != nil {
log.Fatal(err)
}
defer db.Close()
// collect map project_id <=> list of language codes
lRows, err := db.Query("SELECT country_code, project_id FROM project_languages")
if err != nil {
log.Fatal(err)
}
defer lRows.Close()
mapLangs := make(map[int][]string)
for lRows.Next() {
var project_id int
var country_code string
err = lRows.Scan(&country_code, &project_id)
if err != nil {
log.Fatal(err)
}
mapLangs[project_id] = append(mapLangs[project_id], country_code)
}
// make a request
rows, err := db.Query("SELECT p.id, p.name, COUNT(p.id) as cnt FROM projects AS p INNER JOIN terms AS t ON t.project_id = p.id GROUP BY p.id")
if err != nil {
log.Fatal(err)
}
defer rows.Close()
var projects Projects
for rows.Next() {
var p Project
err = rows.Scan(&p.ID, &p.Name, &p.TermsCount)
if err != nil {
log.Fatal(err)
}
p.CountryCodes = mapLangs[p.ID]
projects = append(projects, p)
}
return &projects
}
/*
* Get one project data
*
* @id - project id
* @countryCode - language terms that doesn't have any translations yet. If empty (""), then
* show all the terms.
*/
func FindOneProject(dbFilePath string, id int, countryCode string) *Project {
// connect to a database
var db, err = sql.Open("sqlite3", dbFilePath)
if err != nil {
log.Fatal(err)
}
defer db.Close()
p := Project{ID: id}
// Make a request for a project info
stmt, err := db.Query("select id, name, default_country_code from projects where id = ? limit 1", id)
if err != nil {
log.Fatal(err)
}
defer stmt.Close()
stmt.Next()
_ = stmt.Scan(&p.ID, &p.Name, &p.DefaultCountryCode)
// make a request for all the terms
var rows *sql.Rows
if countryCode == "" {
// if no untranslated lang specified, return all
sqlQuery := "select t.id, t.code, t.comment, ifnull(GROUP_CONCAT(tr.country_code), '') AS codes from terms AS t " +
"LEFT JOIN translations AS tr ON tr.term_id = t.id " +
"where t.project_id = ? GROUP BY t.code ORDER BY t.code"
rows, _ = db.Query(sqlQuery, id)
} else {
// if untranslated lang is set, show only these terms
sqlQuery := "select t.id, t.code, t.comment, ifnull(GROUP_CONCAT(tr.country_code), '') AS codes " +
"FROM terms AS t " +
"INNER JOIN project_languages AS pl ON pl.project_id = t.project_id " +
"LEFT JOIN translations AS tr ON tr.term_id = t.id AND pl.country_code = tr.country_code " +
"WHERE t.project_id = ? AND tr.id IS NULL AND pl.country_code = ? GROUP BY t.id ORDER BY code"
rows, _ = db.Query(sqlQuery, id, countryCode)
}
if err != nil {
log.Fatal(err)
}
defer rows.Close()
var arrTerms []Term
for rows.Next() {
var t Term
var codes string
err = rows.Scan(&t.ID, &t.Code, &t.Comment, &codes)
if err != nil {
log.Fatal(err)
}
t.HasDefault = isContainingDefaultLanguage(codes, p.DefaultCountryCode)
arrTerms = append(arrTerms, t)
}
// remember how many terms we have in this project
p.Terms = arrTerms
p.TermsCount = len(arrTerms)
// get all available languages for this project
projectLanguages := getAvailableLanguagesForProject(id, p.DefaultCountryCode, db)
p.CountryCodes = *asStringArray(projectLanguages)
return &p
}
/*
Find Term with all the translations
*/
func GetTerm(dbFilePath string, termId int) *Term {
// connect to a database
var db, err = sql.Open("sqlite3", dbFilePath)
if err != nil {
log.Fatal(err)
}
defer db.Close()
// find one Term
stmt, err := db.Query("select t.id, t.code, t.comment, t.project_id, p.default_country_code from terms AS t "+
"INNER JOIN projects AS p ON p.id = t.project_id "+
"where t.id = ? GROUP BY t.project_id limit 1", termId)
if err != nil {
log.Fatal(err)
}
defer stmt.Close()
stmt.Next()
var t Term
var default_country_code string
_ = stmt.Scan(&t.ID, &t.Code, &t.Comment, &t.ProjectId, &default_country_code)
// find all the translations
rows, err := db.Query("SELECT t.id, t.translation, t.country_code FROM translations AS t "+
"INNER JOIN project_languages AS pl ON pl.country_code = t.country_code "+
"WHERE t.term_id = ? GROUP BY t.country_code", termId)
if err != nil {
log.Fatal(err)
}
defer rows.Close()
var translations []Translation
existingLangs := make(map[string]bool) // store which languages we already have
for rows.Next() {
tr := Translation{TermId: termId}
err = rows.Scan(&tr.ID, &tr.Translation, &tr.CountryCode)
if err != nil {
log.Fatal(err)
}
tr.IsDefault = (default_country_code == tr.CountryCode)
translations = append(translations, tr)
existingLangs[tr.CountryCode] = true
}
// check if there are some languages missing, then add empty field
langs := getAvailableLanguagesForProject(t.ProjectId, default_country_code, db)
for _, lang := range *langs {
if !existingLangs[lang.CountryCode] {
translations = append(translations, Translation{ID: -1, IsDefault: lang.IsDefault, CountryCode: lang.CountryCode, TermId: termId})
}
}
t.Translations = translations
return &t
}
/**
* Update one translation
*/
func UpdateTranslation(dbFilePath string, value string, termId int, countryCode string) {
// connect to a database
var db, err = sql.Open("sqlite3", dbFilePath)
if err != nil {
log.Fatal(err)
}
defer db.Close()
// firstly, check whether is already exists (create or update?)
row, _ := db.Query("SELECT count(*) FROM translations WHERE term_id=? AND country_code=?", termId, countryCode)
var count int
for row.Next() {
row.Scan(&count)
}
if count > 0 {
// Update it
_, err = db.Exec("UPDATE translations SET translation=? WHERE term_id=? AND country_code=?", value, termId, countryCode)
if err != nil {
log.Fatal("Failed to update record:", err)
}
} else {
// Create new translation
_, err = db.Exec("INSERT INTO translations(translation, country_code, term_id) VALUES (?, ?, ?)", value, countryCode, termId)
if err != nil {
log.Fatal("Failed to update record:", err)
}
}
}
/**
* Add new language to given project
*/
func AddNewLanguage(dbFilePath string, projectId int, countryCode string) {
// connect to a database
var db, err = sql.Open("sqlite3", dbFilePath)
if err != nil {
log.Fatal(err)
}
defer db.Close()
if !isLanguageAlreadyExists(projectId, countryCode, db) {
_, err = db.Exec("INSERT INTO project_languages(project_id,country_code) values(?, ?)", projectId, countryCode)
if err != nil {
log.Fatal("Failed to update record:", err)
}
} else {
log.Print("This project has already this language")
}
}
/**
* Add new Term to the given project
*/
func AddNewTerm(dbFilePath string, termKey string, termDescr string, projectId int) *Term {
// connect to a database
var db, err = sql.Open("sqlite3", dbFilePath)
if err != nil {
log.Fatal(err)
}
defer db.Close()
res, err := db.Exec("INSERT INTO terms(code,comment,project_id) values(?, ?, ?)", termKey, termDescr, projectId)
if err != nil {
log.Fatal("Failed to update record:", err)
}
addedId64, _ := res.LastInsertId()
return GetTerm(dbFilePath, int(addedId64))
}
/**
* Delete one term and its translations
*/
func DeleteTerm(dbFilePath string, termId int) bool {
// connect to a database
var db, err = sql.Open("sqlite3", dbFilePath)
if err != nil {
log.Fatal(err)
return false
}
defer db.Close()
// Delete translations
_, err = db.Exec("DELETE FROM translations WHERE term_id = ?", termId)
if err != nil {
log.Fatal(err)
return false
}
// and Delete term itself
_, err = db.Exec("DELETE FROM terms WHERE id = ?", termId)
if err != nil {
log.Fatal(err)
return false
}
return true
}
/**
* Recursively delete the project
*/
func DeleteProject(dbFilePath string, projectId int) bool {
db, err := sql.Open("sqlite3", dbFilePath)
checkErr(err)
defer db.Close()
// Turning on Forgein key support (for cascading deleting)
stmt, err := db.Prepare("PRAGMA foreign_keys = ON;")
checkErr(err)
_, err = stmt.Exec()
checkErr(err)
// we expect cascade deleting of terms, project_languages and transations, please refer to constrains it the schema.sql
stmt, err = db.Prepare("DELETE FROM projects WHERE id = ?")
checkErr(err)
res, err := stmt.Exec(projectId)
checkErr(err)
affect, err := res.RowsAffected()
checkErr(err)
return affect > 0
}
/**
* Get list of available languages for a given project
*/
func getAvailableLanguagesForProject(projectId int, project_default_lang string, db *sql.DB) *[]ProjectLanguage {
rows, err := db.Query("SELECT country_code FROM project_languages WHERE project_id=?", projectId)
if err != nil {
log.Fatal(err)
}
defer rows.Close()
var langs []ProjectLanguage
for rows.Next() {
var lang ProjectLanguage
err = rows.Scan(&lang.CountryCode)
lang.IsDefault = (lang.CountryCode == project_default_lang)
if err != nil {
log.Fatal(err)
}
langs = append(langs, lang)
}
return &langs
}
/**
* Save the imported terms within a transaction.
*/
func SaveImportedTermsForProject(dbFilePath string, terms map[string]ImportTranslation, countryCode string, projectId int) error {
// connect to a database
var db, err = sql.Open("sqlite3", dbFile)
if err != nil {
log.Fatal(err)
}
defer db.Close()
project := _getPorjectById(projectId, db)
// insert languages to the project, if is not used still
_insertLanguage(dbFilePath, countryCode, project, db)
_insertAllTerms(terms, projectId, db)
_insertAllTranslations(terms, projectId, countryCode, db)
return nil
}
/**
* Insert country code if not used
*/
func _insertLanguage(dbFilePath string, countryCode string, project *Project, db *sql.DB) {
existingLangs := getAvailableLanguagesForProject(project.ID, project.DefaultCountryCode, db)
isFound := false
for _, lang := range *existingLangs {
if !isFound && lang.CountryCode == countryCode {
isFound = true
break
}
}
if !isFound {
AddNewLanguage(dbFilePath, project.ID, countryCode)
}
}
func _insertAllTerms(terms map[string]ImportTranslation, projectId int, db *sql.DB) error {
// begin transaction
tx, err := db.Begin()
if err != nil {
log.Fatal(err)
}
// prepare one common statement
stmt, err := tx.Prepare("INSERT INTO terms(project_id, code, comment) values(?, ?, ?)")
if err != nil {
log.Fatal(err)
return err
}
defer stmt.Close()
for key, value := range terms {
if termId := getTermIdFor(projectId, key, db); termId == -1 {
// insert and get fresh term
_, err = stmt.Exec(projectId, key, value.Comment)
if err != nil {
log.Fatal(err)
}
}
}
// Commit transaction
tx.Commit()
return nil
}
/**
* Insert all the translations within one transaction
*/
func _insertAllTranslations(terms map[string]ImportTranslation, projectId int, countryCode string, db *sql.DB) error {
tx, err := db.Begin()
if err != nil {
log.Fatal(err)
}
stmtTranslation, err := tx.Prepare("insert into translations(translation, country_code, term_id) values(?, ?, ?)")
if err != nil {
log.Fatal(err)
return err
}
defer stmtTranslation.Close()
// now iterate over all the items and insert all of them
for key, value := range terms {
// insert and get fresh term
if termId := getTermIdFor(projectId, key, db); termId != -1 {
// add translation for this term:
_, err = stmtTranslation.Exec(value.Translation, countryCode, termId)
if err != nil {
log.Fatal(err)
}
}
}
// Commit transaction
tx.Commit()
return nil
}
/**
* Check whether the given language already exists for the given project
*/
func isLanguageAlreadyExists(projectId int, countryCode string, db *sql.DB) bool {
row, _ := db.Query("SELECT count(*) FROM project_languages WHERE project_id=? AND country_code=?", projectId, countryCode)
var count int
for row.Next() {
row.Scan(&count)
}
return count > 0
}
/**
* Check whether this term is already exists in the given project
*/
func getTermIdFor(projectId int, termCode string, db *sql.DB) int {
row, _ := db.Query("SELECT id FROM terms WHERE project_id=? AND code=?", projectId, termCode)
termId := -1
for row.Next() {
row.Scan(&termId)
}
return termId
}
/**
* Generate the content of a file with translations
*/
func GenerateFile(projectId int, countryCode string, delimeter string, gen generator.FileGenerator) (string, error) {
// connect to a database
var db, err = sql.Open("sqlite3", dbFile)
if err != nil {
log.Fatal(err)
}
defer db.Close()
// get all the translations
lRows, err := db.Query("SELECT t.code,tr.translation,t.comment FROM terms AS t INNER JOIN translations AS tr ON tr.term_id = t.id WHERE t.project_id = ? AND tr.country_code = ? ORDER BY t.code", projectId, countryCode)
if err != nil {
log.Fatal(err)
return "", err
}
defer lRows.Close()
var buffer bytes.Buffer
gen.WriteFirstLine(&buffer)
for lRows.Next() {
var code string
var translation string
var comment string
err = lRows.Scan(&code, &translation, &comment)
if err != nil {
log.Fatal(err)
return "", err
}
gen.WriteLineTo(&buffer, &generator.Translation{
Comment: comment,
Value: translation,
Key: code,
Delimeter: delimeter,
})
}
gen.WriteLastLine(&buffer)
return buffer.String(), nil
}
/**
* Simply turns array of ProjectLanguage to array of Strings, having
*/
func asStringArray(langs *[]ProjectLanguage) *[]string {
var arrCountryCodes = make([]string, len(*langs))
for i := range *langs {
arrCountryCodes[i] = (*langs)[i].CountryCode
}
return &arrCountryCodes
}
func _getPorjectById(projectId int, db *sql.DB) *Project {
stmt, err := db.Query("select id, name, default_country_code from projects where id = ? limit 1", projectId)
if err != nil {
log.Fatal(err)
}
defer stmt.Close()
var p Project
stmt.Next()
_ = stmt.Scan(&p.ID, &p.Name, &p.DefaultCountryCode)
return &p
}
/**
* Takes the list of codes separated by comma and searches for the default code
*/
func isContainingDefaultLanguage(codes string, defaultCode string) bool {
for _, code := range strings.Split(codes, ",") {
if code == defaultCode {
return true
}
}
return false
}
func checkErr(err error) {
if err != nil {
panic(err)
}
}