From 2002d60fbe0cbc0b74bfcc29305d018db1564d3c Mon Sep 17 00:00:00 2001 From: Frédéric Guillot Date: Thu, 5 Oct 2023 22:23:29 -0700 Subject: Add new API endpoint /icons/{iconID} --- internal/api/icon.go | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) (limited to 'internal/api/icon.go') diff --git a/internal/api/icon.go b/internal/api/icon.go index 11cbbfa6..84db8652 100644 --- a/internal/api/icon.go +++ b/internal/api/icon.go @@ -10,7 +10,7 @@ import ( "miniflux.app/v2/internal/http/response/json" ) -func (h *handler) feedIcon(w http.ResponseWriter, r *http.Request) { +func (h *handler) getIconByFeedID(w http.ResponseWriter, r *http.Request) { feedID := request.RouteInt64Param(r, "feedID") if !h.store.HasIcon(feedID) { @@ -35,3 +35,24 @@ func (h *handler) feedIcon(w http.ResponseWriter, r *http.Request) { Data: icon.DataURL(), }) } + +func (h *handler) getIconByIconID(w http.ResponseWriter, r *http.Request) { + iconID := request.RouteInt64Param(r, "iconID") + + icon, err := h.store.IconByID(iconID) + if err != nil { + json.ServerError(w, r, err) + return + } + + if icon == nil { + json.NotFound(w, r) + return + } + + json.OK(w, r, &feedIconResponse{ + ID: icon.ID, + MimeType: icon.MimeType, + Data: icon.DataURL(), + }) +} -- cgit v1.2.3