-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsopablackout.js
164 lines (160 loc) · 4.27 KB
/
sopablackout.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
(function (){
var root = this;
var SopaBlackout = function(){};
var addEvent = function(obj, type, fn, ref_obj){
if (obj.addEventListener){
obj.addEventListener(type, fn, false);
}else if (obj.attachEvent){
obj["e"+type+fn] = fn;
obj[type+fn] = function(){
obj["e"+type+fn](window.event,ref_obj);
};
obj.attachEvent("on"+type, obj[type+fn]);
}
};
// Thanks http://javascript.nwbox.com/IEContentLoaded/
// for this
var IEContentLoaded = function(w, fn) {
var d = w.document, done = false,
init = function () {
if (!done) {
done = true;
fn();
}
};
(function () {
try {
d.documentElement.doScroll('left');
} catch (e) {
setTimeout(arguments.callee, 50);
return;
}
init();
})();
d.onreadystatechange = function() {
if (d.readyState == 'complete') {
d.onreadystatechange = null;
init();
}
};
};
var onDomReady = function(fn){
if (document.addEventListener){
document.addEventListener('DOMContentLoaded', fn, false);
}else{
IEContentLoaded(window, fn);
}
};
var getStyle = function(e, prop){
if (e.currentStyle){
return e.currentStyle[prop];
}else if (document.defaultView && document.defaultView.getComputedStyle){
return document.defaultView.getComputedStyle(e, "")[prop];
}else{
return e.style[prop];
}
};
var findPos = function(obj){
var curleft = 0;
var curtop = 0;
if (obj.offsetParent){
do{
curleft += obj.offsetLeft;
curtop += obj.offsetTop;
}while(obj = obj.offsetParent);
}
return [curleft, curtop];
};
var txt = function(s){
return document.createTextNode(s);
};
var create = function(e, props){
var elem = document.createElement(e);
var props = props !== null ? props : {};
for (var key in props){
if (key == 'href'){
elem.href = props[key];
}else{
elem.style[key] = props[key];
}
}
l = arguments.length;
for (var i=2; i<l; i++){
elem.appendChild(arguments[i]);
}
return elem;
};
var getOpts = function(){
var ret = {};
for (var key in SopaBlackout.DEFAULTS){
var k = 'sopablackout_' + key;
ret[key] = (typeof window[k] === 'undefined') ? SopaBlackout.DEFAULTS[key] : window[k];
}
return ret;
};
var dateMatches = function(spec){
spec.push(false); spec.push(false); spec.push(false);
var today = new Date();
if ((spec[0] !== false && today.getFullYear() !== spec[0]) ||
(spec[1] !== false && today.getMonth() + 1 !== spec[1]) ||
(spec[2] !== false && today.getDate() !== spec[2])){
return false;
}
return true;
};
SopaBlackout.VERSION = '0.2.0';
SopaBlackout.MIN_HEIGHT = 100;
SopaBlackout.HEADER_TEXT = "This is what the web could look like under the Stop Online Piracy Act.";
SopaBlackout.CONTINUE_TEXT = "(click anywhere to continue)";
SopaBlackout.ZINDEX = Math.pow(2, 31) - 2;
SopaBlackout.DEFAULTS = {
'id': false,
'srsbzns': false,
'on': false
};
SopaBlackout.blackout = function(opts){
var obj;
var body = document.body;
if (opts['id'] === false){
obj = body;
height = "100%";
}else{
obj = document.getElementById(opts['id']);
var height = parseInt(getStyle(obj, 'height'), 10);
height = height > SopaBlackout.MIN_HEIGHT ? height : SopaBlackout.MIN_HEIGHT;
}
var offsets = findPos(obj);
var blackout = create('div', {
position: 'absolute',
top: offsets[1],
width: '100%',
backgroundColor: 'black',
textAlign: 'center',
paddingTop: '10px',
zIndex: SopaBlackout.ZINDEX,
height: height,
color: '#999'},
create('h1', {color: '#999'}, txt(SopaBlackout.HEADER_TEXT)),
create('p', null,
txt("Keep the web open. "),
create('a', {href: "https://wfc2.wiredforchange.com/o/9042/p/dia/action/public/?action_KEY=8173"}, txt("Contact your representatives")),
txt(" or "),
create('a', {href: "http://sopablackout.org/learnmore"}, txt("find out more")))
);
if (opts['srsbzns'] !== true){
blackout.appendChild(create('p', {paddingTop: '250px', color: '#333'}, txt(SopaBlackout.CONTINUE_TEXT)));
addEvent(blackout, 'click', function(e){
body.removeChild(blackout);
});
}
body.appendChild(blackout);
};
SopaBlackout.go = function(){
var opts = getOpts();
if (opts['on'] !== false && !dateMatches(opts['on'])){
return;
}
SopaBlackout.blackout(opts);
};
onDomReady(SopaBlackout.go);
}).call(this);