-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathjson.go
227 lines (189 loc) · 3.08 KB
/
json.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
package server
import (
"crypto/x509"
"github.com/mailru/easyjson"
"github.com/khlieng/dispatch/pkg/irc"
"github.com/khlieng/dispatch/storage"
)
type WSRequest struct {
Type string
Data easyjson.RawMessage
}
type WSResponse struct {
Type string
Data interface{}
}
type Features struct {
Network string
Features map[string]interface{}
}
type NetworkName struct {
Network string
Name string
}
type ReconnectSettings struct {
Network string
SkipVerify bool
}
type ConnectionUpdate struct {
Network string
Connected bool
Error string
ErrorType string
}
func newConnectionUpdate(network string, state irc.ConnectionState) ConnectionUpdate {
status := ConnectionUpdate{
Network: network,
Connected: state.Connected,
}
if state.Error != nil {
status.Error = state.Error.Error()
if _, ok := state.Error.(x509.UnknownAuthorityError); ok {
status.ErrorType = "verify"
}
}
return status
}
type Nick struct {
Network string
Old string `json:"oldNick,omitempty"`
New string `json:"newNick,omitempty"`
}
type NickFail struct {
Network string
}
type Join struct {
Network string
User string
Channels []string
}
type Part struct {
Network string
User string
Channel string
Channels []string
Reason string
}
type Mode struct {
*irc.Mode
}
type Quit struct {
Network string
User string
Reason string
}
type Message struct {
ID string
Network string
From string
To string
Content string
Type string
}
type Messages struct {
Network string
To string
Messages []storage.Message
Prepend bool
Next string
}
type Topic struct {
Network string
Channel string
Topic string
Nick string
}
type Userlist struct {
Network string
Channel string
Users []string
}
type MOTD struct {
Network string
Title string
Content []string
}
type Invite struct {
Network string
Channel string
User string
}
type Kick struct {
Network string
Channel string
Sender string
User string
Reason string
}
type Whois struct {
Network string
User string
}
type WhoisReply struct {
Nick string
Username string
Host string
Realname string
Server string
Channels []string
}
type Away struct {
Network string
Message string
}
type Raw struct {
Network string
Message string
}
type SearchRequest struct {
Network string
Channel string
Phrase string
}
type SearchResult struct {
Network string
Channel string
Results []storage.Message
}
type ClientCert struct {
Cert string
Key string
}
type FetchMessages struct {
Network string
Channel string
Next string
}
type Error struct {
Network string
Message string
}
type IRCError struct {
Network string
Target string
Message string
}
type ChannelSearch struct {
Network string
Q string
Start int
}
type ChannelSearchResult struct {
ChannelSearch
Results []*storage.ChannelListItem
}
type ChannelForward struct {
Network string
Old string
New string
}
type DCCSend struct {
Network string
From string
Filename string
Size string
URL string
}
type Tab struct {
storage.Tab
}