2017-11-20 06:10:04 +01: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"
|
|
|
|
"log"
|
|
|
|
"time"
|
2017-11-28 06:30:04 +01:00
|
|
|
|
|
|
|
"github.com/miniflux/miniflux2/server/core"
|
|
|
|
"github.com/miniflux/miniflux2/server/static"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2017-11-28 06:30:04 +01:00
|
|
|
// Stylesheet renders the CSS.
|
2017-11-20 06:10:04 +01:00
|
|
|
func (c *Controller) Stylesheet(ctx *core.Context, request *core.Request, response *core.Response) {
|
2017-11-22 03:14:45 +01:00
|
|
|
stylesheet := request.StringParam("name", "white")
|
2017-11-20 06:10:04 +01:00
|
|
|
body := static.Stylesheets["common"]
|
|
|
|
etag := static.StylesheetsChecksums["common"]
|
|
|
|
|
|
|
|
if theme, found := static.Stylesheets[stylesheet]; found {
|
|
|
|
body += theme
|
|
|
|
etag += static.StylesheetsChecksums[stylesheet]
|
|
|
|
}
|
|
|
|
|
|
|
|
response.Cache("text/css", etag, []byte(body), 48*time.Hour)
|
|
|
|
}
|
|
|
|
|
2017-11-28 06:30:04 +01:00
|
|
|
// Javascript renders application client side code.
|
2017-11-20 06:10:04 +01:00
|
|
|
func (c *Controller) Javascript(ctx *core.Context, request *core.Request, response *core.Response) {
|
|
|
|
response.Cache("text/javascript", static.JavascriptChecksums["app"], []byte(static.Javascript["app"]), 48*time.Hour)
|
|
|
|
}
|
|
|
|
|
2017-11-28 06:30:04 +01:00
|
|
|
// Favicon renders the application favicon.
|
2017-11-20 06:10:04 +01: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 {
|
|
|
|
log.Println(err)
|
2017-11-22 03:30:16 +01:00
|
|
|
response.HTML().NotFound()
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
response.Cache("image/x-icon", static.BinariesChecksums["favicon.ico"], blob, 48*time.Hour)
|
|
|
|
}
|