-
Notifications
You must be signed in to change notification settings - Fork 4
/
http_handlers.go
831 lines (664 loc) · 23.3 KB
/
http_handlers.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
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
package main
import (
"bytes"
"compress/gzip"
"context"
"errors"
"fmt"
"io"
"io/ioutil"
"net/http"
"net/url"
"os"
"path"
"path/filepath"
"time"
"github.com/labstack/echo/v4"
"github.com/varnamproject/govarnam/govarnamgo"
)
var errCacheSkipped = errors.New("cache skipped")
// Context which gets passed into the groupcache fill function
// Data will be set if the cache returns CacheSkipped
type varnamCacheContext struct {
Data []byte
context.Context
}
type standardResponse struct {
Success bool `json:"success"`
Error string `json:"error"`
At string `json:"at"`
}
func newStandardResponse() standardResponse {
return standardResponse{Success: true, At: time.Now().UTC().String()}
}
type transliterationResponse struct {
standardResponse
Result []string `json:"result"`
Input string `json:"input"`
}
type suggestionResponse struct {
Word string `json:"word"`
Weight int `json:"weight"`
LearnedOn int `json:"learned_on"`
}
type advancedTransliterationResponse struct {
standardResponse
Input string `json:"input"`
ExactWords []suggestionResponse `json:"exact_words"`
ExactMatches []suggestionResponse `json:"exact_matches"`
DictionarySuggestions []suggestionResponse `json:"dictionary_suggestions"`
PatternDictionarySuggestions []suggestionResponse `json:"pattern_dictionary_suggestions"`
TokenizerSuggestions []suggestionResponse `json:"tokenizer_suggestions"`
GreedyTokenized []suggestionResponse `json:"greedy_tokenized"`
}
type metaResponse struct {
// Result *libvarnam.CorpusDetails `json:"result"`
standardResponse
}
type downloadResponse struct {
Count int `json:"count"`
Words []*word `json:"words"`
standardResponse
}
// Args to read.
type args struct {
LangCode string `json:"lang"`
Text string `json:"text"`
}
//TrainArgs read the incoming data
type trainArgs struct {
Pattern string `json:"pattern"`
Word string `json:"word"`
}
//TrainBulkArgs read the incoming data for bulk training.
type trainBulkArgs struct {
Pattern []string `json:"pattern"`
Word string `json:"word"`
}
// packDownloadArgs is the args to request a pack download from upstream
type packDownloadArgs struct {
LangCode string `json:"lang"`
Identifier string `json:"pack"`
Page string `json:"page"`
}
func handleStatus(c echo.Context) error {
uptime := time.Since(startedAt)
resp := struct {
Version string `json:"version"`
Uptime string `json:"uptime"`
standardResponse
}{
buildVersion + "-" + buildDate,
uptime.String(),
newStandardResponse(),
}
return c.JSON(http.StatusOK, resp)
}
func handleTransliteration(c echo.Context) error {
var (
langCode = c.Param("langCode")
word = c.Param("word")
app = c.Get("app").(*App)
)
// Resolving a bug in echo
// https://github.com/labstack/echo/issues/561
var err error
word, err = url.QueryUnescape(word)
if err != nil {
app.log.Printf("error in transliterating, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error transliterating given string. message: %s", err.Error()))
}
cacheKey := fmt.Sprintf("tl-%s-%s", langCode, word)
words, err := app.cache.GetString(cacheKey)
if err != nil {
result, err := transliterate(c.Request().Context(), langCode, word)
if err != nil {
app.log.Printf("error in transliterating, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error transliterating given string. message: %s", err.Error()))
}
for _, sug := range result.([]govarnamgo.Suggestion) {
words = append(words, sug.Word)
}
_ = app.cache.SetString(cacheKey, words...)
}
return c.JSON(http.StatusOK, transliterationResponse{standardResponse: newStandardResponse(), Result: words, Input: word})
}
func handleAdvancedTransliteration(c echo.Context) error {
var (
langCode = c.Param("langCode")
word = c.Param("word")
app = c.Get("app").(*App)
)
// Resolving a bug in echo
// https://github.com/labstack/echo/issues/561
var err error
word, err = url.QueryUnescape(word)
if err != nil {
app.log.Printf("error in transliterating, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error transliterating given string. message: %s", err.Error()))
}
var response advancedTransliterationResponse
var cacheKey = fmt.Sprintf("atl-%s-%s", langCode, word)
cached, err := app.cache.Get(cacheKey)
if err == nil {
response = cached.(advancedTransliterationResponse)
} else {
result, err := transliterateAdvanced(c.Request().Context(), langCode, word)
if err != nil {
app.log.Printf("error in transliterating, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error transliterating given string. message: %s", err.Error()))
}
var varnamResult = result.(govarnamgo.TransliterationResult)
for _, sug := range varnamResult.ExactWords {
response.ExactWords = append(response.ExactWords, suggestionResponse(sug))
}
for _, sug := range varnamResult.ExactMatches {
response.ExactMatches = append(response.ExactMatches, suggestionResponse(sug))
}
for _, sug := range varnamResult.DictionarySuggestions {
response.DictionarySuggestions = append(response.DictionarySuggestions, suggestionResponse(sug))
}
for _, sug := range varnamResult.PatternDictionarySuggestions {
response.PatternDictionarySuggestions = append(response.PatternDictionarySuggestions, suggestionResponse(sug))
}
for _, sug := range varnamResult.TokenizerSuggestions {
response.TokenizerSuggestions = append(response.TokenizerSuggestions, suggestionResponse(sug))
}
for _, sug := range varnamResult.GreedyTokenized {
response.GreedyTokenized = append(response.GreedyTokenized, suggestionResponse(sug))
}
_ = app.cache.Set(cacheKey, response)
}
response.Input = word
// Don't return null for array responses
if response.ExactWords == nil {
response.ExactWords = []suggestionResponse{}
}
if response.ExactMatches == nil {
response.ExactMatches = []suggestionResponse{}
}
if response.DictionarySuggestions == nil {
response.DictionarySuggestions = []suggestionResponse{}
}
if response.PatternDictionarySuggestions == nil {
response.PatternDictionarySuggestions = []suggestionResponse{}
}
if response.TokenizerSuggestions == nil {
response.TokenizerSuggestions = []suggestionResponse{}
}
if response.GreedyTokenized == nil {
response.GreedyTokenized = []suggestionResponse{}
}
response.standardResponse = newStandardResponse()
return c.JSON(http.StatusOK, response)
}
func handleReverseTransliteration(c echo.Context) error {
var (
langCode = c.Param("langCode")
word = c.Param("word")
app = c.Get("app").(*App)
)
// Resolving a bug in echo
// https://github.com/labstack/echo/issues/561
var err error
word, err = url.QueryUnescape(word)
if err != nil {
app.log.Printf("error in reverse transliterationg, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error transliterating given string. message: %s", err.Error()))
}
// Separate namespace for reverse transliteration
cacheKey := fmt.Sprintf("rtl-%s-%s", langCode, word)
words, err := app.cache.GetString(cacheKey)
if err != nil {
result, err := reveseTransliterate(langCode, word)
if err != nil {
app.log.Printf("error in reverse transliterationg, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error transliterating given string. message: %s", err.Error()))
}
for _, sug := range result.([]govarnamgo.Suggestion) {
words = append(words, sug.Word)
}
_ = app.cache.SetString(cacheKey, words...)
}
if len(words) <= 0 {
app.log.Printf("no reverse transliteration found for lang: %s word: %s", langCode, word)
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("no transliteration found for lanugage: %s, word: %s", langCode, word))
}
return c.JSON(http.StatusOK, transliterationResponse{standardResponse: newStandardResponse(), Result: words, Input: word})
}
// func handleMetadata(c echo.Context) error {
// var (
// schemeIdentifier = c.Param("langCode")
// app = c.Get("app").(*App)
// )
// data, err := getOrCreateHandler(schemeIdentifier, func(handle *libvarnam.Varnam) (data interface{}, err error) {
// details, err := handle.GetCorpusDetails()
// if err != nil {
// return nil, err
// }
// return &metaResponse{Result: details, standardResponse: newStandardResponse()}, nil
// })
// if err != nil {
// app.log.Printf("error in getting corpus details for: %s, err: %s", schemeIdentifier, err.Error())
// return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error getting metadata. message: %s", err.Error()))
// }
// return c.JSON(http.StatusOK, data)
// }
// func handleDownload(c echo.Context) error {
// var (
// langCode = c.Param("langCode")
// start, _ = strconv.Atoi(c.Param("downloadStart"))
// app = c.Get("app").(*App)
// )
// if start < 0 {
// return echo.NewHTTPError(http.StatusBadRequest, "invalid parameter")
// }
// fillCache := func(ctx context.Context, key string, dest groupcache.Sink) error {
// // cache miss, fetch from DB
// // key is in the form <schemeIdentifier>+<downloadStart>
// parts := strings.Split(key, "+")
// schemeID := parts[0]
// downloadStart, _ := strconv.Atoi(parts[1])
// words, err := getWords(schemeID, downloadStart)
// if err != nil {
// return err
// }
// response := downloadResponse{Count: len(words), Words: words, standardResponse: newStandardResponse()}
// b, err := json.Marshal(response)
// if err != nil {
// return err
// }
// // gzipping the response so that it can be served directly
// var gb bytes.Buffer
// gWriter := gzip.NewWriter(&gb)
// defer func() { _ = gWriter.Close() }()
// _, _ = gWriter.Write(b)
// _ = gWriter.Flush()
// if len(words) < downloadPageSize {
// varnamCtx, _ := ctx.(*varnamCacheContext)
// varnamCtx.Data = gb.Bytes()
// return errCacheSkipped
// }
// _ = dest.SetBytes(gb.Bytes())
// return nil
// }
// once.Do(func() {
// // Making the groups for groupcache
// // There will be one group for each language
// for _, scheme := range schemeDetails {
// group := groupcache.GetGroup(scheme.Identifier)
// if group == nil {
// // 100MB max size for cache
// group = groupcache.NewGroup(scheme.Identifier, 100<<20, groupcache.GetterFunc(fillCache))
// }
// cacheGroups[scheme.Identifier] = group
// }
// })
// cacheGroup := cacheGroups[langCode]
// ctx := varnamCacheContext{}
// var data []byte
// if err := cacheGroup.Get(&ctx, fmt.Sprintf("%s+%d", langCode, start), groupcache.AllocatingByteSliceSink(&data)); err != nil {
// if err == errCacheSkipped {
// c.Response().Header().Set("Content-Encoding", "gzip")
// return c.Blob(http.StatusOK, "application/json; charset=utf-8", ctx.Data)
// }
// app.log.Printf("error in fetching deta from cache: %s, err: %s", langCode, err.Error())
// return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error getting metadata. message: %s", err.Error()))
// }
// c.Response().Header().Set("Content-Encoding", "gzip")
// return c.Blob(http.StatusOK, "application/json; charset=utf-8", data)
// }
func handleLanguages(c echo.Context) error {
return c.JSON(http.StatusOK, schemeDetails)
}
func handleLanguageDownload(c echo.Context) error {
var (
langCode = c.Param("langCode")
)
filepath, err := getSchemeFilePath(langCode)
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error: %s", err.Error()))
}
return c.Attachment(filepath.(string), langCode+".vst")
}
func handleSchemeInfo(c echo.Context) error {
var (
schemeID = c.Param("schemeID")
)
sd, err := getSchemeDetails(schemeID)
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, err.Error())
}
return c.JSON(http.StatusOK, sd)
}
func handleSchemeDefinitions(c echo.Context) error {
var (
schemeID = c.Param("schemeID")
// app = c.Get("app").(*App)
)
// do caching
sd, err := getSchemeDetails(schemeID)
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, err.Error())
}
result, err := getSchemeDefinitions(c.Request().Context(), sd)
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, err.Error())
}
return c.JSON(http.StatusOK, schemeDefinition{standardResponse: newStandardResponse(), Details: sd, Definitions: result})
}
func handleSchemeLetterDefinitions(c echo.Context) error {
var (
schemeID = c.Param("schemeID")
letter = c.Param("letter")
// app = c.Get("app").(*App)
)
// do caching
sd, err := getSchemeDetails(schemeID)
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, err.Error())
}
result, err := getSchemeLetterDefinitions(c.Request().Context(), sd, letter)
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, err.Error())
}
return c.JSON(http.StatusOK, schemeDefinition{standardResponse: newStandardResponse(), Details: sd, Definitions: result})
}
func handleLearn(c echo.Context) error {
var (
a args
app = c.Get("app").(*App)
)
if err := c.Bind(&a); err != nil {
app.log.Printf("error in binding request details for learn, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error getting metadata. message: %s", err.Error()))
}
ch, ok := learnChannels[a.LangCode]
if !ok {
app.log.Printf("unknown language requested to learn: %s", a.LangCode)
return echo.NewHTTPError(http.StatusBadRequest, "unable to find language")
}
go func(word string) { ch <- word }(a.Text)
return c.JSON(http.StatusOK, "success")
}
func handleLearnFileUpload(c echo.Context) error {
var (
app = c.Get("app").(*App)
langCode = c.Param("langCode")
)
// Multipart form
form, err := c.MultipartForm()
if err != nil {
app.log.Printf("failed to read form from request, language: %s, error: %s", langCode, err.Error())
return echo.NewHTTPError(http.StatusBadRequest, "request data not found")
}
files, ok := form.File["files"]
if !ok {
app.log.Printf("files not found, language: %s", langCode)
return echo.NewHTTPError(http.StatusBadRequest, "no files were uploaded")
}
if _, ok := learnChannels[langCode]; !ok {
app.log.Printf("learn file upload error: unknown language requested to learn: %s", langCode)
return echo.NewHTTPError(http.StatusBadRequest, "unable to find language to train")
}
// Copy files first
for _, file := range files {
// Source
src, err := file.Open()
if err != nil {
app.log.Printf("learn file upload error, err: %s", err.Error())
return echo.NewHTTPError(http.StatusInternalServerError, err.Error())
}
// Destination
tempDir, err := ioutil.TempDir(os.TempDir(), "varnamd")
if err != nil {
app.log.Printf("learn file upload error, err: %s", err.Error())
return echo.NewHTTPError(http.StatusInternalServerError, err.Error())
}
dst, err := os.Create(filepath.Join(tempDir, file.Filename))
if err != nil {
app.log.Printf("learn file upload error, err: %s", err.Error())
return echo.NewHTTPError(http.StatusInternalServerError, err.Error())
}
// Copy
if _, err = io.Copy(dst, src); err != nil {
app.log.Printf("learn file upload error, err: %s", err.Error())
return echo.NewHTTPError(http.StatusInternalServerError, err.Error())
}
// Explicitely closing resources.
_ = dst.Close()
_ = src.Close()
learnWordsFromFile(c, langCode, dst.Name(), true)
}
return c.JSON(http.StatusOK, "success")
}
func handleTrain(c echo.Context) error {
var (
targs trainArgs
app = c.Get("app").(*App)
langCode = c.Param("langCode")
)
c.Request().Header.Set("Content-Type", "application/json")
if err := c.Bind(&targs); err != nil {
app.log.Printf("error reading request, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error getting metadata. message: %s", err.Error()))
}
ch, ok := trainChannel[langCode]
if !ok {
app.log.Printf("unknown language requested to learn: %s", langCode)
return echo.NewHTTPError(http.StatusBadRequest, "unable to find language to train")
}
go func(args trainArgs) { ch <- args }(targs)
cacheKey := fmt.Sprintf("tl-%s-%s", langCode, targs.Pattern)
_, _ = app.cache.Delete(cacheKey)
return c.JSON(200, "Word Trained")
}
// handleTrainBulk is an endpoint for training words in the following format.
// {[
// {word, patterns: []},
// {word, patterns: []},
// {word, patterns: []},
// {word, patterns: []}
// ]}
// It will covert each bulk arg to trainArg and will send to train channel.
// Training is happened at listenForWords method.
func handleTrainBulk(c echo.Context) error {
var (
bulkArgs []trainBulkArgs
app = c.Get("app").(*App)
langCode = c.Param("langCode")
)
if err := c.Bind(&bulkArgs); err != nil {
app.log.Printf("error reading request, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error getting metadata. message: %s", err.Error()))
}
ch, ok := trainChannel[langCode]
if !ok {
app.log.Printf("unknown language requested to learn: %s", langCode)
return echo.NewHTTPError(http.StatusBadRequest, "unable to find language to train")
}
for _, v := range bulkArgs {
for _, p := range v.Pattern {
go func(args trainArgs) {
ch <- args
}(trainArgs{
Pattern: p,
Word: v.Word,
})
}
}
return c.JSON(200, "Words Trained")
}
// Delete a word
func handleDelete(c echo.Context) error {
var (
a args
app = c.Get("app").(*App)
)
c.Request().Header.Set("Content-Type", "application/json")
if err := c.Bind(&a); err != nil {
app.log.Printf("error in binding request details for delete, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error getting metadata. message: %s", err.Error()))
}
if _, err := deleteWord(a.LangCode, a.Text); err != nil {
app.log.Printf("error deleting word, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error: %s", err.Error()))
}
app.cache.Clear()
return c.JSON(http.StatusOK, "success")
}
func toggleDownloadEnabledStatus(langCode string, status bool) (interface{}, error) {
if err := varnamdConfig.setDownloadStatus(langCode, status); err != nil {
return nil, err
}
return newStandardResponse(), nil
}
func handleEnableDownload(c echo.Context) error {
var (
langCode = c.Param("langCode")
app = c.Get("app").(*App)
)
data, err := toggleDownloadEnabledStatus(langCode, true)
if err != nil {
app.log.Printf("failed to toggle download enable, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error getting metadata. message: %s", err.Error()))
}
return c.JSON(http.StatusOK, data)
}
func handleDisableDownload(c echo.Context) error {
var (
langCode = c.Param("langCode")
app = c.Get("app").(*App)
)
data, err := toggleDownloadEnabledStatus(langCode, false)
if err != nil {
app.log.Printf("failed to disable download, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error getting metadata. message: %s", err.Error()))
}
return c.JSON(http.StatusOK, data)
}
// handleIndex is the root handler that renders the Javascript frontend.
func handleIndex(c echo.Context) error {
app, _ := c.Get("app").(*App)
b, err := app.fs.Read("/index.html")
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, err.Error())
}
c.Response().Header().Set("Content-Type", "text/html")
return c.String(http.StatusOK, string(b))
}
func handlePacks(c echo.Context) error {
var (
langCode = c.Param("langCode")
app = c.Get("app").(*App)
)
if langCode != "" {
pack, err := getPacksLangInfo(langCode)
if err != nil {
statusCode := http.StatusBadRequest
if err.Error() == "No packs found" {
statusCode = http.StatusNotFound
}
app.log.Printf("error reading packs, err: %s", err.Error())
return echo.NewHTTPError(statusCode, err.Error())
}
return c.JSON(http.StatusOK, pack)
}
packs, err := getPacksInfo()
if err != nil {
app.log.Printf("error reading packs, err: %s", err.Error())
return echo.NewHTTPError(http.StatusInternalServerError, err.Error())
}
return c.JSON(http.StatusOK, packs)
}
func handlePackInfo(c echo.Context) error {
var (
langCode = c.Param("langCode")
packIdentifier = c.Param("packIdentifier")
)
pack, err := getPackInfo(langCode, packIdentifier)
if err != nil {
statusCode := http.StatusBadRequest
if err.Error() == "Pack not found" {
statusCode = http.StatusNotFound
}
return echo.NewHTTPError(statusCode, err.Error())
}
return c.JSON(http.StatusOK, pack)
}
func handlePackPageInfo(c echo.Context) error {
var (
langCode = c.Param("langCode")
packIdentifier = c.Param("packIdentifier")
packPageIdentifier = c.Param("packPageIdentifier")
)
pack, err := getPackPageInfo(langCode, packIdentifier, packPageIdentifier)
if err != nil {
statusCode := http.StatusBadRequest
if err.Error() == "Pack page not found" {
statusCode = http.StatusNotFound
}
return echo.NewHTTPError(statusCode, err.Error())
}
return c.JSON(http.StatusOK, pack)
}
func handlePacksDownload(c echo.Context) error {
var (
langCode = c.Param("langCode")
packIdentifier = c.Param("packIdentifier")
packPageIdentifier = c.Param("packPageIdentifier")
)
if _, err := getPackPageInfo(langCode, packIdentifier, packPageIdentifier); err != nil {
return echo.NewHTTPError(http.StatusBadRequest, err.Error())
}
packFilePath, err := getPackFilePath(langCode, packIdentifier, packPageIdentifier)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, err.Error())
}
packFileGzipPath := path.Join(packFilePath + ".gzip")
if !fileExists(packFileGzipPath) {
// compress into gzip
packFileBytes, err := ioutil.ReadFile(packFilePath)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, err.Error())
}
var gb bytes.Buffer
w := gzip.NewWriter(&gb)
w.Write(packFileBytes)
w.Close()
err = ioutil.WriteFile(packFileGzipPath, gb.Bytes(), 0644)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, err.Error())
}
}
return c.Attachment(packFileGzipPath, packPageIdentifier)
}
// varnamd Admin can download packs from upstream
// This is an internal function
func handlePackDownloadRequest(c echo.Context) error {
var (
args packDownloadArgs
app = c.Get("app").(*App)
err error
downloadResult packDownload
)
if err := c.Bind(&args); err != nil {
app.log.Printf("error reading request, err: %s", err.Error())
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error getting metadata. message: %s", err.Error()))
}
downloadResult, err = downloadPackFile(args.LangCode, args.Identifier, args.Page)
if err != nil {
return echo.NewHTTPError(http.StatusBadRequest, fmt.Sprintf("error downloading pack: %s", err.Error()))
}
// Learn from pack file and don't remove it
err = importLearningsFromFile(c, args.LangCode, downloadResult.FilePath, false)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, fmt.Sprintf("Error importing from '%s'\n", err.Error()))
}
// Add pack.json with the installed pack pages
err = updatePacksInfo(args.LangCode, downloadResult.Pack, downloadResult.Page)
if err != nil {
return echo.NewHTTPError(http.StatusInternalServerError, err.Error())
}
return c.JSON(http.StatusOK, "success")
}