-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
1841 lines (1643 loc) · 52.3 KB
/
main.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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
import (
"context"
"encoding/json"
"flag"
"fmt"
"html/template"
"log"
"os"
"path/filepath"
"regexp"
"sort"
"strconv"
"strings"
"time"
"unicode"
"github.com/flopp/freiburg-run/internal/utils"
"github.com/flopp/go-coordsparser"
"google.golang.org/api/option"
"google.golang.org/api/sheets/v4"
)
const (
usage = `USAGE: %s [OPTIONS...] [EVENTID...]
OPTIONS:
`
)
type CommandLineOptions struct {
configFile string
outDir string
hashFile string
addedFile string
}
func parseCommandLine() CommandLineOptions {
configFile := flag.String("config", "", "select config file")
outDir := flag.String("out", ".out", "output directory")
hashFile := flag.String("hashfile", ".hashes", "file storing file hashes (for sitemap)")
addedFile := flag.String("addedfile", ".added", "file storing event addition dates")
flag.Usage = func() {
fmt.Fprintf(flag.CommandLine.Output(), usage, os.Args[0])
flag.PrintDefaults()
}
flag.Parse()
if *configFile == "" {
panic("You have to specify a config file, e.g. -config myconfig.json")
}
return CommandLineOptions{
*configFile,
*outDir,
*hashFile,
*addedFile,
}
}
type NameUrl struct {
Name string
Url string
}
func (n NameUrl) IsRegistration() bool {
return strings.Contains(n.Name, "Anmeldung")
}
type Location struct {
City string
Country string
Geo string
Lat float64
Lon float64
Distance string
Direction string
}
func (loc Location) Name() string {
if loc.City == "" {
return ""
}
if loc.Country == "Frankreich" {
return fmt.Sprintf(`%s, FR 🇫🇷`, loc.City)
}
if loc.Country == "Schweiz" {
return fmt.Sprintf(`%s, CH 🇨🇭`, loc.City)
}
return loc.City
}
func (loc Location) NameNoFlag() string {
if loc.City == "" {
return ""
}
if loc.Country == "Frankreich" {
return fmt.Sprintf(`%s, FR`, loc.City)
}
if loc.Country == "Schweiz" {
return fmt.Sprintf(`%s, CH`, loc.City)
}
return loc.City
}
func (loc Location) HasGeo() bool {
return loc.Geo != ""
}
func (loc Location) Dir() string {
return fmt.Sprintf(`%s %s von Freiburg`, loc.Distance, loc.Direction)
}
func (loc Location) DirLong() string {
return fmt.Sprintf(`%s %s von Freiburg Zentrum`, loc.Distance, loc.Direction)
}
func (loc Location) GoogleMaps() string {
return fmt.Sprintf(`https://www.google.com/maps/place/%s`, loc.Geo)
}
func (loc Location) Tags() []string {
tags := make([]string, 0)
if loc.Country != "" {
tags = append(tags, utils.SanitizeName(loc.Country))
}
// tags = append(tags, utils.SplitAndSanitize(loc.City)...)
return tags
}
var reFr = regexp.MustCompile(`\s*^(.*)\s*,\s*FR\s*🇫🇷\s*$`)
var reCh = regexp.MustCompile(`\s*^(.*)\s*,\s*CH\s*🇨🇭\s*$`)
func createLocation(locationS, coordinatesS string) Location {
country := ""
if m := reFr.FindStringSubmatch(locationS); m != nil {
country = "Frankreich"
locationS = m[1]
} else if m := reCh.FindStringSubmatch(locationS); m != nil {
country = "Schweiz"
locationS = m[1]
}
lat, lon, err := coordsparser.Parse(coordinatesS)
coordinates := ""
distance := ""
direction := ""
if err == nil {
coordinates = fmt.Sprintf("%.6f,%.6f", lat, lon)
// Freiburg
lat0 := 47.996090
lon0 := 7.849400
d, b := utils.DistanceBearing(lat0, lon0, lat, lon)
distance = fmt.Sprintf("%.1fkm", d)
direction = utils.ApproxDirection(b)
}
return Location{locationS, country, coordinates, lat, lon, distance, direction}
}
type Event struct {
Type string
Name string
NameOld string
Time utils.TimeRange
Old bool
Status string
Cancelled bool
Obsolete bool
Special bool
Location Location
Details string
Details2 template.HTML
Url string
RawTags []string
Tags []*Tag
RawSeries []string
Series []*Serie
Links []*NameUrl
Added string
New bool
Prev *Event
Next *Event
UpcomingNear []*Event
}
func (event Event) GenerateDescription() string {
min := 110
max := 160
var description string
location := ""
if event.Location.NameNoFlag() != "" {
location = fmt.Sprintf(" in '%s'", event.Location.NameNoFlag())
}
time := ""
if event.Time.Original != "" {
if event.Time.Original == "Verschiedene Termine" {
time = ", verschiedene Termine"
} else {
time = fmt.Sprintf(" am %s", event.Time.Original)
}
}
switch event.Type {
case "event":
description = fmt.Sprintf("Informationen zur Laufveranstaltung '%s'%s%s", event.Name, location, time)
case "group":
description = fmt.Sprintf("Informationen zur Laufgruppe / zum Lauftreff '%s'%s%s", event.Name, location, time)
case "shop":
description = fmt.Sprintf("Informationen zum Laufshop '%s'%s", event.Name, location)
}
if len(description) >= min {
return description
}
for i, tag := range event.Tags {
if len(description) >= max {
break
}
if i == 0 {
description += "; "
} else {
description += ", "
}
description += tag.Name
}
return description
}
func (event Event) IsSeparator() bool {
return event.Type == ""
}
func NonSeparators(events []*Event) int {
count := 0
for _, e := range events {
if !e.IsSeparator() {
count += 1
}
}
return count
}
func createSeparatorEvent(label string) *Event {
return &Event{
"",
label,
"",
utils.TimeRange{},
false,
"",
false,
false,
false,
Location{},
"",
"",
"",
nil,
nil,
nil,
nil,
nil,
"",
true,
nil,
nil,
nil,
}
}
func IsNew(s string, now time.Time) bool {
days := 14
d, err := utils.ParseDate(s)
if err == nil {
return d.AddDate(0, 0, days).After(now)
}
return false
}
func (event *Event) slug(ext string) string {
t := event.Type
if !event.Time.IsZero() {
return fmt.Sprintf("%s/%d-%s.%s", t, event.Time.Year(), utils.SanitizeName(event.Name), ext)
}
return fmt.Sprintf("%s/%s.%s", t, utils.SanitizeName(event.Name), ext)
}
func (event *Event) SlugOld() string {
if event.NameOld == "" {
return ""
}
t := event.Type
if strings.Contains(event.NameOld, "parkrun") {
t = "event"
}
if !event.Time.IsZero() {
return fmt.Sprintf("%s/%d-%s.html", t, event.Time.Year(), utils.SanitizeName(event.NameOld))
}
return fmt.Sprintf("%s/%s.html", t, utils.SanitizeName(event.NameOld))
}
func (event *Event) Slug() string {
return event.slug("html")
}
func (event *Event) ImageSlug() string {
return event.slug("png")
}
func (event *Event) LinkTitle() string {
if event.Type == "event" {
if strings.HasPrefix(event.Url, "mailto:") {
return "Mail an Veranstalter"
}
return "Zur Veranstaltung"
}
if event.Type == "group" {
if strings.HasPrefix(event.Url, "mailto:") {
return "Mail an Organisator"
}
return "Zum Lauftreff"
}
if event.Type == "shop" {
return "Zum Lauf-Shop"
}
return "Zur Veranstaltung"
}
func (event *Event) NiceType() string {
if event.Old {
return "vergangene Veranstaltung"
}
if event.Type == "event" {
return "Veranstaltung"
}
if event.Type == "group" {
return "Lauftreff"
}
if event.Type == "shop" {
return "Lauf-Shop"
}
return "Veranstaltung"
}
type ParkrunEvent struct {
IsCurrentWeek bool
Index string
Date string
Runners string
Temp string
Special string
Cafe string
Results string
Report string
Author string
Photos string
}
type Tag struct {
Sanitized string
Name string
Description string
Events []*Event
EventsOld []*Event
Groups []*Event
Shops []*Event
}
func CreateTag(name string) *Tag {
return &Tag{name, name, "", make([]*Event, 0), make([]*Event, 0), make([]*Event, 0), make([]*Event, 0)}
}
func (tag *Tag) Slug() string {
return fmt.Sprintf("tag/%s.html", tag.Sanitized)
}
func (tag *Tag) NumEvents() int {
return NonSeparators(tag.Events)
}
func (tag *Tag) NumOldEvents() int {
return NonSeparators(tag.EventsOld)
}
func (tag *Tag) NumGroups() int {
return NonSeparators(tag.Groups)
}
func (tag *Tag) NumShops() int {
return NonSeparators(tag.Shops)
}
type Serie struct {
Sanitized string
Name string
Description template.HTML
Links []*NameUrl
Events []*Event
EventsOld []*Event
Groups []*Event
Shops []*Event
}
func (s Serie) IsOld() bool {
return len(s.Events) == 0 && len(s.Groups) == 0 && len(s.Shops) == 0
}
func (s Serie) Num() int {
return NonSeparators(s.Events) + NonSeparators(s.EventsOld) + NonSeparators(s.Groups) + NonSeparators(s.Shops)
}
func CreateSerie(id string, name string) *Serie {
return &Serie{id, name, "", make([]*NameUrl, 0), make([]*Event, 0), make([]*Event, 0), make([]*Event, 0), make([]*Event, 0)}
}
func (serie *Serie) Slug() string {
return fmt.Sprintf("serie/%s.html", serie.Sanitized)
}
func (serie *Serie) ImageSlug() string {
return fmt.Sprintf("serie/%s.png", serie.Sanitized)
}
type TemplateData struct {
Title string
Type string
Description string
Nav string
Canonical string
Image string
Breadcrumbs []utils.Breadcrumb
Timestamp string
TimestampFull string
SheetUrl string
Events []*Event
EventsOld []*Event
Groups []*Event
Shops []*Event
Parkrun []*ParkrunEvent
Tags []*Tag
Series []*Serie
SeriesOld []*Serie
JsFiles []string
CssFiles []string
FathomJs string
}
func (d TemplateData) YearTitle() string {
return d.Title
}
func (d TemplateData) CountEvents() int {
count := 0
for _, event := range d.Events {
if !event.IsSeparator() {
count += 1
}
}
return count
}
type EventTemplateData struct {
Event *Event
Title string
Type string
Description string
Nav string
Canonical string
Image string
Breadcrumbs []utils.Breadcrumb
Main string
Timestamp string
TimestampFull string
SheetUrl string
JsFiles []string
CssFiles []string
FathomJs string
}
func (d EventTemplateData) YearTitle() string {
if d.Event.Type != "event" {
return d.Title
}
if d.Event.Time.IsZero() {
return d.Title
}
yearS := fmt.Sprintf("%d", d.Event.Time.Year())
if strings.Contains(d.Title, yearS) {
return d.Title
}
return fmt.Sprintf("%s %s", d.Title, yearS)
}
type TagTemplateData struct {
Tag *Tag
Title string
Type string
Description string
Nav string
Canonical string
Image string
Breadcrumbs []utils.Breadcrumb
Main string
Timestamp string
TimestampFull string
SheetUrl string
JsFiles []string
CssFiles []string
FathomJs string
}
func (d TagTemplateData) YearTitle() string {
return d.Title
}
type SerieTemplateData struct {
Serie *Serie
Title string
Type string
Description string
Nav string
Canonical string
Image string
Breadcrumbs []utils.Breadcrumb
Main string
Timestamp string
TimestampFull string
SheetUrl string
JsFiles []string
CssFiles []string
FathomJs string
}
func (d SerieTemplateData) YearTitle() string {
return d.Title
}
type SitemapTemplateData struct {
Title string
Type string
Description string
Nav string
Canonical string
Image string
Breadcrumbs []utils.Breadcrumb
Timestamp string
TimestampFull string
SheetUrl string
Categories []utils.SitemapCategory
JsFiles []string
CssFiles []string
FathomJs string
}
func (d SitemapTemplateData) YearTitle() string {
return d.Title
}
func GetMtimeYMD(filePath string) string {
stat, err := os.Stat(filePath)
if err != nil {
return ""
}
return stat.ModTime().Format("2006-01-02")
}
type ConfigData struct {
ApiKey string `json:"api_key"`
SheetId string `json:"sheet_id"`
}
func parseLinks(ss []string, registration string) []*NameUrl {
links := make([]*NameUrl, 0, len(ss))
hasRegistration := registration != ""
if hasRegistration {
links = append(links, &NameUrl{"Anmeldung", registration})
}
for _, s := range ss {
if s == "" {
continue
}
a := strings.Split(s, "|")
if len(a) != 2 {
panic(fmt.Errorf("bad link: <%s>", s))
}
if !hasRegistration || a[0] != "Anmeldung" {
links = append(links, &NameUrl{a[0], a[1]})
}
}
return links
}
func SplitDetails(s string) (string, string) {
i := strings.Index(s, "|")
if i > -1 {
return s[:i], s[i+1:]
}
return s, ""
}
func getAllSheets(config ConfigData, srv *sheets.Service) ([]string, error) {
response, err := srv.Spreadsheets.Get(config.SheetId).Fields("sheets(properties(sheetId,title))").Do()
if err != nil {
return nil, err
}
if response.HTTPStatusCode != 200 {
return nil, fmt.Errorf("http status %v when trying to get sheets", response.HTTPStatusCode)
}
sheets := make([]string, 0)
for _, v := range response.Sheets {
prop := v.Properties
sheets = append(sheets, prop.Title)
}
return sheets, nil
}
type Columns struct {
index map[string]int
}
func initColumns(row []interface{}) (Columns, error) {
index := make(map[string]int)
for col, value := range row {
s := fmt.Sprintf("%v", value)
if existingCol, found := index[s]; found {
return Columns{}, fmt.Errorf("duplicate title '%s' in columns %d and %d", s, existingCol, col)
}
index[s] = col
}
return Columns{index}, nil
}
func (cols *Columns) getValue(title string, row []interface{}) string {
col, found := cols.index[title]
if !found {
panic(fmt.Errorf("requested column not found: %s", title))
}
if col >= len(row) {
return ""
}
return fmt.Sprintf("%v", row[col])
}
func fetchTable(config ConfigData, srv *sheets.Service, table string) (Columns, [][]interface{}, error) {
resp, err := srv.Spreadsheets.Values.Get(config.SheetId, fmt.Sprintf("%s!A1:Z", table)).Do()
if err != nil {
return Columns{}, nil, fmt.Errorf("cannot fetch table '%s': %v", table, err)
}
if len(resp.Values) == 0 {
return Columns{}, nil, fmt.Errorf("got 0 rows when fetching table '%s'", table)
}
cols := Columns{}
rows := make([][]interface{}, 0, len(resp.Values)-1)
for line, row := range resp.Values {
if line == 0 {
cols, err = initColumns(row)
if err != nil {
return Columns{}, nil, fmt.Errorf("failed to parse rows when fetching table '%s': %v", table, err)
}
continue
}
rows = append(rows, row)
}
return cols, rows, nil
}
func fetchEvents(config ConfigData, srv *sheets.Service, today time.Time, eventType string, table string) []*Event {
cols, rows, err := fetchTable(config, srv, table)
utils.Check(err)
events := make([]*Event, 0)
for line, row := range rows {
dateS := cols.getValue("DATE", row)
nameS := cols.getValue("NAME", row)
statusS := cols.getValue("STATUS", row)
cancelled := strings.HasPrefix(statusS, "abgesagt")
if cancelled && statusS == "abgesagt" {
statusS = ""
}
special := statusS == "spezial"
obsolete := statusS == "obsolete"
if special || obsolete {
statusS = ""
}
urlS := cols.getValue("URL", row)
if statusS == "temp" {
log.Printf("table '%s', line '%d': skipping row with temp status", table, line)
continue
}
if eventType == "event" {
if dateS == "" {
log.Printf("table '%s', line '%d': skipping row with empty date", table, line)
continue
}
}
if nameS == "" {
log.Printf("table '%s', line '%d': skipping row with empty name", table, line)
continue
}
if urlS == "" {
log.Printf("table '%s', line '%d': skipping row with empty url", table, line)
continue
}
descriptionS := cols.getValue("DESCRIPTION", row)
locationS := cols.getValue("LOCATION", row)
coordinatesS := cols.getValue("COORDINATES", row)
registration := cols.getValue("REGISTRATION", row)
tagsS := cols.getValue("TAGS", row)
linksS := make([]string, 4)
linksS[0] = cols.getValue("LINK1", row)
linksS[1] = cols.getValue("LINK2", row)
linksS[2] = cols.getValue("LINK3", row)
linksS[3] = cols.getValue("LINK4", row)
name, nameOld := SplitDetails(nameS)
url := urlS
description1, description2 := SplitDetails(descriptionS)
tags := make([]string, 0)
series := make([]string, 0)
for _, t := range utils.Split(tagsS) {
if strings.HasPrefix(t, "serie") {
series = append(series, t[6:])
} else {
tags = append(tags, utils.SanitizeName(t))
}
}
location := createLocation(locationS, coordinatesS)
tags = append(tags, location.Tags()...)
timeRange, err := utils.CreateTimeRange(dateS)
if err != nil {
log.Printf("event '%s': %v", name, err)
}
isOld := timeRange.Before(today)
year := timeRange.Year()
if year > 0 {
tags = append(tags, fmt.Sprintf("%d", year))
}
links := parseLinks(linksS, registration)
events = append(events, &Event{
eventType,
name,
nameOld,
timeRange,
isOld,
statusS,
cancelled,
obsolete,
special,
location,
description1,
template.HTML(description2),
url,
utils.SortAndUniquify(tags),
nil,
series,
nil,
links,
"",
false,
nil,
nil,
nil,
})
}
return events
}
func fetchParkrunEvents(config ConfigData, srv *sheets.Service, today time.Time, table string) []*ParkrunEvent {
cols, rows, err := fetchTable(config, srv, table)
utils.Check(err)
events := make([]*ParkrunEvent, 0)
for _, row := range rows {
index := cols.getValue("INDEX", row)
date := cols.getValue("DATE", row)
runners := cols.getValue("RUNNERS", row)
temp := cols.getValue("TEMP", row)
special := cols.getValue("SPECIAL", row)
cafe := cols.getValue("CAFE", row)
results := cols.getValue("RESULTS", row)
report := cols.getValue("REPORT", row)
author := cols.getValue("AUTHOR", row)
photos := cols.getValue("PHOTOS", row)
if temp != "" {
temp = fmt.Sprintf("%s°C", temp)
}
if results != "" {
// if "results" only contains a number, build full url
if _, err := strconv.ParseInt(results, 10, 64); err == nil {
results = fmt.Sprintf("https://www.parkrun.com.de/dietenbach/results/%s", results)
}
}
currentWeek := false
d, err := utils.ParseDate(date)
if err == nil {
today_y, today_m, today_d := today.Date()
d_y, d_m, d_d := d.Date()
currentWeek = (today_y == d_y && today_m == d_m && today_d == d_d) || (today.After(d) && today.Before(d.AddDate(0, 0, 7)))
}
events = append(events, &ParkrunEvent{
currentWeek,
index,
date,
runners,
temp,
special,
cafe,
results,
report,
author,
photos,
})
}
return events
}
func fetchTagDescriptions(config ConfigData, srv *sheets.Service, table string) map[string]NameDescription {
cols, rows, err := fetchTable(config, srv, table)
utils.Check(err)
descriptions := make(map[string]NameDescription)
for _, row := range rows {
tagS := cols.getValue("TAG", row)
nameS := cols.getValue("NAME", row)
descriptionS := cols.getValue("DESCRIPTION", row)
tag := utils.SanitizeName(tagS)
if tag != "" && (nameS != "" || descriptionS != "") {
descriptions[tag] = NameDescription{nameS, descriptionS}
}
}
return descriptions
}
func fetchSeries(config ConfigData, srv *sheets.Service, table string) map[string]*Serie {
cols, rows, err := fetchTable(config, srv, table)
utils.Check(err)
series := make(map[string]*Serie)
for _, row := range rows {
nameS := cols.getValue("NAME", row)
descriptionS := cols.getValue("DESCRIPTION", row)
linksS := make([]string, 4)
linksS[0] = cols.getValue("LINK1", row)
linksS[1] = cols.getValue("LINK2", row)
linksS[2] = cols.getValue("LINK3", row)
linksS[3] = cols.getValue("LINK4", row)
id := utils.SanitizeName(nameS)
if id != "" {
series[id] = &Serie{id, nameS, template.HTML(descriptionS), parseLinks(linksS, ""), make([]*Event, 0), make([]*Event, 0), make([]*Event, 0), make([]*Event, 0)}
}
}
return series
}
func createMonthLabel(t time.Time) string {
return fmt.Sprintf("%s %d", utils.MonthStr(t.Month()), t.Year())
}
func isSimilarName(s1, s2 string) bool {
var builder1 strings.Builder
for _, r := range s1 {
if unicode.IsLetter(r) {
builder1.WriteRune(unicode.ToLower(r))
}
}
var builder2 strings.Builder
for _, r := range s2 {
if unicode.IsLetter(r) {
builder2.WriteRune(unicode.ToLower(r))
}
}
return builder1.String() == builder2.String()
}
func validateDateOrder(events []*Event) {
var lastDate utils.TimeRange
for _, event := range events {
if !lastDate.IsZero() {
if event.Time.From.IsZero() {
log.Printf("event '%s' has no date", event.Name)
return
}
if event.Time.From.Before(lastDate.From) {
log.Printf("event '%s' has date '%s' before date of previous event '%s'", event.Name, event.Time.Formatted, lastDate.Formatted)
return
}
}
lastDate = event.Time
}
}
func findPrevNextEvents(events []*Event) {
for _, event := range events {
var prev *Event = nil
for _, event2 := range events {
if event2 == event {
break
}
if isSimilarName(event2.Name, event.Name) /*&& event2.Location.Geo == event.Location.Geo*/ {
prev = event2
}
}
if prev != nil {
prev.Next = event
event.Prev = prev
}
}
}
func findUpcomingNearEvents(events []*Event, upcomingEvents []*Event, maxDistanceKM float64, count int) {
for _, event := range events {
if !event.Location.HasGeo() {
continue
}
event.UpcomingNear = make([]*Event, 0, count)
for _, candidate := range upcomingEvents {
if candidate == event || candidate.Cancelled || !candidate.Location.HasGeo() {
continue
}
if distanceKM, _ := utils.DistanceBearing(event.Location.Lat, event.Location.Lon, candidate.Location.Lat, candidate.Location.Lon); distanceKM > maxDistanceKM {
continue
}
event.UpcomingNear = append(event.UpcomingNear, candidate)
if len(event.UpcomingNear) >= count {
break
}
}
}
}
func splitEvents(events []*Event) ([]*Event, []*Event) {
futureEvents := make([]*Event, 0)
pastEvents := make([]*Event, 0)
for _, event := range events {
if event.Old {
pastEvents = append(pastEvents, event)
} else {
futureEvents = append(futureEvents, event)
}
}
return futureEvents, pastEvents
}
func splitObsolete(events []*Event) ([]*Event, []*Event) {
currentEvents := make([]*Event, 0)
obsoleteEvents := make([]*Event, 0)
for _, event := range events {
if event.Obsolete {
obsoleteEvents = append(obsoleteEvents, event)
} else {
currentEvents = append(currentEvents, event)
}
}
return currentEvents, obsoleteEvents
}
func addMonthSeparators(events []*Event) []*Event {
result := make([]*Event, 0, len(events))
var last time.Time
for _, event := range events {
d := event.Time.From
if event.Time.From.IsZero() {
// no label
} else if last.IsZero() {
// initial label
last = d