summaryrefslogtreecommitdiffci
path: root/internal/router/api-v1-general-page-bottom-embeds.go
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
authorGravatar SayaAndy <saya.andy@posteo.com> 2025-08-31 18:40:13 +0700
committerGravatar SayaAndy <saya.andy@posteo.com> 2025-08-31 18:40:13 +0700
commit6af14241ff2c8050753f1d6ac702a938a017a839 (patch)
tree29400fa749d7bc87ed30cc924e486791f8f72867 /internal/router/api-v1-general-page-bottom-embeds.go
parentf174579ef53fb726594a2f7064299b86c8691ea3 (diff)
downloadweb-6af14241ff2c8050753f1d6ac702a938a017a839.tar.gz
web-6af14241ff2c8050753f1d6ac702a938a017a839.zip
feat: add page cache
Diffstat (limited to 'internal/router/api-v1-general-page-bottom-embeds.go')
-rw-r--r--internal/router/api-v1-general-page-bottom-embeds.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/internal/router/api-v1-general-page-bottom-embeds.go b/internal/router/api-v1-general-page-bottom-embeds.go
index f0957f3..df766a7 100644
--- a/internal/router/api-v1-general-page-bottom-embeds.go
+++ b/internal/router/api-v1-general-page-bottom-embeds.go
@@ -6,6 +6,7 @@ import (
"net/url"
"slices"
"strings"
+ "time"
"github.com/SayaAndy/saya-today-web/internal/b2"
"github.com/SayaAndy/saya-today-web/locale"
@@ -30,6 +31,12 @@ func Api_V1_GeneralPage_BottomEmbeds(l map[string]*locale.LocaleConfig, langs []
}
path := urlStruct.EscapedPath()
+ cacheKey := fmt.Sprintf("bottom-embeds.%s", path)
+ if val, ok := PCache.Get(cacheKey); val != nil && ok {
+ c.Set(fiber.HeaderContentType, fiber.MIMETextHTMLCharsetUTF8)
+ return c.Status(fiber.StatusOK).Type("html").Send(val)
+ }
+
pathParts := strings.Split(strings.Trim(path, "/"), "/")
if len(pathParts) < 2 {
return c.Status(fiber.ErrBadRequest.Code).SendString("'Referer' header is invalid: expect format '/{lang}/...'")
@@ -59,6 +66,7 @@ func Api_V1_GeneralPage_BottomEmbeds(l map[string]*locale.LocaleConfig, langs []
return c.Status(fiber.ErrInternalServerError.Code).SendString("failed to generate div")
}
+ go PCache.SetWithTTL(cacheKey, content, int64(len(content)), 5*time.Minute)
c.Set(fiber.HeaderContentType, fiber.MIMETextHTMLCharsetUTF8)
return c.Status(fiber.StatusOK).Type("html").Send(content)
}