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.
|
|
|
|
|
2018-01-03 07:04:48 +01:00
|
|
|
package ui
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
|
|
|
"time"
|
2017-11-28 06:30:04 +01:00
|
|
|
|
2018-01-03 07:04:48 +01:00
|
|
|
"github.com/miniflux/miniflux/http/handler"
|
2017-12-16 03:55:57 +01:00
|
|
|
"github.com/miniflux/miniflux/logger"
|
2018-01-03 07:04:48 +01:00
|
|
|
"github.com/miniflux/miniflux/ui/static"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2017-11-28 06:30:04 +01:00
|
|
|
// Stylesheet renders the CSS.
|
2018-01-03 07:04:48 +01:00
|
|
|
func (c *Controller) Stylesheet(ctx *handler.Context, request *handler.Request, response *handler.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]
|
|
|
|
}
|
|
|
|
|
2017-11-30 06:41:16 +01:00
|
|
|
response.Cache("text/css; charset=utf-8", etag, []byte(body), 48*time.Hour)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2017-11-28 06:30:04 +01:00
|
|
|
// Javascript renders application client side code.
|
2018-01-03 07:04:48 +01:00
|
|
|
func (c *Controller) Javascript(ctx *handler.Context, request *handler.Request, response *handler.Response) {
|
2017-11-30 06:41:16 +01:00
|
|
|
response.Cache("text/javascript; charset=utf-8", static.JavascriptChecksums["app"], []byte(static.Javascript["app"]), 48*time.Hour)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|
|
|
|
|
2017-11-28 06:30:04 +01:00
|
|
|
// Favicon renders the application favicon.
|
2018-01-03 07:04:48 +01:00
|
|
|
func (c *Controller) Favicon(ctx *handler.Context, request *handler.Request, response *handler.Response) {
|
2017-11-20 06:10:04 +01:00
|
|
|
blob, err := base64.StdEncoding.DecodeString(static.Binaries["favicon.ico"])
|
|
|
|
if err != nil {
|
2017-12-16 03:55:57 +01:00
|
|
|
logger.Error("[Controller:Favicon] %v", 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)
|
|
|
|
}
|
2017-12-16 06:28:54 +01:00
|
|
|
|
|
|
|
// AppIcon returns application icons.
|
2018-01-03 07:04:48 +01:00
|
|
|
func (c *Controller) AppIcon(ctx *handler.Context, request *handler.Request, response *handler.Response) {
|
2017-12-16 06:28:54 +01:00
|
|
|
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)
|
|
|
|
}
|
2017-12-23 05:16:49 +01:00
|
|
|
|
|
|
|
// WebManifest renders web manifest file.
|
2018-01-03 07:04:48 +01:00
|
|
|
func (c *Controller) WebManifest(ctx *handler.Context, request *handler.Request, response *handler.Response) {
|
2017-12-23 05:16:49 +01:00
|
|
|
type webManifestIcon struct {
|
|
|
|
Source string `json:"src"`
|
|
|
|
Sizes string `json:"sizes"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type webManifest struct {
|
|
|
|
Name string `json:"name"`
|
|
|
|
Description string `json:"description"`
|
|
|
|
ShortName string `json:"short_name"`
|
|
|
|
StartURL string `json:"start_url"`
|
|
|
|
Icons []webManifestIcon `json:"icons"`
|
|
|
|
Display string `json:"display"`
|
|
|
|
}
|
|
|
|
|
|
|
|
manifest := &webManifest{
|
|
|
|
Name: "Miniflux",
|
|
|
|
ShortName: "Miniflux",
|
|
|
|
Description: "Minimalist Feed Reader",
|
|
|
|
Display: "minimal-ui",
|
|
|
|
StartURL: ctx.Route("unread"),
|
|
|
|
Icons: []webManifestIcon{
|
|
|
|
webManifestIcon{Source: ctx.Route("appIcon", "filename", "touch-icon-ipad-retina.png"), Sizes: "144x144", Type: "image/png"},
|
|
|
|
webManifestIcon{Source: ctx.Route("appIcon", "filename", "touch-icon-iphone-retina.png"), Sizes: "114x114", Type: "image/png"},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
response.JSON().Standard(manifest)
|
|
|
|
}
|