2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package ui // import "miniflux.app/v2/internal/ui"
|
2018-04-30 01:35:04 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
2021-03-07 20:02:52 +01:00
|
|
|
"path/filepath"
|
2018-04-30 01:35:04 +02:00
|
|
|
"time"
|
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
"miniflux.app/v2/internal/http/request"
|
|
|
|
"miniflux.app/v2/internal/http/response"
|
|
|
|
"miniflux.app/v2/internal/http/response/html"
|
|
|
|
"miniflux.app/v2/internal/ui/static"
|
2018-04-30 01:35:04 +02:00
|
|
|
)
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
func (h *handler) showAppIcon(w http.ResponseWriter, r *http.Request) {
|
2018-09-24 06:02:26 +02:00
|
|
|
filename := request.RouteStringParam(r, "filename")
|
2021-02-17 08:36:17 +01:00
|
|
|
etag, err := static.GetBinaryFileChecksum(filename)
|
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.NotFound(w, r)
|
2018-04-30 01:35:04 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-10-08 03:42:43 +02:00
|
|
|
response.New(w, r).WithCaching(etag, 72*time.Hour, func(b *response.Builder) {
|
2021-02-17 08:36:17 +01:00
|
|
|
blob, err := static.LoadBinaryFile(filename)
|
2018-10-08 03:42:43 +02:00
|
|
|
if err != nil {
|
|
|
|
html.ServerError(w, r, err)
|
|
|
|
return
|
|
|
|
}
|
2018-04-30 01:35:04 +02:00
|
|
|
|
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()
|
|
|
|
})
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|