miniflux-v2/model/icon.go

33 lines
824 B
Go
Raw Normal View History

2017-11-20 06:10:04 +01:00
// Copyright 2017 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.
2018-08-25 06:51:50 +02:00
package model // import "miniflux.app/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"`
Content []byte `json:"content"`
}
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"`
}