-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
1067 lines (924 loc) · 26.1 KB
/
Copy pathmain.go
File metadata and controls
1067 lines (924 loc) · 26.1 KB
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
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
import (
"bytes"
"context"
"database/sql"
"embed" // for embedding frontend
"encoding/base64"
"encoding/json"
"fmt"
"image"
_ "image/gif"
"image/jpeg"
"io"
"io/fs"
"log"
"net/http"
"net/url"
"os"
"os/signal"
"path/filepath"
"sort"
"strconv"
"strings"
"sync"
"syscall"
"time"
"archive/zip"
"golang.org/x/image/draw"
_ "modernc.org/sqlite"
"github.com/nwaples/rardecode"
)
//go:embed frontend/*
var frontendContent embed.FS
// Config represents application configuration
type Config struct {
Port int `json:"Port"`
AutoRefreshInterval int `json:"AutoRefreshInterval"`
LibraryPaths []string `json:"LibraryPaths"`
CacheDB string `json:"CacheDB"`
MaxThumbnailSize int `json:"MaxThumbnailSize"`
LogLevel string `json:"LogLevel"`
}
// LibraryItem represents a magazine/book entry
type LibraryItem struct {
ID int `json:"id"`
Category string `json:"category"`
Title string `json:"title"`
Path string `json:"path"`
Cover string `json:"cover"`
CoverData string `json:"coverData"`
LastMod string `json:"lastModified"`
Pages []string `json:"pages,omitempty"`
}
// Logger provides structured logging
type Logger struct {
level string
}
func (l *Logger) Info(msg string, args ...interface{}) {
log.Printf("[INFO] "+msg, args...)
}
func (l *Logger) Error(msg string, args ...interface{}) {
log.Printf("[ERROR] "+msg, args...)
}
func (l *Logger) Debug(msg string, args ...interface{}) {
if l.level == "debug" {
log.Printf("[DEBUG] "+msg, args...)
}
}
var (
config Config
db *sql.DB
logger *Logger
// Rate limiter for thumbnail generation
thumbSemaphore chan struct{}
)
// validateConfig checks if the configuration is valid
func validateConfig(cfg *Config) error {
if cfg.Port < 1 || cfg.Port > 65535 {
return fmt.Errorf("invalid port number: %d", cfg.Port)
}
if cfg.AutoRefreshInterval < 1 {
return fmt.Errorf("invalid refresh interval: %d", cfg.AutoRefreshInterval)
}
if len(cfg.LibraryPaths) == 0 {
return fmt.Errorf("no library paths specified")
}
for _, path := range cfg.LibraryPaths {
if _, err := os.Stat(path); os.IsNotExist(err) {
return fmt.Errorf("library path does not exist: %s", path)
}
}
if cfg.CacheDB == "" {
cfg.CacheDB = "magz_cache.db"
}
if cfg.MaxThumbnailSize == 0 {
cfg.MaxThumbnailSize = 400
}
if cfg.LogLevel == "" {
cfg.LogLevel = "info"
}
return nil
}
// loadConfig reads and validates configuration
func loadConfig(path string) (*Config, error) {
data, err := os.ReadFile(path)
if err != nil {
return nil, fmt.Errorf("failed to read config: %w", err)
}
var cfg Config
if err := json.Unmarshal(data, &cfg); err != nil {
return nil, fmt.Errorf("failed to parse config: %w", err)
}
if err := validateConfig(&cfg); err != nil {
return nil, err
}
return &cfg, nil
}
// initDatabase sets up the database schema
func initDatabase(dbPath string) (*sql.DB, error) {
db, err := sql.Open("sqlite", dbPath)
if err != nil {
return nil, fmt.Errorf("failed to open database: %w", err)
}
// Set connection pool parameters
db.SetMaxOpenConns(25)
db.SetMaxIdleConns(5)
db.SetConnMaxLifetime(5 * time.Minute)
schema := `
CREATE TABLE IF NOT EXISTS library (
id INTEGER PRIMARY KEY AUTOINCREMENT,
category TEXT,
title TEXT,
path TEXT UNIQUE,
cover TEXT,
coverData TEXT,
lastModified TEXT,
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
updated_at DATETIME DEFAULT CURRENT_TIMESTAMP
);
CREATE INDEX IF NOT EXISTS idx_category ON library(category);
CREATE INDEX IF NOT EXISTS idx_title ON library(title);
`
if _, err := db.Exec(schema); err != nil {
return nil, fmt.Errorf("failed to create schema: %w", err)
}
return db, nil
}
// isPathAllowed checks if the path is within allowed library paths
func isPathAllowed(path string) bool {
cleanPath := filepath.Clean(path)
for _, base := range config.LibraryPaths {
cleanBase := filepath.Clean(base)
if strings.HasPrefix(cleanPath, cleanBase) {
return true
}
}
return false
}
// getImagesFromCBR extracts image list from CBR archive
func getImagesFromCBR(cbrPath string) ([]string, error) {
f, err := os.Open(cbrPath)
if err != nil {
return nil, fmt.Errorf("failed to open CBR: %w", err)
}
defer f.Close()
rr, err := rardecode.NewReader(f, "")
if err != nil {
return nil, fmt.Errorf("failed to create RAR reader: %w", err)
}
var pages []string
for {
h, err := rr.Next()
if err == io.EOF {
break
}
if err != nil {
return nil, fmt.Errorf("error reading RAR entry: %w", err)
}
name := strings.ToLower(h.Name)
if isImageFile(name) && !strings.HasPrefix(filepath.Base(name), ".") {
pages = append(pages, h.Name)
}
}
sort.Slice(pages, func(i, j int) bool { return naturalLess(pages[i], pages[j]) })
return pages, nil
}
// readImageFromCBR reads a specific image from CBR archive
func readImageFromCBR(cbrPath, imgName string) (image.Image, error) {
f, err := os.Open(cbrPath)
if err != nil {
return nil, err
}
defer f.Close()
rr, err := rardecode.NewReader(f, "")
if err != nil {
return nil, err
}
for {
h, err := rr.Next()
if err == io.EOF {
break
}
if err != nil {
return nil, err
}
if h.Name == imgName {
img, _, err := image.Decode(rr)
if err != nil {
return nil, fmt.Errorf("failed to decode image: %w", err)
}
return img, nil
}
}
return nil, fmt.Errorf("image not found: %s", imgName)
}
// getImagesFromCBZ extracts image list from CBZ archive
func getImagesFromCBZ(cbzPath string) ([]string, error) {
r, err := zip.OpenReader(cbzPath)
if err != nil {
return nil, fmt.Errorf("failed to open CBZ: %w", err)
}
defer r.Close()
var pages []string
for _, f := range r.File {
name := strings.ToLower(f.Name)
if isImageFile(name) && !strings.HasPrefix(filepath.Base(name), ".") {
pages = append(pages, f.Name)
}
}
sort.Slice(pages, func(i, j int) bool { return naturalLess(pages[i], pages[j]) })
return pages, nil
}
// readImageFromCBZ reads a specific image from CBZ archive
func readImageFromCBZ(cbzPath, imgName string) (image.Image, error) {
r, err := zip.OpenReader(cbzPath)
if err != nil {
return nil, err
}
defer r.Close()
for _, f := range r.File {
if f.Name == imgName {
rc, err := f.Open()
if err != nil {
return nil, err
}
defer rc.Close()
img, _, err := image.Decode(rc)
if err != nil {
return nil, fmt.Errorf("failed to decode image: %w", err)
}
return img, nil
}
}
return nil, fmt.Errorf("image not found: %s", imgName)
}
// isImageFile checks if the file is a supported image
func isImageFile(name string) bool {
return strings.HasSuffix(name, ".jpg") ||
strings.HasSuffix(name, ".jpeg") ||
strings.HasSuffix(name, ".png") ||
strings.HasSuffix(name, ".webp") ||
strings.HasSuffix(name, ".avif") ||
strings.HasSuffix(name, ".gif")
}
// generateThumbnailBase64 creates a thumbnail from file path
func generateThumbnailBase64(path string) (string, error) {
f, err := os.Open(path)
if err != nil {
return "", err
}
defer f.Close()
src, _, err := image.Decode(f)
if err != nil {
return "", err
}
return imageToThumbnailBase64(src, config.MaxThumbnailSize)
}
// imageToThumbnailBase64 converts image to base64 thumbnail
func imageToThumbnailBase64(src image.Image, maxDim int) (string, error) {
b := src.Bounds()
w := b.Dx()
h := b.Dy()
if w == 0 || h == 0 {
return "", fmt.Errorf("invalid image dimensions")
}
var targetW, targetH int
if w >= h {
targetH = maxDim
targetW = int(float64(w) * (float64(maxDim) / float64(h)))
} else {
targetW = maxDim
targetH = int(float64(h) * (float64(maxDim) / float64(w)))
}
dst := image.NewRGBA(image.Rect(0, 0, targetW, targetH))
draw.CatmullRom.Scale(dst, dst.Bounds(), src, b, draw.Over, nil)
var buf bytes.Buffer
if err := jpeg.Encode(&buf, dst, &jpeg.Options{Quality: 85}); err != nil {
return "", err
}
return "data:image/jpeg;base64," + base64.StdEncoding.EncodeToString(buf.Bytes()), nil
}
// naturalLess compares strings with natural number ordering
func naturalLess(a, b string) bool {
ai, bi := 0, 0
for ai < len(a) && bi < len(b) {
if isDigit(a[ai]) && isDigit(b[bi]) {
startA, startB := ai, bi
for ai < len(a) && isDigit(a[ai]) {
ai++
}
for bi < len(b) && isDigit(b[bi]) {
bi++
}
na, _ := strconv.Atoi(a[startA:ai])
nb, _ := strconv.Atoi(b[startB:bi])
if na != nb {
return na < nb
}
} else {
if a[ai] != b[bi] {
return a[ai] < b[bi]
}
ai++
bi++
}
}
return len(a) < len(b)
}
func isDigit(b byte) bool { return b >= '0' && b <= '9' }
// selectCoverImage finds the best cover image from page list
func selectCoverImage(pages []string) string {
// Look for files with "cover" in the name
for _, p := range pages {
lower := strings.ToLower(filepath.Base(p))
if strings.Contains(lower, "cover") {
return p
}
}
// Look for files starting with "00" or "01"
for _, p := range pages {
base := filepath.Base(p)
if strings.HasPrefix(base, "00") || strings.HasPrefix(base, "01") {
return p
}
}
// Return first page
if len(pages) > 0 {
return pages[0]
}
return ""
}
// processCBZ handles CBZ file scanning
func processCBZ(path string, existing map[string]string, seen map[string]bool, newCount, updatedCount int) (int, int) {
info, err := os.Stat(path)
if err != nil {
logger.Error("Failed to stat CBZ: %v", err)
return newCount, updatedCount
}
lastMod := info.ModTime().Format(time.RFC3339)
prevMod, exists := existing[path]
seen[path] = true
category := filepath.Base(filepath.Dir(path))
title := strings.TrimSuffix(filepath.Base(path), filepath.Ext(path))
var coverData string
if !exists || prevMod != lastMod {
pages, err := getImagesFromCBZ(path)
if err != nil {
logger.Error("Failed to read CBZ pages: %v", err)
} else if len(pages) > 0 {
cover := selectCoverImage(pages)
img, err := readImageFromCBZ(path, cover)
if err == nil {
coverData, _ = imageToThumbnailBase64(img, config.MaxThumbnailSize)
}
}
}
if exists {
if prevMod != lastMod {
_, err := db.Exec(`UPDATE library SET category=?, title=?, cover=?, coverData=?, lastModified=?, updated_at=CURRENT_TIMESTAMP WHERE path=?`,
category, title, "(cbz internal)", coverData, lastMod, path)
if err != nil {
logger.Error("Failed to update CBZ entry: %v", err)
} else {
updatedCount++
}
}
} else {
_, err := db.Exec(`INSERT INTO library (category, title, path, cover, coverData, lastModified)
VALUES (?, ?, ?, ?, ?, ?)`,
category, title, path, "(cbz internal)", coverData, lastMod)
if err != nil {
logger.Error("Failed to insert CBZ entry: %v", err)
} else {
newCount++
}
}
return newCount, updatedCount
}
// processCBR handles CBR file scanning
func processCBR(path string, existing map[string]string, seen map[string]bool, newCount, updatedCount int) (int, int) {
info, err := os.Stat(path)
if err != nil {
logger.Error("Failed to stat CBR: %v", err)
return newCount, updatedCount
}
lastMod := info.ModTime().Format(time.RFC3339)
prevMod, exists := existing[path]
seen[path] = true
category := filepath.Base(filepath.Dir(path))
title := strings.TrimSuffix(filepath.Base(path), filepath.Ext(path))
var coverData string
if !exists || prevMod != lastMod {
pages, err := getImagesFromCBR(path)
if err != nil {
logger.Error("Failed to read CBR pages: %v", err)
} else if len(pages) > 0 {
cover := selectCoverImage(pages)
img, err := readImageFromCBR(path, cover)
if err == nil {
coverData, _ = imageToThumbnailBase64(img, config.MaxThumbnailSize)
}
}
}
if exists {
if prevMod != lastMod {
_, err := db.Exec(`UPDATE library SET category=?, title=?, cover=?, coverData=?, lastModified=?, updated_at=CURRENT_TIMESTAMP WHERE path=?`,
category, title, "(cbr internal)", coverData, lastMod, path)
if err != nil {
logger.Error("Failed to update CBR entry: %v", err)
} else {
updatedCount++
}
}
} else {
_, err := db.Exec(`INSERT INTO library (category, title, path, cover, coverData, lastModified)
VALUES (?, ?, ?, ?, ?, ?)`,
category, title, path, "(cbr internal)", coverData, lastMod)
if err != nil {
logger.Error("Failed to insert CBR entry: %v", err)
} else {
newCount++
}
}
return newCount, updatedCount
}
// buildCache scans library directories and updates cache
func buildCache() {
logger.Info("🔄 Scanning libraries...")
startTime := time.Now()
existing := make(map[string]string)
rows, err := db.Query("SELECT path, lastModified FROM library")
if err != nil {
logger.Error("Failed to query existing entries: %v", err)
return
}
for rows.Next() {
var path, mod string
rows.Scan(&path, &mod)
existing[path] = mod
}
rows.Close()
newCount := 0
updatedCount := 0
seen := make(map[string]bool)
mu := sync.Mutex{}
// Use worker pool for parallel processing
var wg sync.WaitGroup
workChan := make(chan string, 100)
// Start workers
numWorkers := 4
for i := 0; i < numWorkers; i++ {
wg.Add(1)
go func() {
defer wg.Done()
for path := range workChan {
processPath(path, existing, seen, &newCount, &updatedCount, &mu)
}
}()
}
// Walk directories and send to workers
for _, base := range config.LibraryPaths {
filepath.WalkDir(base, func(path string, d os.DirEntry, err error) error {
if err != nil {
return nil
}
workChan <- path
return nil
})
}
close(workChan)
wg.Wait()
// Remove deleted entries
deletedCount := 0
for path := range existing {
if !seen[path] {
_, err := db.Exec("DELETE FROM library WHERE path=?", path)
if err != nil {
logger.Error("Failed to delete entry: %v", err)
} else {
deletedCount++
}
}
}
duration := time.Since(startTime)
logger.Info("✅ Cache updated in %v — %d new, %d updated, %d removed", duration, newCount, updatedCount, deletedCount)
}
// processPath handles individual path processing
func processPath(path string, existing map[string]string, seen map[string]bool, newCount, updatedCount *int, mu *sync.Mutex) {
info, err := os.Stat(path)
if err != nil {
return
}
lower := strings.ToLower(info.Name())
// Handle CBZ files
if strings.HasSuffix(lower, ".cbz") {
mu.Lock()
n, u := processCBZ(path, existing, seen, *newCount, *updatedCount)
*newCount = n
*updatedCount = u
mu.Unlock()
return
}
// Handle CBR files
if strings.HasSuffix(lower, ".cbr") {
mu.Lock()
n, u := processCBR(path, existing, seen, *newCount, *updatedCount)
*newCount = n
*updatedCount = u
mu.Unlock()
return
}
// Handle directories with images
if !info.IsDir() {
return
}
entries, err := os.ReadDir(path)
if err != nil {
return
}
var pages []string
for _, e := range entries {
if e.IsDir() {
continue
}
name := strings.ToLower(e.Name())
if isImageFile(name) && !strings.HasPrefix(e.Name(), ".") {
pages = append(pages, e.Name())
}
}
if len(pages) == 0 {
return
}
sort.Slice(pages, func(i, j int) bool { return naturalLess(pages[i], pages[j]) })
cover := selectCoverImage(pages)
coverPath := filepath.Join(path, cover)
lastMod := info.ModTime().Format(time.RFC3339)
mu.Lock()
prevMod, exists := existing[path]
seen[path] = true
mu.Unlock()
category := filepath.Base(filepath.Dir(path))
title := filepath.Base(path)
coverData := ""
if !exists || prevMod != lastMod {
// Use semaphore to limit concurrent thumbnail generation
thumbSemaphore <- struct{}{}
if data, err := generateThumbnailBase64(coverPath); err == nil {
coverData = data
} else {
logger.Debug("Failed to generate thumbnail for %s: %v", coverPath, err)
}
<-thumbSemaphore
}
mu.Lock()
defer mu.Unlock()
if exists {
if prevMod != lastMod {
_, err := db.Exec(`UPDATE library SET category=?, title=?, cover=?, coverData=?, lastModified=?, updated_at=CURRENT_TIMESTAMP WHERE path=?`,
category, title, cover, coverData, lastMod, path)
if err != nil {
logger.Error("Failed to update directory entry: %v", err)
} else {
*updatedCount++
}
}
} else {
_, err := db.Exec(`INSERT INTO library (category, title, path, cover, coverData, lastModified)
VALUES (?, ?, ?, ?, ?, ?)`,
category, title, path, cover, coverData, lastMod)
if err != nil {
logger.Error("Failed to insert directory entry: %v", err)
} else {
*newCount++
}
}
}
// HTTP Handlers
// handleMedia serves media files with security checks
func handleMedia(w http.ResponseWriter, r *http.Request) {
cbrPath := r.URL.Query().Get("cbr")
cbzPath := r.URL.Query().Get("cbz")
pageName := r.URL.Query().Get("page")
// Serve CBZ pages
if cbzPath != "" && pageName != "" {
if !isPathAllowed(cbzPath) {
logger.Error("Unauthorized CBZ access attempt: %s", cbzPath)
http.Error(w, "forbidden", http.StatusForbidden)
return
}
serveCBZPage(w, cbzPath, pageName)
return
}
// Serve CBR pages
if cbrPath != "" && pageName != "" {
if !isPathAllowed(cbrPath) {
logger.Error("Unauthorized CBR access attempt: %s", cbrPath)
http.Error(w, "forbidden", http.StatusForbidden)
return
}
serveCBRPage(w, cbrPath, pageName)
return
}
// Serve normal filesystem file
path := r.URL.Query().Get("path")
if path == "" {
http.Error(w, "missing path", http.StatusBadRequest)
return
}
// Security: ensure file is inside library dirs
if !isPathAllowed(path) {
logger.Error("Unauthorized path access attempt: %s", path)
http.Error(w, "forbidden", http.StatusForbidden)
return
}
// Check if file exists
if _, err := os.Stat(path); os.IsNotExist(err) {
http.Error(w, "not found", http.StatusNotFound)
return
}
http.ServeFile(w, r, path)
}
// serveCBZPage serves a single page from CBZ archive
func serveCBZPage(w http.ResponseWriter, cbzPath, pageName string) {
rzip, err := zip.OpenReader(cbzPath)
if err != nil {
logger.Error("Cannot open CBZ: %v", err)
http.Error(w, "cannot open cbz", http.StatusInternalServerError)
return
}
defer rzip.Close()
for _, f := range rzip.File {
if f.Name == pageName {
rc, err := f.Open()
if err != nil {
logger.Error("Cannot read page: %v", err)
http.Error(w, "cannot read page", http.StatusInternalServerError)
return
}
defer rc.Close()
setImageContentType(w, f.Name)
io.Copy(w, rc)
return
}
}
http.Error(w, "page not found", http.StatusNotFound)
}
// serveCBRPage serves a single page from CBR archive
func serveCBRPage(w http.ResponseWriter, cbrPath, pageName string) {
f, err := os.Open(cbrPath)
if err != nil {
logger.Error("Cannot open CBR: %v", err)
http.Error(w, "cannot open cbr", http.StatusInternalServerError)
return
}
defer f.Close()
rr, err := rardecode.NewReader(f, "")
if err != nil {
logger.Error("Cannot read CBR: %v", err)
http.Error(w, "cannot read cbr", http.StatusInternalServerError)
return
}
for {
h, err := rr.Next()
if err == io.EOF {
break
}
if err != nil {
logger.Error("Error reading CBR: %v", err)
http.Error(w, "error reading cbr", http.StatusInternalServerError)
return
}
if h.Name == pageName {
img, _, err := image.Decode(rr)
if err != nil {
logger.Error("Cannot decode image: %v", err)
http.Error(w, "cannot decode image", http.StatusInternalServerError)
return
}
w.Header().Set("Content-Type", "image/jpeg")
w.Header().Set("Cache-Control", "public, max-age=86400")
jpeg.Encode(w, img, &jpeg.Options{Quality: 90})
return
}
}
http.Error(w, "page not found", http.StatusNotFound)
}
// setImageContentType sets appropriate content type for images
func setImageContentType(w http.ResponseWriter, filename string) {
ext := strings.ToLower(filepath.Ext(filename))
contentType := "image/jpeg"
switch ext {
case ".png":
contentType = "image/png"
case ".webp":
contentType = "image/webp"
case ".gif":
contentType = "image/gif"
case ".avif":
contentType = "image/avif"
}
w.Header().Set("Content-Type", contentType)
w.Header().Set("Cache-Control", "public, max-age=86400")
}
// handleLibrary returns all library items
func handleLibrary(w http.ResponseWriter, r *http.Request) {
rows, err := db.Query("SELECT id, category, title, path, cover, coverData, lastModified FROM library ORDER BY title")
if err != nil {
logger.Error("Query failed: %v", err)
http.Error(w, "internal server error", http.StatusInternalServerError)
return
}
defer rows.Close()
var items []LibraryItem
for rows.Next() {
var item LibraryItem
err := rows.Scan(&item.ID, &item.Category, &item.Title, &item.Path, &item.Cover, &item.CoverData, &item.LastMod)
if err != nil {
logger.Error("Scan error: %v", err)
continue
}
// If coverData is missing, try to generate on demand
if item.CoverData == "" && item.Cover != "" && item.Cover != "(cbz internal)" && item.Cover != "(cbr internal)" {
coverPath := filepath.Join(item.Path, item.Cover)
if data, err := generateThumbnailBase64(coverPath); err == nil {
item.CoverData = data
// Update database asynchronously
go db.Exec("UPDATE library SET coverData=? WHERE id=?", data, item.ID)
} else {
logger.Debug("Failed to generate cover for %s: %v", coverPath, err)
}
}
items = append(items, item)
}
w.Header().Set("Content-Type", "application/json")
w.Header().Set("Cache-Control", "no-cache")
json.NewEncoder(w).Encode(items)
}
// handlePages returns pages for a specific item
func handlePages(w http.ResponseWriter, r *http.Request) {
id := r.URL.Query().Get("id")
if id == "" {
http.Error(w, "missing id", http.StatusBadRequest)
return
}
var path string
err := db.QueryRow("SELECT path FROM library WHERE id=?", id).Scan(&path)
if err != nil {
logger.Error("Failed to find library item: %v", err)
http.Error(w, "not found", http.StatusNotFound)
return
}
lower := strings.ToLower(path)
if strings.HasSuffix(lower, ".cbz") {
handleCBZPages(w, path)
return
}
if strings.HasSuffix(lower, ".cbr") {
handleCBRPages(w, path)
return
}
handleDirectoryPages(w, path)
}
// handleCBZPages returns page URLs for CBZ file
func handleCBZPages(w http.ResponseWriter, path string) {
pages, err := getImagesFromCBZ(path)
if err != nil {
logger.Error("Cannot read CBZ: %v", err)
http.Error(w, "cannot read cbz", http.StatusInternalServerError)
return
}
var urls []string
for _, p := range pages {
urls = append(urls, fmt.Sprintf("/media?cbz=%s&page=%s",
url.QueryEscape(path), url.QueryEscape(p)))
}
w.Header().Set("Content-Type", "application/json")
w.Header().Set("Cache-Control", "public, max-age=3600")
json.NewEncoder(w).Encode(urls)
}
// handleCBRPages returns page URLs for CBR file
func handleCBRPages(w http.ResponseWriter, path string) {
pages, err := getImagesFromCBR(path)
if err != nil {
logger.Error("Cannot read CBR: %v", err)
http.Error(w, "cannot read cbr", http.StatusInternalServerError)
return
}
var urls []string
for _, p := range pages {
urls = append(urls, fmt.Sprintf("/media?cbr=%s&page=%s",
url.QueryEscape(path), url.QueryEscape(p)))
}
w.Header().Set("Content-Type", "application/json")
w.Header().Set("Cache-Control", "public, max-age=3600")
json.NewEncoder(w).Encode(urls)
}
// handleDirectoryPages returns page URLs for directory
func handleDirectoryPages(w http.ResponseWriter, path string) {
entries, err := os.ReadDir(path)
if err != nil {
logger.Error("Cannot read directory: %v", err)
http.Error(w, "cannot read directory", http.StatusInternalServerError)
return
}
var pages []string
for _, e := range entries {
if e.IsDir() {
continue
}
name := strings.ToLower(e.Name())
if isImageFile(name) && !strings.HasPrefix(e.Name(), ".") {
pages = append(pages, filepath.Join(path, e.Name()))
}
}
sort.Slice(pages, func(i, j int) bool {
return naturalLess(filepath.Base(pages[i]), filepath.Base(pages[j]))
})
w.Header().Set("Content-Type", "application/json")
w.Header().Set("Cache-Control", "public, max-age=3600")
json.NewEncoder(w).Encode(pages)
}
// handleHealth provides health check endpoint
func handleHealth(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
json.NewEncoder(w).Encode(map[string]interface{}{
"status": "ok",
"version": "stable",
"uptime": time.Since(startTime).String(),
})
}
var startTime time.Time
func main() {
startTime = time.Now()
// Load configuration
cfg, err := loadConfig("magz.config.json")
if err != nil {
fmt.Printf("❌ Configuration error: %v\n", err)
fmt.Println("💡 Tip: Copy magz.config.example.json to magz.config.json and edit it")
os.Exit(1)
}
config = *cfg
// Initialize logger
logger = &Logger{level: config.LogLevel}
logger.Info("Starting Magz")
// Initialize database
db, err = initDatabase(config.CacheDB)
if err != nil {
logger.Error("Database error: %v", err)
os.Exit(1)
}