-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
212 lines (168 loc) · 4.66 KB
/
main.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
package main
import (
"bytes"
"github.com/disintegration/imaging"
"github.com/gin-gonic/gin"
"github.com/goki/freetype"
"github.com/goki/freetype/truetype"
"golang.org/x/image/font"
"golang.org/x/image/math/fixed"
"image"
"image/color"
"image/draw"
"image/png"
"log"
"net/http"
"os"
"time"
)
func main() {
// Open the template image
templateImage, err := os.Open("./calendar_template.png")
if err != nil {
log.Fatal("Failed to open template image:", err)
}
defer func(templateImage *os.File) {
err := templateImage.Close()
if err != nil {
log.Fatal("Failed closing template image")
}
}(templateImage)
// Decode the template image
template, err := png.Decode(templateImage)
if err != nil {
log.Fatal("Failed to decode template image:", err)
}
fontFace := loadFont()
r := gin.Default()
r.GET("/", func(c *gin.Context) {
c.JSON(http.StatusOK, gin.H{
"message": "Hello, World !",
})
})
r.GET("/calendar", func(c *gin.Context) {
// Parse the request payload
var req CalendarRequest
if err := c.ShouldBindQuery(&req); err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": err.Error()})
return
}
if req.Timestamp == 0 {
req.Timestamp = time.Now().Unix()
}
// Convert the timestamp to time.Time
calTime := time.Unix(req.Timestamp, 0)
if req.Locale == "" {
req.Locale = "UTC"
}
if req.Size == 0 || req.Size > 1000 || req.Size < 50 {
req.Size = 1000
}
// Set the desired time locale
loc, err := time.LoadLocation(req.Locale)
if err != nil {
c.JSON(http.StatusBadRequest, gin.H{"error": "Invalid locale"})
return
}
calTime = calTime.In(loc)
// Generate the calendar image using calTime
img := generateCalendarImage(calTime, template, fontFace, req.Size)
// Create a buffer to hold the image data
buf := new(bytes.Buffer)
// Encode the image to PNG and write it to the buffer
err = png.Encode(buf, img)
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to encode image"})
return
}
// Set the appropriate headers
c.Header("Content-Type", "image/png")
c.Header("Content-Disposition", "inline")
// Write the image data from the buffer to the response
_, err = c.Writer.Write(buf.Bytes())
if err != nil {
c.JSON(http.StatusInternalServerError, gin.H{"error": "Failed to write image"})
return
}
})
err = r.Run() // listen and serve on 0.0.0.0:8080 (for windows "localhost:8080")
if err != nil {
log.Fatal(err)
}
}
type CalendarRequest struct {
Timestamp int64 `form:"timestamp"`
Locale string `form:"locale"`
Size int `form:"size"`
}
func generateCalendarImage(date time.Time, template image.Image, fontFace font.Face, size int) *image.NRGBA {
// Set the dimensions of the calendar image
width := template.Bounds().Dx()
// Create a new RGBA image
img := image.NewNRGBA(template.Bounds())
// Set the font face and size
fontSize := 128
draw.Draw(img, img.Bounds(), template, img.Bounds().Min, draw.Src)
// Create a drawerMonth to write month on the image
drawerMonth := &font.Drawer{
Dst: img,
Src: image.NewUniform(color.White),
Face: fontFace,
}
textWidthMonth := drawerMonth.MeasureString(date.Format("January")).Round()
// Calculate the text position
textXMonth := (width - textWidthMonth) / 2
drawerMonth.Dot = fixed.P(textXMonth, 100+fontSize)
drawerMonth.DrawString(date.Format("January"))
// Create a drawerDate to write day number on the image
drawerDate := &font.Drawer{
Dst: img,
Src: image.NewUniform(color.RGBA{
R: 0x5B,
G: 0x51,
B: 0x44,
A: 0xFF,
}),
Face: fontFace,
}
textWidthDate := drawerDate.MeasureString(date.Format("02")).Round()
// Calculate the text position
textXDate := (width - textWidthDate) / 2
drawerDate.Dot = fixed.P(textXDate, 400+fontSize)
drawerDate.DrawString(date.Format("02"))
// Create a drawerDay to write day on the image
drawerDay := &font.Drawer{
Dst: img,
Src: image.NewUniform(color.RGBA{
R: 0x5B,
G: 0x51,
B: 0x44,
A: 0xFF,
}),
Face: fontFace,
}
textWidthDay := drawerDay.MeasureString(date.Format("Monday")).Round()
// Calculate the text position
textXDay := (width - textWidthDay) / 2
drawerDay.Dot = fixed.P(textXDay, 600+fontSize)
drawerDay.DrawString(date.Format("Monday"))
if size != 1000 {
img = imaging.Resize(img, size, size, imaging.Linear)
}
return img
}
func loadFont() font.Face {
fontBytes, err := os.ReadFile("./Roboto-Bold.ttf")
if err != nil {
log.Fatal("Error reading font file")
}
robotoFont, err := freetype.ParseFont(fontBytes)
if err != nil {
log.Fatal("Error parsing the font")
}
return truetype.NewFace(robotoFont, &truetype.Options{
Size: 128,
DPI: 72,
Hinting: 0,
})
}