-
Notifications
You must be signed in to change notification settings - Fork 0
/
web.go
130 lines (106 loc) · 3.22 KB
/
web.go
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
package miniocast
import (
"bytes"
"context"
_ "embed" // for embedding templates
"html/template"
"log"
"strconv"
"strings"
"time"
"github.com/minio/minio-go/v7"
)
//go:embed templates/web.html.tmpl
var webstr string
//go:embed templates/web.css.tmpl
var cssstr string
//go:embed templates/web.js.tmpl
var jsstr string
// Web は、index.htmlに含めるデータを格納する
type Web struct {
Title string
Subtitle string
Author string
Description string
Link string
Items []*WebItem
SavePlayState bool
}
// WebItem は、index.htmlに含める各エピソードのデータを格納する
type WebItem struct {
FileURL string
PubDateFormatted string
Title string
Subtitle string
Description string
}
// UpdateWeb は、index.htmlを作成あるいは更新する
func (pref *PodcastPref) UpdateWeb(infos FileInfos, ct *minio.Client) {
web := pref.newWeb()
newItems, err := pref.webItemsFromInfo(infos)
if err != nil {
log.Printf("info: %s の新規Webアイテムの作成に失敗しました:%s", pref.Folder, err)
return
}
web.Items = newItems
if err := pref.uploadWeb(ct, &web); err != nil {
log.Printf("info: index.htmlのアップロードに失敗しました:%s", err)
}
}
// newWeb は、webデータを初期化する
func (pref *PodcastPref) newWeb() (web Web) {
web.Title = pref.Title
web.Subtitle = pref.Subtitle
web.Author = pref.Author
web.Description = pref.Description
web.Link = pref.Link
web.SavePlayState = pref.SavePlayState
return
}
// webItemsFromInfo は、音声ファイルのObjectInfoをもとに新規アイテムの構造体を生成する
func (pref *PodcastPref) webItemsFromInfo(fInfos FileInfos) (newItems []*WebItem, err error) {
lastID := len(fInfos)
if lastID == 0 {
return
}
for i, info := range fInfos {
item := WebItem{}
fn := strings.TrimLeft(info.Key, pref.Folder+"/")
id, title, sub := getDetailsFromName(fn)
idst := ""
item.Subtitle = sub
if id != 0 {
idst = " 第" + strconv.Itoa(id) + "回"
} else if pref.Serial > 0 {
idst = " 第" + strconv.Itoa(lastID+pref.Serial-1-i) + "回"
}
item.Title = title + idst
item.FileURL = pref.Link + strings.TrimLeft(info.Key, pref.Folder)
item.PubDateFormatted = parseDate(info.LastModified)
newItems = append(newItems, &item)
}
return
}
func parseDate(t time.Time) (upd string) {
if !t.IsZero() {
return t.Format(time.RFC1123Z)
}
return time.Now().UTC().Format(time.RFC1123Z)
}
// uploadWeb は、クラウドストレージにindex.htmlをアップロードする
func (pref *PodcastPref) uploadWeb(ct *minio.Client, web *Web) (err error) {
ctx := context.Background()
tmpstr := webstr + cssstr + jsstr
wbt := template.Must(template.New("web").Parse(tmpstr))
buf := new(bytes.Buffer)
if err = wbt.Execute(buf, *web); err != nil {
log.Printf("alert: index.htmlのテンプレート展開に失敗しました:%s", err)
return
}
l := int64(buf.Len())
_, err = ct.PutObject(ctx, pref.Bucket, pref.Folder+"/index.html", buf, l, minio.PutObjectOptions{ContentType: "text/html"})
if err != nil {
log.Printf("alert: %s のindex.htmlのアップロードに失敗しました:%s", pref.Folder, err)
}
return
}