2018-04-29 19:35:04 -04:00
|
|
|
// Copyright 2018 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-09-03 17:26:40 -04:00
|
|
|
package ui // import "miniflux.app/ui"
|
2018-04-29 19:35:04 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2018-09-03 17:26:40 -04:00
|
|
|
"miniflux.app/http/request"
|
2018-08-25 00:51:50 -04:00
|
|
|
"miniflux.app/http/response/json"
|
|
|
|
"miniflux.app/http/route"
|
|
|
|
"miniflux.app/model"
|
2018-04-29 19:35:04 -04:00
|
|
|
)
|
|
|
|
|
2018-11-11 14:28:29 -05:00
|
|
|
func (h *handler) showWebManifest(w http.ResponseWriter, r *http.Request) {
|
2018-04-29 19:35:04 -04:00
|
|
|
type webManifestIcon struct {
|
|
|
|
Source string `json:"src"`
|
|
|
|
Sizes string `json:"sizes"`
|
|
|
|
Type string `json:"type"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type webManifest struct {
|
2018-07-19 01:30:05 -04:00
|
|
|
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"`
|
|
|
|
ThemeColor string `json:"theme_color"`
|
|
|
|
BackgroundColor string `json:"background_color"`
|
2018-04-29 19:35:04 -04:00
|
|
|
}
|
|
|
|
|
2018-09-03 17:26:40 -04:00
|
|
|
themeColor := model.ThemeColor(request.UserTheme(r))
|
2018-04-29 19:35:04 -04:00
|
|
|
manifest := &webManifest{
|
2018-07-19 01:30:05 -04:00
|
|
|
Name: "Miniflux",
|
|
|
|
ShortName: "Miniflux",
|
|
|
|
Description: "Minimalist Feed Reader",
|
|
|
|
Display: "minimal-ui",
|
2018-11-11 14:28:29 -05:00
|
|
|
StartURL: route.Path(h.router, "unread"),
|
2018-07-19 01:30:05 -04:00
|
|
|
ThemeColor: themeColor,
|
|
|
|
BackgroundColor: themeColor,
|
2018-04-29 19:35:04 -04:00
|
|
|
Icons: []webManifestIcon{
|
2018-11-11 14:28:29 -05:00
|
|
|
webManifestIcon{Source: route.Path(h.router, "appIcon", "filename", "icon-120.png"), Sizes: "120x120", Type: "image/png"},
|
|
|
|
webManifestIcon{Source: route.Path(h.router, "appIcon", "filename", "icon-192.png"), Sizes: "192x192", Type: "image/png"},
|
|
|
|
webManifestIcon{Source: route.Path(h.router, "appIcon", "filename", "icon-512.png"), Sizes: "512x512", Type: "image/png"},
|
2018-04-29 19:35:04 -04:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2018-07-19 22:27:05 -04:00
|
|
|
json.OK(w, r, manifest)
|
2018-04-29 19:35:04 -04:00
|
|
|
}
|