-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathspeakers.go
208 lines (187 loc) · 4.25 KB
/
speakers.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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
package main
import (
"fmt"
"io"
"os"
"path/filepath"
"strings"
"github.com/gocarina/gocsv"
"gopkg.in/yaml.v2"
)
const GitHubURLPrefix = "https://github.com/"
type Speaker struct {
Name string `csv:"name"`
Avatar string `csv:"avatar"`
ID string `csv:"id"`
Location string `csv:"location"`
Bio string `csv:"bio"`
Twitter string `csv:"twitter"`
URL string `csv:"url"`
Organization string `csv:"organization"`
ShirtSize string `csv:"shirt_size"`
TalkFormat string `csv:"talk_format"`
Title string `csv:"title"`
SessionID string `csv:"session_id"`
Abstract string `csv:"abstract"`
Description string `csv:"description"`
Notes string `csv:"notes"`
AudienceLevel string `csv:"audience_level"`
Tags string `csv:"tags"`
Rating string `csv:"rating"`
State string `csv:"state"`
Confirmed string `csv:"confirmed"`
CreatedAt string `csv:"created_at"`
AdditionalInfo string `csv:"additional_info"`
}
type SpeakerContent struct {
Key string
Name string
ID string
Company string
Feature bool
PhotoURL string `yaml:"photoURL"`
Socials []*Social
}
type Social struct {
Icon string
Link string
Name string
}
type SessionContent struct {
Key string
Title string
ID string
Format string
TalkType string `yaml:"talkType"`
Level string
Tags []string
Speakers []string
VideoID *string `yaml:"videoId"`
Presentation *string
Draft bool
}
func createSpeaker(s *Speaker) {
wd, err := os.Getwd()
if err != nil {
panic(err)
}
dirPath := filepath.Join(wd, "speakers")
err = os.MkdirAll(dirPath, os.ModePerm)
if err != nil {
panic(err)
}
f, err := os.OpenFile(filepath.Join(dirPath, fmt.Sprintf("%s.md", s.ID)), os.O_WRONLY|os.O_CREATE, os.ModePerm)
if err != nil {
panic(err)
}
defer f.Close()
sc := &SpeakerContent{
Key: s.ID,
Name: s.Name,
ID: s.ID,
Company: s.Organization,
Feature: false,
PhotoURL: fmt.Sprintf("/images/speakers/speaker-%s.jpg", s.ID),
}
if s.Twitter != "" {
sc.Socials = append(sc.Socials, &Social{
Icon: "twitter",
Link: fmt.Sprintf("https://twitter.com/%s", s.Twitter),
Name: s.Twitter,
})
}
if s.URL != "" {
icon := "link"
name := "website"
if strings.HasPrefix(s.URL, GitHubURLPrefix) {
icon = "github"
name = strings.TrimPrefix(s.URL, GitHubURLPrefix)
}
sc.Socials = append(sc.Socials, &Social{
Icon: icon,
Link: s.URL,
Name: name,
})
}
out, err := yaml.Marshal(sc)
if err != nil {
panic(err)
}
body := fmt.Sprintf(`---
%s---
%s`, string(out), s.Bio)
rd := strings.NewReader(body)
_, err = io.Copy(f, rd)
if err != nil {
panic(err)
}
}
func createSession(s *Speaker) {
wd, err := os.Getwd()
if err != nil {
panic(err)
}
dirPath := filepath.Join(wd, "sessions")
err = os.MkdirAll(dirPath, os.ModePerm)
if err != nil {
panic(err)
}
f, err := os.OpenFile(filepath.Join(dirPath, fmt.Sprintf("session-%s.md", s.SessionID)), os.O_WRONLY|os.O_CREATE, os.ModePerm)
if err != nil {
panic(err)
}
defer f.Close()
var talkType string
switch s.TalkFormat {
case "Lightning Talk: 5 minutes":
talkType = "lightning_talk"
default:
// 他はやらない
panic(s.TalkFormat)
}
sc := &SessionContent{
Key: s.SessionID,
Title: s.Title,
ID: s.SessionID,
Format: "conference",
TalkType: talkType,
Level: strings.ToLower(s.AudienceLevel), // e.g. `Advanced` => `advanced`
Tags: []string{strings.ToUpper(s.SessionID)}, // e.g. `lt1` => `LT1`
Speakers: []string{s.ID},
Draft: false,
}
out, err := yaml.Marshal(sc)
if err != nil {
panic(err)
}
body := fmt.Sprintf(`---
%s---
%s
---
%s`, string(out), s.Abstract, s.Description)
_, err = f.WriteString(body)
if err != nil {
panic(err)
}
}
func processSpeakers() {
f, err := os.Open("speakers.csv")
if err != nil {
panic(err)
}
defer f.Close()
var speakers []*Speaker
if err := gocsv.UnmarshalFile(f, &speakers); err != nil { // Load clients from file
panic(err)
}
for _, s := range speakers {
if s.State != "accepted" {
continue
}
createSpeaker(s)
if s.SessionID == "" {
continue
}
createSession(s)
}
}