forked from steveseguin/social_stream
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmegaphonetv.js
More file actions
254 lines (212 loc) · 6.34 KB
/
megaphonetv.js
File metadata and controls
254 lines (212 loc) · 6.34 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
(function () {
function toDataURL(url, callback) {
var xhr = new XMLHttpRequest();
xhr.onload = function() {
var reader = new FileReader();
reader.onloadend = function() {
callback(reader.result);
}
reader.readAsDataURL(xhr.response);
};
xhr.open('GET', url);
xhr.responseType = 'blob';
xhr.send();
}
function escapeHtml(unsafe){ // when goofs be trying to hack me
return unsafe
.replace(/&/g, "&")
.replace(/</g, "<")
.replace(/>/g, ">")
.replace(/"/g, """)
.replace(/'/g, "'") || "";
}
function getAllContentNodes(element) { // takes an element.
var resp = "";
if (!element){return resp;}
if (!element.childNodes || !element.childNodes.length){
if (element.textContent){
return escapeHtml(element.textContent) || "";
} else {
return "";
}
}
element.childNodes.forEach(node=>{
if (node.childNodes.length){
resp += getAllContentNodes(node)
} else if ((node.nodeType === 3) && node.textContent && (node.textContent.trim().length > 0)){
resp += escapeHtml(node.textContent)+" ";
} else if (node.nodeType === 1){
if (!settings.textonlymode){
if ((node.nodeName == "IMG") && node.src){
node.src = node.src+"";
}
resp += node.outerHTML;
}
}
});
return resp;
}
function rankToColor(rank, maxRank = 400) {
// Start and end colors in RGB
const startColor = { r: 197, g: 204, b: 218 }; // #4F6692
const midColor = { r: 100, g: 115, b: 225 }; // #2026B0
const endColor = { r: 81, g: 85, b: 255 }; // #0000FF
// Determine color stops based on rank
const midRank = parseInt(maxRank/2);
let colorStop;
if (rank <= midRank) {
// Calculate how far the rank is between 1 and midRank
const ratio = (rank - 1) / (midRank - 1);
colorStop = {
r: startColor.r + ratio * (midColor.r - startColor.r),
g: startColor.g + ratio * (midColor.g - startColor.g),
b: startColor.b + ratio * (midColor.b - startColor.b),
};
} else {
// Calculate how far the rank is between midRank and maxRank
const ratio = (rank - midRank) / (maxRank - midRank);
colorStop = {
r: midColor.r + ratio * (endColor.r - midColor.r),
g: midColor.g + ratio * (endColor.g - midColor.g),
b: midColor.b + ratio * (endColor.b - midColor.b),
};
}
// Convert the RGB color stop to a hex color code
const hexColor = `#${Math.round(colorStop.r).toString(16).padStart(2, '0')}` +
`${Math.round(colorStop.g).toString(16).padStart(2, '0')}` +
`${Math.round(colorStop.b).toString(16).padStart(2, '0')}`;
return hexColor;
}
var lut = [];
for (var i =1;i<=400;i++){
lut.push(rankToColor(i,400));
}
var eventTypes = [
"is watching",
"I became a fan!",
"invited \\d+ fans to this broadcast."
];
function matchesEventType(msg) {
return eventTypes.some(eventType => {
// Create a RegExp object from the string, treating it as a regular expression
const pattern = new RegExp("^" + eventType + "$");
return pattern.test(msg);
});
}
function processMessage(ele){
//console.log(ele);
var chatimg = ""
try {
chatimg = ele.querySelector("img.avatar[src]").src;
} catch(e){
}
var name="";
try {
name = escapeHtml(ele.querySelector(".name-and-time-container h3").textContent.trim());
} catch(e){
}
var msg="";
try {
msg = getAllContentNodes(ele.querySelector(".name-and-time-container").nextSibling).trim();
} catch(e){
}
if (!msg && !chatimg){
return;
}
var chatbadges = "";
var nameColor = "";
var data = {};
data.chatname = name;
data.chatbadges = chatbadges;
data.backgroundColor = "";
data.textColor = "";
data.nameColor = nameColor
data.chatmessage = msg;
data.chatimg = chatimg;
data.hasDonation = "";
data.membership = "";
data.contentimg = "";
data.type = "megaphonetv";
pushMessage(data);
}
function pushMessage(data){
try{
chrome.runtime.sendMessage(chrome.runtime.id, { "message": data }, function(e){});
} catch(e){
}
}
var settings = {};
// settings.textonlymode
// settings.captureevents
chrome.runtime.sendMessage(chrome.runtime.id, { "getSettings": true }, function(response){ // {"state":isExtensionOn,"streamID":channel, "settings":settings}
if ("settings" in response){
settings = response.settings;
}
});
chrome.runtime.onMessage.addListener(
function (request, sender, sendResponse) {
try{
if ("focusChat" == request){ // if (prev.querySelector('[id^="message-username-"]')){ //slateTextArea-
document.querySelector('#chat-input').focus();
sendResponse(true);
return;
}
if (typeof request === "object"){
if ("settings" in request){
settings = request.settings;
sendResponse(true);
return;
}
}
} catch(e){}
sendResponse(false);
}
);
var lastURL = "";
var observer = null;
function onElementInserted(target) {
var onMutationsObserved = function(mutations) {
mutations.forEach(function(mutation) {
if (mutation.addedNodes.length) {
for (var i = 0, len = mutation.addedNodes.length; i < len; i++) {
try {
if (mutation.addedNodes[i].skip){continue;}
if (!mutation.addedNodes[i].classList.contains("message")){
var ele = mutation.addedNodes[i].querySelector('.message');
if (ele.skip){continue;}
ele.skip = true;
processMessage(ele);
continue;
}
mutation.addedNodes[i].skip = true;
processMessage(mutation.addedNodes[i]);
} catch(e){}
}
}
});
};
var config = { childList: true, subtree: true };
var MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
observer = new MutationObserver(onMutationsObserved);
observer.observe(target, config);
}
console.log("social stream injected");
setInterval(function(){
try {
if (document.querySelector('.message-list-container')){
if (!document.querySelector('.message-list-container').marked){
document.querySelector('.message-list-container').marked=true;
console.log("CONNECTED chat detected");
try {
[...document.querySelectorAll('.message-list-container .message')].reverse().forEach(ele=>{
processMessage(ele);
});
} catch(e){
//
}
onElementInserted(document.querySelector('.message-list-container'));
}
};
} catch(e){}
},2000);
})();