This repository has been archived by the owner on Feb 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
command_time.go
197 lines (168 loc) · 5.37 KB
/
command_time.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
package main
import (
"fmt"
"math"
"regexp"
"strconv"
"strings"
"time"
mapset "github.com/deckarep/golang-set"
"github.com/getsentry/sentry-go"
"github.com/tomocrafter/go-twitter/twitter"
)
var (
pattern = regexp.MustCompile("^https?:/*twitter\\.com/+(.+/+(status|statuses)|i/+web/+status|statuses)/+([2-9][0-9]|[1-9][0-9]{2,})(\\.json|\\.xml|\\.html|/)?(\\?.*)?$")
)
const (
baseUnixTime = 1288834974657
InvalidArgumentError = "https://twitter. com/tomocrafter/status/829221788500553734 か 829221788500553734 のようなURLを指定してください。"
)
func statusIdToMillis(id int64) int64 {
return (id >> 22) + baseUnixTime
}
func twitterIdToTime(id int64) time.Time {
return time.Unix(0, statusIdToMillis(id)*int64(time.Millisecond)).In(location)
}
func roundDown(num, places float64) float64 {
shift := math.Pow(10, places)
return math.Trunc(num*shift) / shift
}
func formatTime(t time.Time) string {
return t.Format("15:04:05.000")
}
func getTweetIDFromURL(url string) (int64, bool) {
match := pattern.FindStringSubmatch(url)
if len(match) > 3 {
id, _ := strconv.ParseInt(match[3], 10, 64)
return id, true
}
return 0, false
}
func interfaceToInt64(i []interface{}) []int64 {
f := make([]int64, len(i))
for n := range i {
f[n] = i[n].(int64)
}
return f
}
func timeCommand(s CommandSender, args []string) {
switch s := s.(type) {
case TimelineSender:
if s.Tweet.InReplyToStatusID == 0 { // Error
s.SendMessage("時間を計測したいツイートにリプライしてください。")
return
}
t := twitterIdToTime(s.Tweet.InReplyToStatusID)
just := time.Date(t.Year(), t.Month(), t.Day(), 3, 34, 0, 0, location)
if t.Equal(just) {
s.SendMessage("時間: 03:34:00.000 (ジャスト!おめでとうございます。)")
return
}
if IsTimeRestricting() {
tweet := queueProcessor.LookupTweetBlocking(s.Tweet.InReplyToStatusID)
if tweet.Text != "334" {
return
}
}
if t.Hour() == 3 && t.Minute() >= 32 && t.Minute() <= 36 { // 3:32 ~ 3:36
diff := float64(t.Sub(just)) / float64(time.Second)
var sb strings.Builder
sb.WriteString("時間:")
sb.WriteString(formatTime(t))
sb.WriteString(" (3:34ちょうどの時間から ")
// 本来であればfmtの%+.3fは0.0009の場合0.001に四捨五入されてしまうため切り捨てしているが、
// 実際にはTwitterのタイムスタンプには.000までしかないため切り捨てしなくても問題ない。作者の性格に依存している。
sb.WriteString(fmt.Sprintf("%+.3f", roundDown(diff, 3)))
sb.WriteString("秒)")
s.SendMessage(sb.String())
} else {
s.SendMessage("時間: " + formatTime(t))
}
case DirectMessageSender:
ids := mapset.NewThreadUnsafeSet()
urls := make(map[string]string, len(s.DirectMessageEvent.Message.Data.Entities.Urls)) // Shorten URL -> Expanded URL
for _, url := range s.DirectMessageEvent.Message.Data.Entities.Urls {
urls[url.URL] = url.ExpandedURL
}
for _, v := range args {
if id, err := strconv.ParseInt(v, 10, 64); err == nil {
ids.Add(id)
continue
}
if url, ok := urls[v]; ok {
if id, ok := getTweetIDFromURL(url); ok {
ids.Add(id)
} else {
s.SendMessage(InvalidArgumentError)
}
} else {
s.SendMessage(InvalidArgumentError)
}
}
if ids.Cardinality() == 0 {
return
}
var sb strings.Builder
sb.WriteString("2010年11月以前のツイートでは正常に動作しません。\n\n")
tweets, _, err := client.Statuses.Lookup(interfaceToInt64(ids.ToSlice()), &twitter.StatusLookupParams{
IncludeEntities: twitter.Bool(false),
})
if err != nil {
sentry.CaptureException(err)
return
}
for _, tweet := range tweets {
ids.Remove(tweet.ID)
sb.WriteByte('@')
sb.WriteString(tweet.User.ScreenName)
sb.WriteByte(':')
sb.WriteByte('\n')
sb.WriteString(tweet.Text)
sb.WriteByte('\n')
sb.WriteString(formatTime(twitterIdToTime(tweet.ID)))
sb.WriteString("\n\n")
}
ids.Each(func(i interface{}) bool {
if i != 0 {
sb.WriteString("\n\n")
}
sb.WriteString(strconv.FormatInt(id, 10))
sb.WriteString(" は存在しないか非公開のアカウントのツイートです。")
return false
})
s.SendMessage(sb.String())
}
return
}
func handleQuickTime(s DirectMessageSender) {
if len(s.DirectMessageEvent.Message.Data.Entities.Urls) == 1 &&
s.DirectMessageEvent.Message.Data.Text == s.DirectMessageEvent.Message.Data.Entities.Urls[0].URL {
url := s.DirectMessageEvent.Message.Data.Entities.Urls[0].ExpandedURL
if id, ok := getTweetIDFromURL(url); ok {
tweet, resp, err := client.Statuses.Show(id, &twitter.StatusShowParams{
IncludeMyRetweet: twitter.Bool(false),
IncludeEntities: twitter.Bool(false),
})
if err != nil {
if resp != nil {
if resp.StatusCode == 404 {
s.SendMessage(strconv.FormatInt(id, 10) + " は存在しないツイートです。")
} else if resp.StatusCode == 403 {
s.SendMessage("このツイートは非公開アカウントのツイートか、取得できないツイートです。")
}
} else {
sentry.CaptureException(err)
}
} else {
var sb strings.Builder
sb.WriteByte('@')
sb.WriteString(tweet.User.ScreenName)
sb.WriteString(":\n")
sb.WriteString(tweet.Text)
sb.WriteString("\n")
sb.WriteString(formatTime(twitterIdToTime(tweet.ID)))
s.SendMessage(sb.String())
}
}
}
}