-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathlime-js.d.ts
254 lines (229 loc) · 6.69 KB
/
lime-js.d.ts
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
// Type definitions for lime-js 0.0.3
// Project: https://github.com/takenet/lime-js
// Definitions by: Arthur Xavier <https://github.com/arthur-xavier>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module "lime-js" {
// Lime.Envelope
interface Envelope {
id?: string;
from?: string;
to?: string;
pp?: string;
metadata?: any;
}
const Envelope: {
isMessage: (envelope: Envelope) => envelope is Message;
isNotification: (envelope: Envelope) => envelope is Notification;
isCommand: (envelope: Envelope) => envelope is Command;
isSession: (envelope: Envelope) => envelope is Session;
}
interface Reason {
code: number;
description?: string;
}
interface EnvelopeListener {
onEnvelope(envelope: Envelope): void
}
// Lime.Message
interface Message extends Envelope {
type: string;
content: any;
}
interface MessageListener {
onMessage(command: Message): void;
}
// Lime.Notification
interface Notification extends Envelope {
event: NotificationEvent;
reason?: Reason;
}
interface NotificationListener {
onNotification(command: Notification): void;
}
const NotificationEvent: {
ACCEPTED: NotificationEvent;
VALIDATED: NotificationEvent;
AUTHORIZED: NotificationEvent;
DISPATCHED: NotificationEvent;
RECEIVED: NotificationEvent;
CONSUMED: NotificationEvent;
}
type NotificationEvent
= "accepted"
| "validated"
| "authorized"
| "dispatched"
| "received"
| "consumed"
;
// Lime.Command
interface Command extends Envelope {
uri?: string;
type?: string;
resource?: any;
method: CommandMethod;
status?: CommandStatus;
reason?: Reason;
}
interface CommandListener {
onCommand(command: Command): void;
}
const CommandMethod: {
GET: CommandMethod;
SET: CommandMethod;
DELETE: CommandMethod;
OBSERVE: CommandMethod;
SUBSCRIBE: CommandMethod;
}
type CommandMethod
= "get"
| "set"
| "delete"
| "observe"
| "subscribe"
;
const CommandStatus: {
SUCCESS: CommandStatus;
FAILURE: CommandStatus;
}
type CommandStatus
= "success"
| "failure"
;
// Lime.Session
interface Session extends Envelope {
state: SessionState;
encryptionOptions?: SessionEncryption[];
encryption?: SessionEncryption;
compressionOptions?: SessionCompression[];
compression?: SessionCompression;
scheme?: string;
authentication?: any;
reason?: Reason;
}
interface SessionListener {
onSession(command: Session): void;
}
const SessionState: {
NEW: SessionState;
NEGOTIATING: SessionState;
AUTHENTICATING: SessionState;
ESTABLISHED: SessionState;
FINISHING: SessionState;
FINISHED: SessionState;
FAILED: SessionState;
}
type SessionState
= "new"
| "negotiating"
| "authenticating"
| "established"
| "finishing"
| "finished"
| "failed"
;
const SessionEncryption: {
NONE: SessionEncryption;
TLS: SessionEncryption;
}
type SessionEncryption
= "none"
| "tls"
;
const SessionCompression: {
NONE: SessionCompression;
GZIP: SessionCompression;
}
type SessionCompression
= "none"
| "gzip"
;
// Lime.Security.Authentication
class Authentication {
scheme: AuthenticationScheme;
}
class GuestAuthentication extends Authentication {}
class TransportAuthentication extends Authentication {}
class PlainAuthentication extends Authentication {
password: string;
}
class KeyAuthentication extends Authentication {
key: string;
}
const AuthenticationScheme: {
GUEST: AuthenticationScheme;
PLAIN: AuthenticationScheme;
TRANSPORT: AuthenticationScheme;
KEY: AuthenticationScheme;
}
type AuthenticationScheme
= "guest"
| "plain"
| "transport"
| "key"
;
// Lime.Client.Channel
interface MessageChannel extends MessageListener {
sendMessage(message: Message): void;
}
interface CommandChannel extends CommandListener {
sendCommand(command: Command): void;
}
interface NotificationChannel extends NotificationListener {
sendNotification(notification: Notification): void;
}
interface SessionChannel extends SessionListener {
sendSession(session: Session): void;
}
interface CommandProcessor extends CommandListener {
processCommand(command: Command, timeout: number): Promise<any>;
}
abstract class Channel implements MessageChannel, CommandChannel, NotificationChannel, SessionChannel, CommandProcessor {
transport: Transport;
remoteNode: string;
localNode: string;
sessionId: string;
state: SessionState;
commandTimeout: number;
constructor(transport: Transport, autoReplyPings: boolean, autoNotifyReceipt: boolean);
sendMessage(message: Message): void;
abstract onMessage(message: Message): void;
sendCommand(command: Command): void;
abstract onCommand(message: Command): void;
sendNotification(notification: Notification): void;
abstract onNotification(message: Notification): void;
sendSession(session: Session): void;
abstract onSession(message: Session): void;
processCommand(command: Command, timeout: number): Promise<any>;
}
// Lime.Client.ClientChannel
class ClientChannel extends Channel {
constructor(transport: Transport, autoReplyPings?: boolean, autoNotifyReceipt?: boolean);
establishSession(compression: SessionCompression, encryption: SessionEncryption, identity: string, authentication: Authentication, instance: string, callback: (error: Error, session: Session) => void): void;
startNewSession(): void;
negotiateSession(sessionCompression: SessionCompression, sessionEncryption: SessionEncryption): void;
authenticateSession(identity: string, authentication: Authentication, instance: string): void;
sendFinishingSession(): void;
onSessionNegotiating(session: Session): void;
onSessionAuthenticating(session: Session): void;
onSessionEstablished(session: Session): void;
onSessionFinished(session: Session): void;
onSessionFailed(session: Session): void;
onMessage(message: Message): void;
onCommand(message: Command): void;
onNotification(message: Notification): void;
onSession(message: Session): void;
}
// Lime.Network.Transport
interface Transport extends EnvelopeListener {
open(uri: string): void;
close(): void;
send(envelope: Envelope): void;
getSupportedCompression(): SessionCompression[];
setCompression(compression: SessionCompression): void;
compression: SessionCompression;
getSupportedEncryption(): SessionEncryption[];
setEncryption(encryption: SessionEncryption): void;
encryption: SessionEncryption;
}
}