-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.go
252 lines (226 loc) · 5.39 KB
/
model.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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
// Copyright ©2016 The ji-web-display Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
"sort"
"strings"
"time"
"github.com/clr-info/ji-web-display/indico"
)
type Agenda struct {
Day string
Sessions []Session
}
type Session struct {
Title string
Room string
Start, Stop string
Contributions []Contribution
active bool
}
func (s Session) CSSClass() string {
if s.active {
return "current-session"
}
return "session"
}
type Contribution struct {
Title string
Start string
Stop string
Duration time.Duration
Presenters []Presenter
active bool
}
func (c Contribution) CSSClass() string {
if c.active {
return "current-contribution"
}
return "contribution"
}
type Presenter struct {
Name string
Affiliation string
Email string
}
func (p Presenter) toHTML() string {
o := p.Name
if p.Affiliation != "" {
o += " (<em>" + p.Affiliation + "</em>)"
}
return o
}
func displayPresenters(p []Presenter) string {
var o []string
for i, v := range p {
if i > 0 {
o = append(o, ", ")
}
o = append(o, v.toHTML())
}
return strings.Join(o, "")
}
func newAgenda(date time.Time, table *indico.TimeTable) Agenda {
var day *indico.Day
for i, d := range table.Days {
if date.YearDay() == d.Date.YearDay() {
day = &table.Days[i]
}
}
agenda := Agenda{
Day: date.Format("2006-01-02<br>15:04:05"),
}
if day == nil {
return agenda
}
for _, s := range day.Sessions {
sort.Sort(contrByTime(s.Contributions))
var contr []Contribution
activeSession := date.Before(s.EndDate) && date.After(s.StartDate)
for _, c := range s.Contributions {
if !activeSession {
continue
}
if c.EndDate.Before(date) {
continue
}
var p []Presenter
for _, pp := range c.Presenters {
p = append(p, Presenter{
Name: pp.Name,
Affiliation: pp.Affiliation,
Email: pp.Email,
})
}
activeContr := date.Before(c.EndDate) && date.After(c.StartDate)
contr = append(contr, Contribution{
Title: c.Title,
Start: c.StartDate.Format("15:04"),
Stop: c.EndDate.Format("15:04"),
Duration: c.Duration,
Presenters: p,
active: activeContr,
})
}
agenda.Sessions = append(agenda.Sessions, Session{
Title: s.Title,
Room: s.Room,
Start: s.StartDate.Format("15:04"),
Stop: s.EndDate.Format("15:04"),
Contributions: contr,
active: activeSession,
})
}
trimPastSessions(&agenda)
trimActiveSessions(&agenda)
trimFutureSessions(&agenda)
return agenda
}
// trimPastSessions removes unnecessary past sessions
func trimPastSessions(agenda *Agenda) {
idx := -1
for i, s := range agenda.Sessions {
if s.active {
idx = i
break
}
}
const head = 1
if idx > head {
i := idx - head
if i < 0 {
i = head
}
agenda.Sessions = agenda.Sessions[i:]
}
}
// trimActiveSessions removes unnecessary contributions of active sessions
func trimActiveSessions(agenda *Agenda) {
for ii, s := range agenda.Sessions {
if !s.active {
continue
}
idx := 0
for i, c := range s.Contributions {
if c.active {
idx = i
}
}
if len(s.Contributions)-idx > 3 {
i := idx + 3
merged := Contribution{
Title: " ... ",
Start: s.Contributions[i].Start,
Stop: s.Contributions[len(s.Contributions)-1].Stop,
}
var sum time.Duration
for j := i; j < len(s.Contributions); j++ {
sum += s.Contributions[j].Duration
}
merged.Duration = sum
s.Contributions = s.Contributions[:i]
s.Contributions = append(s.Contributions, merged)
agenda.Sessions[ii] = s
}
}
}
// trimFutureSessions removes unnecessary future sessions
func trimFutureSessions(agenda *Agenda) {
idx := len(agenda.Sessions)
for i, s := range agenda.Sessions {
if s.active {
idx = i
}
}
if len(agenda.Sessions)-idx > 4 {
i := idx + 4
merged := Session{
Title: " ... ",
Start: agenda.Sessions[i].Start,
Stop: agenda.Sessions[len(agenda.Sessions)-1].Stop,
}
agenda.Sessions = agenda.Sessions[:i]
agenda.Sessions = append(agenda.Sessions, merged)
}
}
func sortTimeTable(tbl *indico.TimeTable) {
if tbl == nil || tbl.Days == nil {
return
}
sort.Sort(byDays(tbl.Days))
for i, day := range tbl.Days {
sort.Sort(sessionsByDays(day.Sessions))
for j, sess := range day.Sessions {
sort.Sort(contrByTime(sess.Contributions))
day.Sessions[j] = sess
}
tbl.Days[i] = day
}
}
type byDays []indico.Day
func (d byDays) Len() int { return len(d) }
func (d byDays) Less(i, j int) bool { return d[i].Date.Unix() < d[j].Date.Unix() }
func (d byDays) Swap(i, j int) { d[i], d[j] = d[j], d[i] }
type sessionsByDays []indico.Session
func (p sessionsByDays) Len() int { return len(p) }
func (p sessionsByDays) Less(i, j int) bool {
pi := p[i]
pj := p[j]
si := pi.StartDate.Unix()
sj := pj.StartDate.Unix()
if si != sj {
return si < sj
}
ei := pi.EndDate.Unix()
ej := pj.EndDate.Unix()
if ei != ej {
return ei < ej
}
return pi.ID < pj.ID
}
func (p sessionsByDays) Swap(i, j int) { p[i], p[j] = p[j], p[i] }
type contrByTime []indico.Contribution
func (p contrByTime) Len() int { return len(p) }
func (p contrByTime) Less(i, j int) bool { return p[i].StartDate.Unix() < p[j].StartDate.Unix() }
func (p contrByTime) Swap(i, j int) { p[i], p[j] = p[j], p[i] }