forked from steveseguin/social_stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmeets.js
136 lines (114 loc) · 3.1 KB
/
meets.js
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
(function () {
function pushMessage(data) {
try {
chrome.runtime.sendMessage(
chrome.runtime.id,
{ message: data },
function (e) {}
);
} catch (e) {}
}
function errorlog(e) {
//console.error(e);
}
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 processMessage(ele) {
var chatimg = "";
var chatname = "";
var chatmessage = "";
// Get the chat message
try {
chatmessage = ele.innerText;
} catch (e) {
errorlog(e);
}
if (!chatmessage) {
return;
}
chatname = ele.parentNode.parentNode.dataset.senderName;
if (chatname === "You"){
chatname = Hostname;
chatimg = Hostimg;
}
var data = {};
data.chatname = chatname;
data.chatbadges = "";
data.backgroundColor = "";
data.textColor = "";
data.chatmessage = chatmessage;
data.chatimg = chatimg;
data.hasDonation = "";
data.hasMembership = "";
data.contentimg = "";
data.type = "meet";
console.log(data);
pushMessage(data);
return;
}
console.log("Social Stream injected");
var Hostname = false;
var Hostimg = false;
if (document.querySelectorAll("div[title]").length){
Hostname = document.querySelectorAll("div[title]")[0].title;
if (document.querySelectorAll("div[title]")[0].parentNode.previousSibling){
Hostimg = document.querySelectorAll("div[title]")[0].parentNode.previousSibling.src || false;
toDataURL(Hostimg, function(dataUrl) {
Hostimg = dataUrl;
});
}
}
var settings = {};
chrome.runtime.onMessage.addListener(
function (request, sender, sendResponse) {
try{
if ("focusChat" == request){
document.querySelector('.DraftEditor-editorContainer .public-DraftStyleDefault-block[data-offset-key]').click();
document.querySelector('.DraftEditor-editorContainer .public-DraftStyleDefault-block[data-offset-key]').focus();
sendResponse(true);
return;
}
if (typeof request === "object"){
if ("settings" in request){
settings = request.settings;
sendResponse(true);
return;
}
}
// twitch doesn't capture avatars already.
} catch(e){}
sendResponse(false);
}
);
setInterval(function () {
if (!Hostname && document.querySelectorAll("div[title]").length){
Hostname = document.querySelectorAll("div[title]")[0].title;
if (document.querySelectorAll("div[title]")[0].parentNode.previousSibling){
Hostimg = document.querySelectorAll("div[title]")[0].parentNode.previousSibling.src || false;
toDataURL(Hostimg, function(dataUrl) {
Hostimg = dataUrl;
});
}
}
var xxx = document.querySelectorAll('[data-message-text]');
for (var j = 0; j < xxx.length; j++) {
if (xxx[j].marked) {
continue;
}
xxx[j].marked = true;
processMessage(xxx[j]);
}
}, 1000);
// Does not support sending messages in Chime
})();