| 12345678910111213141516171819202122232425262728293031323334353637 |
- // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
- // SPDX-License-Identifier: Apache-2.0
- package ui // import "miniflux.app/v2/internal/ui"
- import (
- "net/http"
- "time"
- "miniflux.app/v2/internal/http/request"
- "miniflux.app/v2/internal/http/response"
- "miniflux.app/v2/internal/http/response/html"
- )
- func (h *handler) showFeedIcon(w http.ResponseWriter, r *http.Request) {
- externalIconID := request.RouteStringParam(r, "externalIconID")
- icon, err := h.store.IconByExternalID(externalIconID)
- if err != nil {
- html.ServerError(w, r, err)
- return
- }
- if icon == nil {
- html.NotFound(w, r)
- return
- }
- response.New(w, r).WithCaching(icon.Hash, 72*time.Hour, func(b *response.Builder) {
- b.WithHeader("Content-Security-Policy", response.ContentSecurityPolicyForUntrustedContent)
- b.WithHeader("Content-Type", icon.MimeType)
- b.WithBody(icon.Content)
- if icon.MimeType != "image/svg+xml" {
- b.WithoutCompression()
- }
- b.Write()
- })
- }
|