forked from steveseguin/social_stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsampleapi.html
788 lines (659 loc) · 29.8 KB
/
sampleapi.html
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
<html lang="en">
<head>
<title>Sample API</title>
<meta charset="utf-8"/>
<link href="./nes.min.css" rel="stylesheet" />
<style>
html, body, pre, code, kbd, samp {
font-family:Arial, Tohoma
}
input {
margin:5px;
}
body{
margin:1%;
border:0;
background-image: linear-gradient(to left, #e1c5d5, #ddc5da, #d8c6e0, #d1c7e5, #c8c9e9, #c1cded, #bad2f0, #b4d6f2, #b1ddf3, #b1e4f3, #b4eaf0, #bbf0ed);
width:96%;
height:100%;
}
button {
margin:10px 3px;
}
button, input, optgroup, select, textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
padding: 8px 12px;
}
button:active{
background-color:#BBB;
}
#incoming_messages {
overflow: auto;
height: calc(100% - 146px);
margin: 10px;
display: inline;
width: calc(100% - 51px);
word-break: break-word;
}
.inbound {
margin: 40px 0;
}
</style>
</head>
<body>
<h2>
Sample app using the Social Stream HTTP/WSS remote control API
</h2>
Ensure that you have matching session values, both with this page if testing (for example, dock.html?session=xxxx&server), or used when calling the API itself.
<br /><br />
See <a href="https://github.com/steveseguin/social_stream/blob/main/README.md#server-api-support" target="_blank">this link for details</a> on how to add these commands to your stream deck or application.
<br /><br /><br />As a basic example though, a call that uses a basic GET request would be structured like:<br /><p><b><i>https://io.socialstream.ninja/{sessionID}/{action}/{target}/{value}</i></b>.</p>
<br />
<div id="header"></div>
<div id="target_self"></div>
<div id="incoming_messages"></div>
<script>
function generateStreamID(){
var text = "";
var possible = "ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnpqrstuvwxyz23456789";
for (var i = 0; i < 10; i++){
text += possible.charAt(Math.floor(Math.random() * possible.length));
}
return text;
};
(function (w) {
w.URLSearchParams = w.URLSearchParams || function (searchString) {
var self = this;
self.searchString = searchString;
self.get = function (name) {
var results = new RegExp('[\?&]' + name + '=([^&#]*)').exec(self.searchString);
if (results == null) {
return null;
}
else {
return decodeURI(results[1]) || 0;
}
};
};
})(window);
var urlParams = new URLSearchParams(window.location.search);
window.onerror = function backupErr(errorMsg, url=false, lineNumber=false) {
console.error(errorMsg);
console.error(lineNumber);
console.error("Unhandeled Error occured"); //or any message
return false;
};
window.onbeforeunload = function() {
return "Dude, are you sure you want to leave? Think of the kittens!"; // prevents accidental page reloads.
}
var WID = "testOBSN";
if (urlParams.has("api")){
WID = urlParams.get("api");
} else if (urlParams.has("osc")){
WID = urlParams.get("osc");
} else if (urlParams.has("id")){
WID = urlParams.get("id");
} else if (urlParams.has("ID")){
WID = urlParams.get("ID");
} else if (urlParams.has("wid")){
WID = urlParams.get("wid");
} else if (urlParams.has("session")){
WID = urlParams.get("session");
} else {
WID = prompt("Enter your session ID here, or add it to the URL.") || generateStreamID(10);
var href = window.location.href;
var arr = href.split('?');
var newurl;
if (arr.length > 1 && arr[1] !== '') {
newurl = href + '&session=' + WID;
} else {
newurl = href + '?session=' + WID;
}
window.history.pushState({path: newurl.toString()}, '', newurl.toString());
}
var serverURL = "wss://io.socialstream.ninja:443";
if (urlParams.has("server")){
serverURL = urlParams.get("server") || serverURL;
}
var socket = null;
var connecting = false;
var failedCount = 0;
var callbackID = parseInt(Math.random()*1000);
function connect(){
clearTimeout(connecting);
if (socket){
if (socket.readyState === socket.OPEN){return;}
try{
socket.close();
} catch(e){}
}
socket = new WebSocket(serverURL);
socket.onclose = function (){
failedCount+=1;
clearTimeout(connecting);
connecting = setTimeout(function(){connect();},100*(failedCount-1));
};
socket.onerror = function (){
failedCount+=1;
clearTimeout(connecting);
connecting = setTimeout(function(){connect();},100*failedCount);
};
socket.onopen = function (){
failedCount = 0;
try{
socket.send(JSON.stringify({"join":WID, "out":1, "in":2}));
} catch(e){
connecting = setTimeout(function(){connect();},1);
}
};
socket.addEventListener('message', function (event) {
if (event.data){
var data = JSON.parse(event.data);
console.log(data);
if (!data){
console.log("False? so Clear overlay");
} else if ("callback" in data){
if (data.callback.value == callbackID){
alert("Received response. See developer console for the message.");
}
} else {
var ele = document.createElement("div");
ele.className = "inbound";
ele.innerText = event.data;
document.getElementById("incoming_messages").prepend(ele);
}
}
});
}
connect();
function sendGuestCommand(target, action, value=null){
sendMessage(JSON.stringify({"target":target, "action":action, "value":value}));
}
function sendMessage(msg){
if (socket.readyState !== socket.OPEN){
console.log("not connected; msg didn't send");
connect();
return;
}
try {
socket.send(msg);
} catch(e){
connecting = setTimeout(function(){connect();},100);
}
}
function log(msg) {
// console.log(msg);
}
function warnlog(msg, url = false, lineNumber = false) {
// console.warn(msg);
if (lineNumber) {
// console.warn(lineNumber);
}
}
function errorlog(msg, url = false, lineNumber = false) {
console.error(msg);
if (lineNumber) {
console.error(lineNumber);
}
}
function ajax(data) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
log("AJAX MESSAGE SENT SUCCESSFULL");
}
};
var action = false
if ("action" in data){
action=data['action'];
}
var value = "null"
if ("value" in data){
value=data['value'];
}
var apiid = false
if ("apiid" in data){
apiid=data['apiid'];
}
var target = "null";
if ("target" in data){
target=data['target'];
}
if (!action || !apiid){
alert("no action or api ID provided; request won't work");
} else {
var URL = "https://io.socialstream.ninja/"+apiid+"/"+action+"/"+target+"/"+value;
xhttp.open("GET", URL, true);
xhttp.send();
}
}
function post(data) {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
log("AJAX MESSAGE SENT SUCCESSFULL");
}
};
var apiid = false
if ("apiid" in data){
apiid=data['apiid'];
}
if (!apiid){
alert("no action or api ID provided; request won't work");
} else {
var URL = "https://io.socialstream.ninja/"+apiid;
xhttp.open("POST", URL, true);
xhttp.setRequestHeader("Content-Type", "application/json");
xhttp.send(JSON.stringify(data));
}
}
function loadSelfCommands(){
var target_self = document.getElementById("target_self");
var title = document.createElement("h2");
title.innerText = "Send message to all social sites (Extension-specific)";
target_self.appendChild(title);
var title = document.createElement("p");
title.innerHTML = "If sending messages/actions to the extension directly, you just need to make sure the extension is on and the enable-server toggle is enabled in the extension menu.<br /><br />You can control the draw/waitlist function with this API, but also use it to send messages to the extension<br />";
target_self.appendChild(title);
var input = document.createElement("input");
input.placeholder = "Message to send to external chat here as the host";
input.style = "width:100%";
target_self.appendChild(input);
var br = document.createElement("br");
target_self.appendChild(br);
// https://io.socialstream.ninja/XXXXXXXXXX/sendChat/null/Hello
var button = document.createElement("button");
button.innerHTML = "Send message via WSS";
button.input = input;
button.onclick = function(){
if (this.input.value){
sendMessage(JSON.stringify({"action":"sendChat","value":this.input.value}));
} else {
alert("please enter a message first");
}
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Send message via HTTPS GET";
button.input = input;
button.onclick = function(){
if (this.input.value){
var msg = encodeURIComponent(this.input.value); // we can use sendChat for simple words that don't need encoding
ajax({"action":"sendEncodedChat","value":msg, "apiid":WID});
} else {
alert("please enter a message first");
}
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Send message via HTTPS POST";
button.input = input;
button.onclick = function(){
if (this.input.value){
post({"action":"sendChat","value":this.input.value, "apiid":WID});
} else {
alert("please enter a message first");
}
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Send message only to Twitch chat";
button.input = input;
button.onclick = function(){
if (this.input.value){
var msg = encodeURIComponent(this.input.value); // we can use sendChat for simple words that don't need encoding
ajax({"action":"sendEncodedChat","value":msg, "apiid":WID, "target": "twitch"});
} else {
alert("please enter a message first");
}
};
target_self.appendChild(button);
var title = document.createElement("h3");
title.innerText = "Wait List options";
target_self.appendChild(title);
var button = document.createElement("button");
button.innerHTML = "Clear First User in Wait List";
button.onclick = function(){
var data = {};
data.action = "removefromwaitlist";
data.value = 1;
sendMessage(JSON.stringify(data));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Clear Second User in Wait List";
button.onclick = function(){
var data = {};
data.action = "removefromwaitlist";
data.value = 2;
sendMessage(JSON.stringify(data));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Select First User in Wait List";
button.onclick = function(){
var data = {};
data.action = "highlightwaitlist";
data.value = 1;
sendMessage(JSON.stringify(data));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Select Second User in Wait List";
button.onclick = function(){
var data = {};
data.action = "highlightwaitlist";
data.value = 2;
sendMessage(JSON.stringify(data));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Select Next Unselected User in Wait List";
button.onclick = function(){
var data = {};
data.action = "highlightwaitlist";
data.value = 0;
sendMessage(JSON.stringify(data));
};
target_self.appendChild(button);
var title = document.createElement("h2");
title.innerText = "Dock-specific options";
target_self.appendChild(title);
var title = document.createElement("p");
title.innerHTML = "To use: Make sure to have <b>&server</b> appended to the social stream dock.html URL if intending to send messages to it directly. (This includes dock-specific actions, like next-in-queue actions)<br /><br />Enabling the &server mode also will let you obtain featured messages via the API, via SSE / WSS<br />";
target_self.appendChild(title);
var button = document.createElement("button");
button.innerHTML = "Clear featured overlay (via dashboard)";
button.input = input;
button.onclick = function(){
sendMessage(JSON.stringify({"action":"clearOverlay", "apiid":WID}));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Stop and clear all messages (except Pinned)";
button.input = input;
button.onclick = function(){
sendMessage(JSON.stringify({"action":"clearAll", "apiid":WID}));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Next in Queue";
button.input = input;
button.onclick = function(){
sendMessage(JSON.stringify({"action":"nextInQueue", "apiid":WID}));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Get Current Queue Size";
button.title = "This is only needed when first connecting; auto-updates after";
button.input = input;
button.onclick = function(){
sendMessage(JSON.stringify({"action":"getQueueSize", "apiid":WID})); // WSS is ideal, since you don't get an echo then
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Toggle auto-show";
button.input = input;
button.onclick = function(){
ajax({"action":"autoShow","value":"toggle", "apiid":WID}); // true, false, or "toggle"
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Feature next un-featured";
button.input = input;
button.onclick = function(){
ajax({"action":"feature","value":"true", "apiid":WID}); // true, false, or "toggle"
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Feature next pinned msg";
button.input = input;
button.onclick = function(){
ajax({"action":"nextPinned","value":"true", "apiid":WID}); // true, false, or "toggle"
};
target_self.appendChild(button);
////////
var br = document.createElement("br");
target_self.appendChild(br);
var br = document.createElement("br");
target_self.appendChild(br);
var br = document.createElement("br");
target_self.appendChild(br);
var title = document.createElement("h2");
title.innerHTML = "Fake message <i>from</i> a social site";
target_self.appendChild(title);
var title = document.createElement("p");
title.innerHTML = "There are different ways to fake a message from a social site, if for example you are injecting messages from your own application. You can create a test fake message below, and below that, choose which method you want to send it with.<br />";
target_self.appendChild(title);
var input = document.createElement("label");
target_self.appendChild(input);
input.innerText = "Name of sender";
var input = document.createElement("input");
input.placeholder = "Name of sender";
input.style = "width:300px;max-width:50%";
input.id = "namesenderfake";
input.value = "Bob";
target_self.appendChild(input);
var br = document.createElement("br");
target_self.appendChild(br);
var input = document.createElement("label");
target_self.appendChild(input);
input.innerText = "Message";
var input = document.createElement("input");
input.placeholder = "Message ";
input.style = "width:900px;max-width:80%";
input.id = "msgfake";
input.value = "Looking good! 😘😘😊 This is a test message. 🎶🎵🎵🔨 ";
target_self.appendChild(input);
var br = document.createElement("br");
target_self.appendChild(br);
var input = document.createElement("label");
target_self.appendChild(input);
input.innerText = "Donation";
var input = document.createElement("input");
input.placeholder = "Donation";
input.id = "donationfake";
target_self.appendChild(input);
var br = document.createElement("br");
target_self.appendChild(br);
var input = document.createElement("label");
target_self.appendChild(input);
input.innerText = "Avatar URL";
var input = document.createElement("input");
input.style = "width:900px;max-width:80%";
input.placeholder = "eg: https://somedomain.com/images/user.png";
input.id = "avatarfake";
target_self.appendChild(input);
var br = document.createElement("br");
target_self.appendChild(br);
var br = document.createElement("br");
target_self.appendChild(br);
var title = document.createElement("h3");
title.innerText = "Fake this message as a Twitch message via POST request";
target_self.appendChild(title);
var button = document.createElement("button");
button.innerHTML = "Server -> extension message";
button.onclick = function(){
var data = {};
data.chatname = document.getElementById("namesenderfake").value;
// data.nameColor = "";
// data.chatbadges = "";
// data.backgroundColor = "";
// data.textColor = "";
data.chatmessage = document.getElementById("msgfake").value;
data.chatimg = document.getElementById("avatarfake").value || ""; // will use Twitch API to get avatar is not specified
data.hasDonation = document.getElementById("donationfake").value;
// data.membership = "";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
data.id = Date.now() + parseInt(Math.random()*1000000); // not required, but useful for keeping track of order or assigning message uniquiness
//var html = {};
//html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
//html.type = "svg";
//data.chatbadges = [];
//data.chatbadges.push(html);
post({"extContent":data, "apiid":WID});
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Server -> dock message";
button.onclick = function(){
var data = {};
data.chatname = document.getElementById("namesenderfake").value;
// data.nameColor = "";
// data.chatbadges = "";
// data.backgroundColor = "";
// data.textColor = "";
data.chatmessage = document.getElementById("msgfake").value;
data.chatimg = document.getElementById("avatarfake").value || ""; // will use Twitch API to get avatar is not specified
data.hasDonation = document.getElementById("donationfake").value;
// data.membership = "";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
data.id = Date.now() + parseInt(Math.random()*1000000); // not required, but useful for keeping track of order or assigning message uniquiness
//var html = {};
//html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
//html.type = "svg";
//data.chatbadges = [];
//data.chatbadges.push(html);
post({content:data, "apiid":WID});
};
target_self.appendChild(button);
/////
var title = document.createElement("h3");
title.innerText = "Fake this message as a Twitch message via GET request";
target_self.appendChild(title);
var button = document.createElement("button");
button.innerHTML = "Server -> extension message";
button.onclick = function(){
var data = {};
data.chatname = document.getElementById("namesenderfake").value;
// data.nameColor = "";
// data.chatbadges = "";
// data.backgroundColor = "";
// data.textColor = "";
data.chatmessage = document.getElementById("msgfake").value;
data.chatimg = document.getElementById("avatarfake").value || ""; // will use Twitch API to get avatar is not specified
data.hasDonation = document.getElementById("donationfake").value;
// data.membership = "";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
data.id = Date.now() + parseInt(Math.random()*1000000); // not required, but useful for keeping track of order or assigning message uniquiness
//var html = {};
//html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
//html.type = "svg";
//data.chatbadges = [];
//data.chatbadges.push(html);
var encoded = JSON.stringify(data);
encoded = encodeURIComponent(encoded);
ajax({"action":"extContent","value":encoded, "apiid":WID});
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Server -> dock message";
button.onclick = function(){
var data = {};
data.chatname = document.getElementById("namesenderfake").value;
// data.nameColor = "";
// data.chatbadges = "";
// data.backgroundColor = "";
// data.textColor = "";
data.chatmessage = document.getElementById("msgfake").value;
data.chatimg = document.getElementById("avatarfake").value || ""; // will use Twitch API to get avatar is not specified
data.hasDonation = document.getElementById("donationfake").value;
// data.membership = "";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
data.id = Date.now() + parseInt(Math.random()*1000000); // not required, but useful for keeping track of order or assigning message uniquiness
//var html = {};
//html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
//html.type = "svg";
//data.chatbadges = [];
//data.chatbadges.push(html);
var encoded = JSON.stringify(data);
encoded = encodeURIComponent(encoded);
ajax({"action":"content","value":encoded, "apiid":WID});
};
target_self.appendChild(button);
/////
var title = document.createElement("h3");
title.innerText = "Fake this message as a Twitch message via WebSockets";
target_self.appendChild(title);
var button = document.createElement("button");
button.innerHTML = "Server -> extension message";
button.onclick = function(){
var data = {};
data.chatname = document.getElementById("namesenderfake").value;
// data.nameColor = "";
// data.chatbadges = "";
// data.backgroundColor = "";
// data.textColor = "";
data.chatmessage = document.getElementById("msgfake").value;
data.chatimg = document.getElementById("avatarfake").value || ""; // will use Twitch API to get avatar is not specified
data.hasDonation = document.getElementById("donationfake").value;
// data.membership = "";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
data.id = Date.now() + parseInt(Math.random()*1000000); // not required, but useful for keeping track of order or assigning message uniquiness
//var html = {};
//html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
//html.type = "svg";
//data.chatbadges = [];
//data.chatbadges.push(html);
var message = {};
message.extContent = data; // just a different structured way of sending messages: {"action":"content","value":encoded} versus {"extContent":message}
//message.apiid = WID; // session ID key
sendMessage(JSON.stringify(message));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Server -> dock message";
button.onclick = function(){
var data = {};
data.chatname = document.getElementById("namesenderfake").value;
// data.nameColor = "";
// data.chatbadges = "";
// data.backgroundColor = "";
// data.textColor = "";
data.chatmessage = document.getElementById("msgfake").value;
data.chatimg = document.getElementById("avatarfake").value || ""; // will use Twitch API to get avatar is not specified
data.hasDonation = document.getElementById("donationfake").value;
// data.membership = "";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
data.id = Date.now() + parseInt(Math.random()*1000000);
//var html = {};
//html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
//html.type = "svg";
//data.chatbadges = [];
//data.chatbadges.push(html);
var message = {};
message.content = data;
sendMessage(JSON.stringify(message));
};
target_self.appendChild(button);
var button = document.createElement("button");
button.innerHTML = "Server -> dock message (alt)";
button.title = "this is the same as the other way, except the JSON structure is at the root, rather than in 'content'";
button.onclick = function(){
var data = {};
data.chatname = document.getElementById("namesenderfake").value;
// data.nameColor = "";
// data.chatbadges = "";
// data.backgroundColor = "";
// data.textColor = "";
data.chatmessage = document.getElementById("msgfake").value;
data.chatimg = document.getElementById("avatarfake").value || ""; // will use Twitch API to get avatar is not specified
data.hasDonation = document.getElementById("donationfake").value;
// data.membership = "";
data.type = "twitch"; // twitch.png gets used as an icon, as a result
data.id = Date.now() + parseInt(Math.random()*1000000); // not required, but useful for keeping track of order or assigning message uniquiness
//var html = {};
//html.html = '<svg viewBox="0 0 16 16" preserveAspectRatio="xMidYMid meet" focusable="false" class="style-scope yt-icon" style="pointer-events: none; display: block; width: 100%; height: 100%; fill: rgb(95, 132, 241);"><g class="style-scope yt-icon"><path d="M9.64589146,7.05569719 C9.83346524,6.562372 9.93617022,6.02722257 9.93617022,5.46808511 C9.93617022,3.00042984 7.93574038,1 5.46808511,1 C4.90894765,1 4.37379823,1.10270499 3.88047304,1.29027875 L6.95744681,4.36725249 L4.36725255,6.95744681 L1.29027875,3.88047305 C1.10270498,4.37379824 1,4.90894766 1,5.46808511 C1,7.93574038 3.00042984,9.93617022 5.46808511,9.93617022 C6.02722256,9.93617022 6.56237198,9.83346524 7.05569716,9.64589147 L12.4098057,15 L15,12.4098057 L9.64589146,7.05569719 Z" class="style-scope yt-icon"></path></g></svg>';
//html.type = "svg";
//data.chatbadges = [];
//data.chatbadges.push(html);
sendMessage(JSON.stringify(data));
};
target_self.appendChild(button);
}
loadSelfCommands();
</script>
</body>
</html>