1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
|
package blog
import (
"encoding/json"
"fmt"
"time"
"github.com/SayaAndy/saya-today-web/internal/frontmatter"
)
const IndexFileName = "index.json"
const MedleysIndexFileName = "medleys.json"
const IndexSchemaVersion = 2
type IndexEntry struct {
Link string `json:"link"`
ModifiedTime time.Time `json:"modifiedTime"`
Title string `json:"title"`
ShortDescription string `json:"shortDescription"`
ActionDate string `json:"actionDate"`
PublishedTime time.Time `json:"publishedTime"`
Thumbnail string `json:"thumbnail"`
Tags []string `json:"tags"`
Geolocation string `json:"geolocation"`
Medley string `json:"medley,omitempty"`
MedleyPart int `json:"medleyPart,omitempty"`
}
func (e IndexEntry) Metadata() *frontmatter.Metadata {
return &frontmatter.Metadata{
Title: e.Title,
ShortDescription: e.ShortDescription,
ActionDate: e.ActionDate,
PublishedTime: e.PublishedTime,
Thumbnail: e.Thumbnail,
Tags: e.Tags,
Geolocation: e.Geolocation,
Medley: e.Medley,
MedleyPart: e.MedleyPart,
}
}
type IndexV2Category struct {
GeneratedAt time.Time `json:"generatedAt"`
Pages map[string]IndexEntry `json:"pages"`
}
type IndexV1Category struct {
GeneratedAt time.Time `json:"generatedAt"`
Pages []IndexEntry `json:"pages"`
}
type Index struct {
SchemaVersion int `json:"schemaVersion"`
GeneratedAt time.Time `json:"generatedAt"`
Categories any `json:"categories"`
}
func (idx *Index) UnmarshalJSON(data []byte) error {
var tmp struct {
SchemaVersion int `json:"schemaVersion"`
GeneratedAt time.Time `json:"generatedAt"`
Categories json.RawMessage `json:"categories"`
}
if err := json.Unmarshal(data, &tmp); err != nil {
return err
}
idx.SchemaVersion = tmp.SchemaVersion
idx.GeneratedAt = tmp.GeneratedAt
switch tmp.SchemaVersion {
case 1:
var categories map[string]*IndexV1Category
if err := json.Unmarshal(tmp.Categories, &categories); err != nil {
return fmt.Errorf("unmarshal map[string]*IndexV1Category: %w", err)
}
idx.Categories = &categories
case 2:
var categories map[string]*IndexV2Category
if err := json.Unmarshal(tmp.Categories, &categories); err != nil {
return fmt.Errorf("unmarshal map[string]*IndexV2Category: %w", err)
}
idx.Categories = &categories
default:
return fmt.Errorf("unsupported index version: %d", tmp.SchemaVersion)
}
return nil
}
type MedleyEntry struct {
Codename string `json:"codename"`
Content []string `json:"content"`
}
type MedleyPageEntry struct {
Codename string `json:"codename"`
Position int `json:"position"`
}
|