miniflux-v2/ui/static_app_icon.go

45 lines
1023 B
Go
Raw Normal View History

// 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.
package ui // import "miniflux.app/ui"
import (
"net/http"
2021-03-07 20:02:52 +01:00
"path/filepath"
"time"
2018-08-25 06:51:50 +02:00
"miniflux.app/http/request"
"miniflux.app/http/response"
"miniflux.app/http/response/html"
"miniflux.app/ui/static"
)
func (h *handler) showAppIcon(w http.ResponseWriter, r *http.Request) {
filename := request.RouteStringParam(r, "filename")
etag, err := static.GetBinaryFileChecksum(filename)
if err != nil {
2018-10-08 03:42:43 +02:00
html.NotFound(w, r)
return
}
2018-10-08 03:42:43 +02:00
response.New(w, r).WithCaching(etag, 72*time.Hour, func(b *response.Builder) {
blob, err := static.LoadBinaryFile(filename)
2018-10-08 03:42:43 +02:00
if err != nil {
html.ServerError(w, r, err)
return
}
2021-03-07 20:02:52 +01:00
switch filepath.Ext(filename) {
case ".png":
b.WithHeader("Content-Type", "image/png")
case ".svg":
b.WithHeader("Content-Type", "image/svg+xml")
}
2018-10-08 03:42:43 +02:00
b.WithoutCompression()
b.WithBody(blob)
b.Write()
})
}