forked from steveseguin/social_stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstafeed.js
138 lines (120 loc) · 3.36 KB
/
instafeed.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
137
138
(function () {
function pushMessage(data){
try {
chrome.runtime.sendMessage(chrome.runtime.id, { "message": data }, function(e){});
} catch(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();
}
async function processMessage(ele){
console.log(ele);
try {
var chatdonation = false;
var chatmembership = false;
var chatsticker = false;
try {
var chatname = ele.querySelector("b").innerText;
} catch(e){
return;
}
if (settings.textonlymode){
var chatmessage = ele.querySelector("span").innerText;
} else {
var chatmessage = ele.querySelector("span").innerHTML;
}
if (!chatmessage){
return;
}
var chatimg = ele.querySelector("a").style.backgroundImage.split('url("');
if (chatimg && chatimg.length>1){
chatimg=chatimg[1].split(')"')[0];
chatimg = "https://instafeed.me"+chatimg;
}
var data = {};
data.chatname = chatname;
data.chatbadges = "";
data.backgroundColor = "";
data.textColor = "";
data.chatmessage = chatmessage;
data.chatimg = chatimg;
data.hasDonation = "";
data.hasMembership = "";
data.type = "instagramlive";
if (data.chatimg){
toDataURL(data.chatimg, function(dataUrl) {
data.chatimg = dataUrl;
pushMessage(data);
});
} else {
pushMessage(data);
}
} catch(e){
console.error(e);
}
}
var settings = {};
// settings.textonlymode
// settings.streamevents
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('#comment_text').focus();
sendResponse(true);
return;
}
if (typeof request === "object"){
if ("settings" in request){
settings = request.settings;
sendResponse(true);
return;
}
}
} catch(e){}
sendResponse(false);
}
);
function onElementInserted(target, callback) {
var onMutationsObserved = function(mutations) {
mutations.forEach(function(mutation) {
if (mutation.addedNodes.length) {
for (var i = 0, len = mutation.addedNodes.length; i < len; i++) {
console.log(mutation.addedNodes[i]);
try {
if (mutation.addedNodes[i].dataset.set123){continue;}
mutation.addedNodes[i].dataset.set123 = "true";
callback(mutation.addedNodes[i]);
} catch(e){}
}
}
});
};
if (!target){return;}
var config = { childList: true, subtree: true };
var MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
var observer = new MutationObserver(onMutationsObserved);
observer.observe(target, config);
}
console.log("social stream injected");
try {
onElementInserted(document.getElementById("comments"), function(element){
processMessage(element);
});
} catch(e){}
})();