-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1121 lines (1079 loc) · 41.8 KB
/
index.html
File metadata and controls
1121 lines (1079 loc) · 41.8 KB
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
<html>
<head>
<title>Tim Popham's Github Projects</title>
<link rel="stylesheet" type="text/css" href="chatterbox.css" media="all" />
<link rel="stylesheet" type="text/css" href="message.css" media="all" />
</head>
<body>
<p>Welcome to my (embarassingly) new Github <a
href="http://github.com/popham/">projects
page</a>. For now there's only the one project.</p>
<p><a href="http://github.com/popham/chatterbox/">Chatterbox</a> is a toy project intended to test the feasibility of WebSockets across mobile platforms (Android and iPhone) and modern browsers, with a server built in Ruby. I expect the project to look decent before March of 2012. If all goes well, my new wisdom will get folded into a commercial project. As the code gets integrated into a larger ecosystem, I expect namespacing revisions to propagate into this codebase to facilitate such integration for others and myself in the future. Any architectural changes, however, will probably remain in a private fork.</p>
<p><em>Update:</em> I've been dissapointed by the fragility of Ruby's Goliath webserver. I'm sure that I would eat those words with properly aligned versions of the MongoDB drivers, but with a single process the server's stability is especially important, so I've put the Ruby implementation on hold until the codebase goes inert for a while. As an alternative, I've <a href="http://github.com/popham/chatterbox-warp/">begun implementing</a> for the <a href="http://github.com/yesodweb/wai">Warp</a> server built on top of Haskell. I'm still bending my mind around functional programming, but I've been impressed thus far with the language's community. I only hope the server itself proves as impressive.</p>
<p>I'm moving project documentation here until competing projects require better organization. Most would put protocol documents under the server, I realize. Maybe once client development begins such an organization may emerge.</p>
<h1>Chatterbox</h1>
<p>Chatterbox is a N-person messaging application distributed across iOS, Android, and desktop browsers. The project explores <a href="http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-17">WebSockets protocol</a> feasiblity, with an eye toward generalization. The protocol has been chosen for its low power consumption on mobile platforms and for its ability to generalize to much broader uses within an application framework.</p>
<p><strike>I feel that the Rails framework provides just enough structure on top of the Ruby programming language for implementing web services. The <a href="https://github.com/igrigorik/em-websocket">EM-WebSocket</a> gem has been chosen for Chatterbox's server.</strike> Under Haskell, the Warp server's stack looks designed from top to bottom for asynchronicity, hopefully yielding a stable, performant server.</p>
<p>Apache 2.0 licensed client libraries exist for both Android and iPhone. On the iPhone platform, the unitt project's <a href="http://code.google.com/p/unitt/wiki/UnittWebSocketClient">UnittWebSocketClient</a> has been chosen because it adopts iOS design idioms and there exist no other viable alternatives. On the Android platform, <a href="http://www.tavendo.de/autobahn/doc/android/index.html">Autobahn WebSockets for Android</a> has been chosen because it adopts Android design idioms and it appears more active and professionally maintained than any of its alternatives.</p>
<div id="chatterbox-conversant-permissions">
<h2>Conversant Permissions</h2>
<p>Every conversant has a default permission that governs how conversations begin with all other conversants. Additionally, any conversant can override the default permission for any specific conversant. So for any potential conversation partner, there exists a permission from the following: <em>Accept by Default</em>, <em>Accept by Individual</em>, <em>Ask by Default</em>, and <em>Ask by Individual</em>. The `by Default' variant always exists as a catch-all.</p>
<p>Conversant permissions do not appear anywhere in the Chatterbox protocol, however. Assuming that some facility outside the protocol exists for changing the permissions, a conversation's permission data could fall out of sync with the database. That external facility will be provided by a ReSTful interface. At the invitation stage of a conversation, the server will reconcile user permissions to auto-initialize as many clients as possible. If a client chooses to alter any permissions after this stage, though, the client is responsible for initializing any relevant conversations.</p>
</div>
<div id="connection-states">
<h2>Connection States</h2>
<p>The <em>Initiater</em> proposes a conversation amongst a set of <em>Target Conversants</em> and himself, creating a conversation with connections to each potential conversant, including himself. Each connection has two possible states:</p>
<dl>
<dt>Closed</dt><dd>The associated Target Conversant has neither accepted nor rejected the proposed conversation.</dd>
<dt>Open</dt><dd>The associated Target Conversant has accepted the proposed conversation. The Initiater's never exists in a Closed state.</dd>
</dl>
Terminated connections require no third state, as the server immediately purges any conversation rejecters.
</div>
<div id="chatterbox-actions">
<h2>Actions</h2>
<h3 id="action-invite">Invite Conversants</h3>
<p>An Initiater sends an invitation to a set of Target Conversants, creating a conversation. The server creates an Open connection between the Initiater and the new conversation. The server is free to choose a set of conversant connections that share mutually applicable <em>Accept by Default</em> or <em>Accept by Individual</em> permissions to construct in the Open state as well. The remaining invited conversants have their connections constructed in the Closed state.</p>
<h3 id="action-initialize">Initialize Connection</h3>
<p>The Initiater instigates this action by <a href="#action-invite">inviting</a> the would-be Initializer to a conversation. The server constructs a subset of connections in the Open state, including the Initiater's. The conversants with connections in the Closed state must send an <a href="message-initialize">initialization</a> message to join the conversation, transitioning the corresponding connection state to Open.</p>
<h3 id="conversation-initialize-with-targets">Handle Conversation Initializations</h3>
<p>If a Target Conversant has confirmed conversation with the Instigator or if such confirmation is pending, then any connections to the same conversation with Open state and <em>Ask by Default</em> or <em>Ask by Individual</em> <a href="#chatterbox-conversant-permissions">permission</a> require additional confirmation. Connections governed by <em>Accept by Default</em> or <em>Accept by Individual</em> are confirmed entirely on the serverside.</p>
<h3 id="conversation-eject-conversant">Eject Conversant</h3>
<p>Any conversant can attempt to eject any other conversant (including the Initiater or himself). If the Ejectee is also the Ejector, then this action is interpreted as a resignation from the conversation. Otherwise, in conversations with <em>N</em> conversants and <em>N > 2</em>, <em>N-1</em> conversants can agree to eject the <em>N</em>th conversant, while any ejection request where <em>N = 2</em> destroys the conversation.</p>
<p>PURGE USER FROM CONFIRMATION QUEUES on the serverside.</p>
<h3 id="conversation-message">Conversant Sends a Message</h3>
<p>Messages are sent to the conversation itself, not individuals. If a conversant wants a subset of conversants to see a message, then he needs to explicitly build a conversation with only those conversants.</p>
</div>
<div id="chatterbox-conversation-negotiation">
<h2>Conversation Negotiation</h2>
<h3>Server to User Messages</h3>
<dl>
<dt>conversation</dt>
<dd></dd>
<dt>messages</dt>
<dd></dd>
</dl>
<h3>User to Server Messages</h3>
<dl>
<dt>invite</dt>
<dd></dd>
<dt>speak</dt>
<dd></dd>
<dt>initialize</dt>
<dd></dd>
<dt>eject</dt>
<dd></dd>
<dt>close</dt>
<dd></dd>
</dl>
<div class="hash message-from-1">
<div class="pair">
<span class="key">command</span>
<span class="value">"invite"</span>
</div>
<div class="pair">
<span class="key">targetConversants</span>
<span class="array value">
<span class="value">2</span>
<span class="value">3</span>
<span class="value">4</span>
</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"Let us talk."</span>
</div>
</div>
<div class="hash message-to-1">
<div class="pair">
<span class="key">notice</span>
<span class="value">"conversation"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">self</span>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">1</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">0</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">1</span>
</div>
</div>
</div>
</div>
</div>
<div class="pair">
<span class="key">others</span>
<div class="array value">
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">2</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">0</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">1</span>
</div>
</div>
</div>
</div>
<div class="hash value">...</div>
<div class="hash value">...</div>
</div>
</div>
</div>
<div class="hash message-to-2">...</div>
<div class="hash message-to-3">...</div>
<div class="hash message-to-4">...</div>
<div class="hash message-from-1">
<div class="pair">
<span class="key">command</span>
<span class="value">"speak"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"Hello?"</span>
</div>
</div>
<div class="hash message-to-all">
<div class="pair">
<span class="key">notice</span>
<span class="value">"messages"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">messages</span>
<div class="array value">
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">1</span>
</div>
<div class="pair">
<span class="key">timeStamp</span>
<span class="value">128474849</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"Hello?"</span>
</div>
</div>
</div>
</div>
</div>
<div class="hash message-from-3">
<div class="hash value">
<div class="pair">
<span class="key">command</span>
<span class="value">"initialize"</span>
</div>
</div>
</div>
<div class="hash message-to-1">
<div class="pair">
<span class="key">notice</span>
<span class="value">"conversation"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">self</span>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">1</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">0</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">2</span>
</div>
</div>
</div>
</div>
</div>
<div class="pair">
<span class="key">others</span>
<div class="array value">
<div class="hash value">...</div>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">3</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">0</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">2</span>
</div>
</div>
</div>
</div>
<div class="hash value">...</div>
</div>
</div>
</div>
<div class="hash message-to-2">...</div>
<div class="hash message-to-3">...</div>
<div class="hash message-to-4">...</div>
<div class="hash message-from-3">
<div class="pair">
<span class="key">command</span>
<span class="value">"speak"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"sudo make me a sandwich."</span>
</div>
</div>
<div class="hash message-from-2">
<div class="pair">
<span class="key">command</span>
<span class="value">"speak"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"sudo Sudoer isn't welcome here."</span>
</div>
</div>
<div class="hash message-to-all">
<div class="pair">
<span class="key">notice</span>
<span class="value">"messages"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">messages</span>
<div class="array value">
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">3</span>
</div>
<div class="pair">
<span class="key">timeStamp</span>
<span class="value">12847593</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"sudo make me a sandwich."</span>
</div>
</div>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">2</span>
</div>
<div class="pair">
<span class="key">timeStamp</span>
<span class="value">12847998</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"sudo Sudoer isn't welcome here."</span>
</div>
</div>
</div>
</div>
</div>
<div class="hash message-from-2">
<div class="pair">
<span class="key">command</span>
<span class="value">"eject"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">ejecteeId</span>
<span class="value">3</span>
</div>
</div>
<div class="hash message-to-1">
<div class="pair">
<span class="key">notice</span>
<span class="value">"conversation"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">self</span>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">1</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">0</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">2</span>
</div>
</div>
</div>
</div>
</div>
<div class="pair">
<span class="key">others</span>
<div class="array value">
<div class="hash value">...</div>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">3</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">1</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">2</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="hash message-to-2">...</div>
<div class="hash message-to-3">...</div>
<div class="hash message-to-4">...</div>
<div class="hash message-from-4">
<div class="pair">
<span class="key">command</span>
<span class="value">"initialize"</span>
</div>
</div>
<div class="hash message-to-1">
<div class="pair">
<span class="key">notice</span>
<span class="value">"conversation"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">self</span>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">1</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">0</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">3</span>
</div>
</div>
</div>
</div>
</div>
<div class="pair">
<span class="key">others</span>
<div class="array value">
<div class="hash value">...</div>
<div class="hash value">...</div>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">4</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">0</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">3</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="hash message-to-2">...</div>
<div class="hash message-to-3">...</div>
<div class="hash message-to-4">...</div>
<div class="hash message-from-1">
<div class="pair">
<span class="key">command</span>
<span class="value">"eject"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">ejecteeId</span>
<span class="value">3</span>
</div>
</div>
<div class="hash message-to-1">
<div class="pair">
<span class="key">notice</span>
<span class="value">"conversation"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">self</span>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">1</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">0</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">3</span>
</div>
</div>
</div>
</div>
</div>
<div class="pair">
<span class="key">others</span>
<div class="array value">
<div class="hash value">...</div>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">3</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">2</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">3</span>
</div>
</div>
</div>
</div>
<div class="hash value">...</div>
</div>
</div>
</div>
<div class="hash message-to-2">...</div>
<div class="hash message-to-3">...</div>
<div class="hash message-to-4">...</div>
<div class="hash message-from-3">
<div class="pair">
<span class="key">command</span>
<span class="value">"speak"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"I'm still here. Mwah hahaha."</span>
</div>
</div>
<div class="hash message-to-all">
<div class="pair">
<span class="key">notice</span>
<span class="value">"messages"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">messages</span>
<div class="array value">
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">3</span>
</div>
<div class="pair">
<span class="key">timeStamp</span>
<span class="value">12847693</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"I'm still here. Mwah hahaha."</span>
</div>
</div>
</div>
</div>
</div>
<div class="hash message-from-3">
<div class="pair">
<span class="key">command</span>
<span class="value">"eject"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">ejecteeId</span>
<span class="value">1</span>
</div>
</div>
<div class="hash message-to-1">
<div class="pair">
<span class="key">notice</span>
<span class="value">"conversation"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">self</span>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">1</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">1</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">3</span>
</div>
</div>
</div>
</div>
</div>
<div class="pair">
<span class="key">others</span>
<div class="array value">
<div class="hash value">...</div>
<div class="hash value">...</div>
<div class="hash value">...</div>
</div>
</div>
</div>
<div class="hash message-to-2">...</div>
<div class="hash message-to-3">...</div>
<div class="hash message-to-4">...</div>
<div class="hash message-from-4">
<div class="pair">
<span class="key">command</span>
<span class="value">"eject"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">ejecteeId</span>
<span class="value">3</span>
</div>
</div>
<div class="hash message-to-1">
<div class="pair">
<span class="key">notice</span>
<span class="value">"conversation"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">self</span>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">1</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">0</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">2</span>
</div>
</div>
</div>
</div>
</div>
<div class="pair">
<span class="key">others</span>
<div class="array value">
<div class="hash value">...</div>
<div class="hash value">...</div>
</div>
</div>
</div>
<div class="hash message-to-2">...</div>
<div class="hash message-to-4">...</div>
<div class="hash message-from-1">
<div class="pair">
<span class="key">command</span>
<span class="value">"close"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
</div>
<div class="hash message-to-2">
<div class="pair">
<span class="key">notice</span>
<span class="value">"conversation"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">self</span>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">2</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">0</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">1</span>
</div>
</div>
</div>
</div>
</div>
<div class="pair">
<span class="key">others</span>
<div class="array value">
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">4</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">0</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">1</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="hash message-to-4">...</div>
<div class="hash message-from-2">
<div class="pair">
<span class="key">command</span>
<span class="value">"speak"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"Looks like its just the two of us, then?"</span>
</div>
</div>
<div class="hash message-to-2">
<div class="pair">
<span class="key">notice</span>
<span class="value">"messages"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">messages</span>
<div class="array value">
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">2</span>
</div>
<div class="pair">
<span class="key">timeStamp</span>
<span class="value">12863425</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"Looks like its just the two of us, then?"</span>
</div>
</div>
</div>
</div>
</div>
<div class="hash message-from-4">
<div class="pair">
<span class="key">command</span>
<span class="value">"speak"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"Speak for yourself, Spidey."</span>
</div>
</div>
<div class="hash message-to-2">
<div class="pair">
<span class="key">notice</span>
<span class="value">"messages"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">messages</span>
<div class="array value">
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">4</span>
</div>
<div class="pair">
<span class="key">timeStamp</span>
<span class="value">12857235</span>
</div>
<div class="pair">
<span class="key">message</span>
<span class="value">"Speak for yourself, Spidey."</span>
</div>
</div>
</div>
</div>
</div>
<div class="hash message-to-4">...</div>
<div class="hash message-from-4">
<div class="pair">
<span class="key">command</span>
<span class="value">"close"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
</div>
<div class="hash message-to-2">
<div class="pair">
<span class="key">notice</span>
<span class="value">"conversation"</span>
</div>
<div class="pair">
<span class="key">conversationId</span>
<span class="value">18</span>
</div>
<div class="pair">
<span class="key">self</span>
<div class="hash value">
<div class="pair">
<span class="key">userId</span>
<span class="value">2</span>
</div>
<div class="pair">
<span class="key">connectionState</span>
<span class="value">"open"</span>
</div>
<div class="pair">
<span class="key">ejectionState</span>
<div class="hash value">
<div class="pair">
<span class="key">votes</span>
<span class="value">0</span>
</div>
<div class="pair">
<span class="key">requiredVotes</span>
<span class="value">0</span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!--
<div id="chatterbox-prototype">
<h1>Prototype</h1>