miniflux-v2/internal/model/icon.go

32 lines
783 B
Go
Raw Normal View History

// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
2017-11-20 06:10:04 +01:00
package model // import "miniflux.app/v2/internal/model"
2017-11-20 06:10:04 +01:00
2017-12-04 02:44:27 +01:00
import (
"encoding/base64"
"fmt"
)
2017-11-20 06:10:04 +01:00
// Icon represents a website icon (favicon)
type Icon struct {
ID int64 `json:"id"`
Hash string `json:"hash"`
MimeType string `json:"mime_type"`
2023-10-06 07:23:29 +02:00
Content []byte `json:"-"`
2017-11-20 06:10:04 +01:00
}
2017-12-04 02:44:27 +01:00
// DataURL returns the data URL of the icon.
func (i *Icon) DataURL() string {
return fmt.Sprintf("%s;base64,%s", i.MimeType, base64.StdEncoding.EncodeToString(i.Content))
}
2021-10-24 03:22:27 +02:00
// Icons represents a list of icons.
2017-12-04 02:44:27 +01:00
type Icons []*Icon
2021-10-24 03:22:27 +02:00
// FeedIcon is a junction table between feeds and icons.
2017-11-20 06:10:04 +01:00
type FeedIcon struct {
FeedID int64 `json:"feed_id"`
IconID int64 `json:"icon_id"`
}