-
Notifications
You must be signed in to change notification settings - Fork 7
/
stopcensorship.js
288 lines (240 loc) · 6.49 KB
/
stopcensorship.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
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
//
// stopcensorship.js
//
// Author: Doug Martin (@dougmartin or http://dougmart.in/)
//
// Usage: Add to head or body of any page to automatically censor the content to protest censorship of the Internet
//
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
//
// NOTE: PLEASE DON'T HOTLINK THIS SCRIPT!
//
(function () {
var walker, node, root, bar;
function removeBar() {
// set the no-censor cookie for this session
document.cookie = "__REMOVE_STOP_CENSORSHIP__=1;path=/";
// and reload the page
window.location.reload();
return false;
}
function addBar() {
var baseStyles, linkStyles, stopLink, removeLink;
function createStyledNode(type, text, nodeStyles) {
var i, node, e;
function applyStyles(styles) {
if (styles) {
for (i in styles) {
if (styles.hasOwnProperty(i)) {
try {
node.style[i] = styles[i];
}
catch (e) {
}
}
}
}
}
node = document.createElement(type);
node.innerHTML = text;
applyStyles(baseStyles);
applyStyles(nodeStyles);
return node;
}
// create the base styles
baseStyles = {
"background": "#000 none repeat scroll 0% 0%",
"borderCollapse": "separate",
"borderSpacing": "0",
"border": "medium none #000",
"bottom": "auto",
"captionSide": "top",
"clear": "none",
"clip": "auto",
"color": "#fff",
"cursor": "auto",
"direction": "ltr",
"display": "inline",
"emptyCells": "show",
"float": "none",
"fontStyle": "normal",
"fontVariant": "normal",
"fontWeight": "bold",
"fontSize": "12px",
"fontFamily": "verdana,helvetica,arial,sans-serif",
"height": "auto",
"left": "auto",
"letterSpacing": "normal",
"lineHeight": "normal",
"listStyle": "disc outside none",
"margin": "0",
"maxHeight": "none",
"maxWidth": "none",
"minHeight": "0",
"minWidth": "0",
"orphans": "2",
"outline": "invert none medium",
"overflow": "visible",
"padding": "0",
"pageBreakAfter": "auto",
"pageBreakBefore": "auto",
"pageBreakInside": "auto",
"position": "static",
"right": "auto",
"tableLayout": "auto",
"textAlign": "left",
"textDecoration": "none",
"textIndent": "0",
"textTransform": "none",
"top": "auto",
"unicodeBidi": "normal",
"verticalAlign": "baseline",
"visibility": "visible",
"whiteSpace": "normal",
"widows": "2",
"width": "auto",
"wordSpacing": "normal",
"zIndex": "auto"
};
// and the link styles
linkStyles = {
"textDecoration": "underline",
"cursor": "pointer"
};
// add bar to top of page with link to anti-censor site and link to set cookie
bar = createStyledNode("div", "", {
"position": "absolute",
"top": "0",
"left": "0",
"textAlign": "center",
"margin": "0",
"padding": "5px 0",
"width": "100%",
"borderTop": "2px solid #fff",
"borderBottom": "2px solid #fff",
"zIndex": 2147483647
});
stopLink = createStyledNode("a", "STOP CENSORSHIP", linkStyles);
stopLink.href = "http://americancensorship.org/";
removeLink = createStyledNode("a", "Remove this", linkStyles);
removeLink.href = "#";
removeLink.onclick = removeBar;
bar.appendChild(stopLink);
bar.appendChild(createStyledNode("span", "|", {
"padding": "0 10px"
}));
bar.appendChild(removeLink);
document.body.appendChild(bar);
}
function run() {
var blackout, blackoutArray;
function censorNode(node) {
var words, i, j;
// split contents on whitespace
words = node.nodeValue.split(/\s/);
// randomly replace words with black bars
for (i = 0, j = words.length; i < j; i++) {
if (Math.random() < 0.5) {
words[i] = blackoutArray.slice(0, words[i].length).join("");
}
}
// and rejoin using just space
node.nodeValue = words.join(" ");
}
// create a big blackout array string to pull from
blackout = String.fromCharCode(0x2588);
blackoutArray = [];
while (blackoutArray.length < 1024) {
blackoutArray.push(blackout);
}
// process all the text
if (document.createTreeWalker) {
walker = document.createTreeWalker(document.body, NodeFilter.SHOW_TEXT, null, false);
while (walker.nextNode()) {
censorNode(walker.currentNode);
}
}
else {
// do depth first traveral from "Iterative Tree Traversal" at
// http://stackoverflow.com/questions/2579666/getelementsbytagname-equivalent-for-textnodes
root = document.body;
node = root.childNodes[0];
while (node != null) {
if (node.nodeType == 3) {
censorNode(node);
}
if (node.hasChildNodes()) {
node = node.firstChild;
}
else {
while (node.nextSibling == null && node != root) {
node = node.parentNode;
}
node = node.nextSibling;
}
}
}
addBar();
}
// adapted from jQuery
function onReady(callback) {
var isReady = false;
function ready() {
if (isReady) {
return;
}
if (!document.body) {
return setTimeout(ready, 1);
}
isReady = true;
callback();
}
function domContentLoaded() {
if (document.addEventListener) {
document.removeEventListener("DOMContentLoaded", domContentLoaded, false);
ready();
}
else if (document.attachEvent && (document.readyState === "complete")) {
document.detachEvent("onreadystatechange", domContentLoaded);
ready();
}
}
function doScrollCheck() {
if (isReady) {
return;
}
try {
document.documentElement.doScroll("left");
} catch (e) {
setTimeout(doScrollCheck, 1);
return;
}
ready();
}
if (document.addEventListener) {
document.addEventListener("DOMContentLoaded", domContentLoaded, false);
window.addEventListener("load", ready, false);
}
else if (document.attachEvent) {
document.attachEvent("onreadystatechange", domContentLoaded);
window.attachEvent("onload", ready);
try {
if ((window.frameElement === null) && document.documentElement.doScroll) {
doScrollCheck();
}
} catch (e) {
}
}
}
// if undo-censor cookie set, return
if (/__REMOVE_STOP_CENSORSHIP__=1/.test(document.cookie)) {
return;
}
// wait for document load and then run
if (!document.body) {
onReady(run);
}
else {
run();
}
}());