This repository was archived by the owner on May 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathformat.go
176 lines (158 loc) · 4.25 KB
/
format.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
package busetabot
import (
"bytes"
"regexp"
"sort"
"strconv"
"strings"
"text/template"
"time"
"github.com/yi-jiayu/datamall/v3"
)
const (
FormatterSummary = "s"
FormatterFeatures = "f"
)
var trimTrailingLettersRegexp = regexp.MustCompile("[^0-9]$")
var (
funcMap = map[string]interface{}{
"join": strings.Join,
"until": minutesUntil,
"arrivingBuses": arrivingBuses,
"sortByArrival": sortByArrival,
"sortByService": sortByService,
"inSGT": inSGT,
"otherServices": otherServices,
"take": take,
}
)
var (
featuresFormatter = TemplateFormatter{
template: template.Must(template.New("message.tmpl").
Funcs(funcMap).
ParseFiles("templates/message.tmpl",
"templates/partials/header.tmpl",
"templates/partials/features.tmpl",
"templates/partials/services_count.tmpl",
"templates/partials/footer.tmpl")),
}
summaryFormatter = TemplateFormatter{
template: template.Must(template.New("message.tmpl").
Funcs(funcMap).
ParseFiles("templates/message.tmpl",
"templates/partials/header.tmpl",
"templates/partials/summary.tmpl",
"templates/partials/footer.tmpl",
"templates/partials/services_count.tmpl")),
}
)
var (
Formatters = map[string]Formatter{
FormatterSummary: summaryFormatter,
FormatterFeatures: featuresFormatter,
}
)
type ArrivingBus struct {
ServiceNo string
datamall.ArrivingBus
}
type Formatter interface {
Format(eta ETA) (string, error)
}
type TemplateFormatter struct {
template *template.Template
}
func (f TemplateFormatter) Format(eta ETA) (string, error) {
b := new(bytes.Buffer)
err := f.template.Execute(b, eta)
if err != nil {
return "", err
}
return b.String(), nil
}
// take returns up to the first n elements of coll.
func take(n int, coll []ArrivingBus) []ArrivingBus {
if n <= 0 || n > len(coll) {
n = len(coll)
}
return coll[:n]
}
// minutesUntil returns the number of minutes from now until then.
func minutesUntil(now time.Time, then time.Time) string {
if then.IsZero() {
return "?"
}
return strconv.Itoa(int(then.Sub(now).Minutes()))
}
func arrivingBuses(services []datamall.Service) []ArrivingBus {
var buses []ArrivingBus
for _, service := range services {
if !service.NextBus.EstimatedArrival.IsZero() {
buses = append(buses, ArrivingBus{
ServiceNo: service.ServiceNo,
ArrivingBus: service.NextBus,
})
}
if !service.NextBus2.EstimatedArrival.IsZero() {
buses = append(buses, ArrivingBus{
ServiceNo: service.ServiceNo,
ArrivingBus: service.NextBus2,
})
}
if !service.NextBus3.EstimatedArrival.IsZero() {
buses = append(buses, ArrivingBus{
ServiceNo: service.ServiceNo,
ArrivingBus: service.NextBus3,
})
}
}
return buses
}
func sortByArrival(buses []ArrivingBus) []ArrivingBus {
sort.Slice(buses, func(i, j int) bool {
return buses[i].EstimatedArrival.Before(buses[j].EstimatedArrival)
})
return buses
}
func sortByService(services []datamall.Service) []datamall.Service {
sort.Slice(services, func(i, j int) bool {
first, err1 := strconv.Atoi(trimTrailingLettersRegexp.ReplaceAllString(services[i].ServiceNo, ""))
second, err2 := strconv.Atoi(trimTrailingLettersRegexp.ReplaceAllString(services[j].ServiceNo, ""))
switch {
case err1 != nil && err2 != nil:
// when both services cannot be parsed as integers, sort them lexicographically
return services[i].ServiceNo < services[j].ServiceNo
case err1 == nil && err2 != nil:
// if j cannot be parsed as an integer, then i should come before j
return true
case err1 != nil && err2 == nil:
// if i cannot be parsed as an integer, then j should come before i
return false
}
if first == second {
return services[i].ServiceNo < services[j].ServiceNo
}
return first < second
})
return services
}
func inSGT(t time.Time) string {
return t.In(sgt).Format("Mon, 02 Jan 06 15:04 MST")
}
func otherServices(stop BusStop, services []datamall.Service) []string {
var others []string
contains := func(serviceNo string, services []datamall.Service) bool {
for _, service := range services {
if serviceNo == service.ServiceNo {
return true
}
}
return false
}
for _, serviceNo := range stop.Services {
if !contains(serviceNo, services) {
others = append(others, serviceNo)
}
}
return others
}