1
0
Fork 0
miniflux/server/ui/controller/static.go

66 lines
2.1 KiB
Go
Raw Normal View History

2017-11-20 00:10:04 -05:00
// Copyright 2017 Frédéric Guillot. All rights reserved.
// Use of this source code is governed by the Apache 2.0
// license that can be found in the LICENSE file.
package controller
import (
"encoding/base64"
"time"
2017-11-28 00:30:04 -05:00
2017-12-15 21:55:57 -05:00
"github.com/miniflux/miniflux/logger"
2017-12-13 00:48:13 -05:00
"github.com/miniflux/miniflux/server/core"
"github.com/miniflux/miniflux/server/static"
2017-11-20 00:10:04 -05:00
)
2017-11-28 00:30:04 -05:00
// Stylesheet renders the CSS.
2017-11-20 00:10:04 -05:00
func (c *Controller) Stylesheet(ctx *core.Context, request *core.Request, response *core.Response) {
2017-11-21 21:14:45 -05:00
stylesheet := request.StringParam("name", "white")
2017-11-20 00:10:04 -05:00
body := static.Stylesheets["common"]
etag := static.StylesheetsChecksums["common"]
if theme, found := static.Stylesheets[stylesheet]; found {
body += theme
etag += static.StylesheetsChecksums[stylesheet]
}
2017-11-30 00:41:16 -05:00
response.Cache("text/css; charset=utf-8", etag, []byte(body), 48*time.Hour)
2017-11-20 00:10:04 -05:00
}
2017-11-28 00:30:04 -05:00
// Javascript renders application client side code.
2017-11-20 00:10:04 -05:00
func (c *Controller) Javascript(ctx *core.Context, request *core.Request, response *core.Response) {
2017-11-30 00:41:16 -05:00
response.Cache("text/javascript; charset=utf-8", static.JavascriptChecksums["app"], []byte(static.Javascript["app"]), 48*time.Hour)
2017-11-20 00:10:04 -05:00
}
2017-11-28 00:30:04 -05:00
// Favicon renders the application favicon.
2017-11-20 00:10:04 -05:00
func (c *Controller) Favicon(ctx *core.Context, request *core.Request, response *core.Response) {
blob, err := base64.StdEncoding.DecodeString(static.Binaries["favicon.ico"])
if err != nil {
2017-12-15 21:55:57 -05:00
logger.Error("[Controller:Favicon] %v", err)
2017-11-21 21:30:16 -05:00
response.HTML().NotFound()
2017-11-20 00:10:04 -05:00
return
}
response.Cache("image/x-icon", static.BinariesChecksums["favicon.ico"], blob, 48*time.Hour)
}
2017-12-16 00:28:54 -05:00
// AppIcon returns application icons.
func (c *Controller) AppIcon(ctx *core.Context, request *core.Request, response *core.Response) {
filename := request.StringParam("filename", "favicon.png")
encodedBlob, found := static.Binaries[filename]
if !found {
logger.Info("[Controller:AppIcon] This icon doesn't exists: %s", filename)
response.HTML().NotFound()
return
}
blob, err := base64.StdEncoding.DecodeString(encodedBlob)
if err != nil {
logger.Error("[Controller:AppIcon] %v", err)
response.HTML().NotFound()
return
}
response.Cache("image/png", static.BinariesChecksums[filename], blob, 48*time.Hour)
}