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
|
package services
import (
"bytes"
"context"
"fmt"
"image"
_ "image/jpeg"
"image/png"
"shrine/repositories"
"shrine/utils/logger"
"shrine/utils/storage"
"time"
"github.com/chromedp/chromedp"
"golang.org/x/image/draw"
_ "golang.org/x/image/webp"
)
const (
thumbnailWidth = 320
thumbnailHeight = 200
captureWidth = 1280
captureHeight = 800
captureTimeout = 30 * time.Second
)
func GenerateThumbnails() {
sites := repositories.ListApprovedSitesForThumbnail()
if len(sites) == 0 {
return
}
logger.Infof("Thumbnails", "Generating thumbnails for %d sites", len(sites))
opts := append(chromedp.DefaultExecAllocatorOptions[:],
chromedp.WindowSize(captureWidth, captureHeight),
chromedp.Flag("headless", true),
chromedp.Flag("disable-gpu", true),
chromedp.Flag("no-sandbox", true),
)
allocCtx, allocCancel := chromedp.NewExecAllocator(context.Background(), opts...)
defer allocCancel()
for _, site := range sites {
var screenshot []byte
ctx, cancel := chromedp.NewContext(allocCtx)
timeoutCtx, timeoutCancel := context.WithTimeout(ctx, captureTimeout)
err := chromedp.Run(timeoutCtx,
chromedp.Navigate(site.URL),
chromedp.Sleep(2*time.Second),
chromedp.FullScreenshot(&screenshot, 90),
)
timeoutCancel()
cancel()
if err != nil {
logger.Errorf("Thumbnails", "Failed to capture %s: %v", site.URL, err)
continue
}
resized, err := resizeScreenshot(screenshot)
if err != nil {
logger.Errorf("Thumbnails", "Failed to resize %s: %v", site.URL, err)
continue
}
path := fmt.Sprintf("districts/thumbnails/%s.png", site.Ref)
err = storage.Upload(path, bytes.NewReader(resized), int64(len(resized)), "image/png")
if err != nil {
logger.Errorf("Thumbnails", "Failed to upload thumbnail for %s: %v", site.URL, err)
continue
}
site.ThumbnailURL = path
repositories.UpdateDistrictSite(&site)
logger.Infof("Thumbnails", "Generated thumbnail for %s", site.URL)
}
logger.Successf("Thumbnails", "Thumbnail generation complete")
}
func GenerateSiteThumbnail(ref string, siteURL string) {
opts := append(chromedp.DefaultExecAllocatorOptions[:],
chromedp.WindowSize(captureWidth, captureHeight),
chromedp.Flag("headless", true),
chromedp.Flag("disable-gpu", true),
chromedp.Flag("no-sandbox", true),
)
allocCtx, allocCancel := chromedp.NewExecAllocator(context.Background(), opts...)
defer allocCancel()
ctx, cancel := chromedp.NewContext(allocCtx)
defer cancel()
timeoutCtx, timeoutCancel := context.WithTimeout(ctx, captureTimeout)
defer timeoutCancel()
var screenshot []byte
err := chromedp.Run(timeoutCtx,
chromedp.Navigate(siteURL),
chromedp.Sleep(2*time.Second),
chromedp.FullScreenshot(&screenshot, 90),
)
if err != nil {
logger.Errorf("Thumbnails", "Failed to capture %s: %v", siteURL, err)
return
}
resized, err := resizeScreenshot(screenshot)
if err != nil {
logger.Errorf("Thumbnails", "Failed to resize %s: %v", siteURL, err)
return
}
path := fmt.Sprintf("districts/thumbnails/%s.png", ref)
err = storage.Upload(path, bytes.NewReader(resized), int64(len(resized)), "image/png")
if err != nil {
logger.Errorf("Thumbnails", "Failed to upload thumbnail for %s: %v", siteURL, err)
return
}
site, findErr := repositories.FindDistrictSiteByRef(ref)
if findErr != nil {
return
}
site.ThumbnailURL = path
repositories.UpdateDistrictSite(site)
logger.Infof("Thumbnails", "Generated thumbnail for %s", siteURL)
}
func resizeScreenshot(data []byte) ([]byte, error) {
src, _, err := image.Decode(bytes.NewReader(data))
if err != nil {
return nil, err
}
dst := image.NewRGBA(image.Rect(0, 0, thumbnailWidth, thumbnailHeight))
draw.CatmullRom.Scale(dst, dst.Bounds(), src, src.Bounds(), draw.Over, nil)
var buf bytes.Buffer
if err := png.Encode(&buf, dst); err != nil {
return nil, err
}
return buf.Bytes(), nil
}
|