-
Notifications
You must be signed in to change notification settings - Fork 0
/
easpm123.js
444 lines (388 loc) · 13.6 KB
/
easpm123.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
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
//
// (c) Copyright - EASPM123 (Email Anti-Spam 123) 1.0 by Joan Alba Maldonado
// - Email: joanalbamaldonadoNO_SPAM_WELCOME{*AT*}gmail{*DOT*}com (without "NO_SPAM_WELCOME")
// - Forbidden to use without keeping the author's name and copyright clauses
// - For non-commercial purposes only (unless you contact me and pay for a license)
//
//* Using classes (to use more than one class at the same time, separate them by a blank space):
//
// <a href="mailto:[email protected]" class="easpm123">
// email<del style="text-decoration:line-through;"><s>NO_SPAM_WELCOME</s></del>{*AT_HERE*}example.com
// </a>
// <!-- The following is optional but recommended (just in case JavaScript is disabled): -->
// <span class="easpm123_label">
// (without NO_SPAM_WELCOME and replacing {*AT_HERE*} by @)
// <!-- Note: any text, image or content can be used. JavaScrpt will hidde it. -->
// </span>
//
//
//* Using IDs (remember that every ID should be unique):
//
// <a href="mailto:[email protected]" id="easpm123">
// email<del style="text-decoration:line-through;"><s>NO_SPAM_WELCOME</s></del>{*AT_HERE*}example.com
// </a>
// <!-- The following is optional but recommended (just in case JavaScript is disabled): -->
// <span id="easpm123_label">
// (without NO_SPAM_WELCOME and replacing {*AT_HERE*} by @)
// <!-- Note: any text, image or content can be used. JavaScrpt will hidde it. -->
// </span>
//
//* NOTE: Classes, IDs and NO_SPAM_WELCOME text can be modified altering the corresponding arrays.
//* NOTE 2: NO_SPAM_WELCOME text can be placed anywhere, but at the beginning or at the end is not recommended.
//* NOTE 3: The use of DEL, S or STRIKE tag is optional (for maximum protection, use CSS line-through instead ONLY).
//* NOTE 4: Some old browsers are case sensitive so use always lower case letters for both IDs and class names.
//* NOTE 5: To be safer, use NO_SPAM_WELCOME text (or any you desire) in the user part (not in the server one).
// To be even safer, use a different text in both parts (user and domain):
// exampleDELETE_THIS@NO_SPAM_WELCOME.com
// It is recommended to change NO_SPAM_WELCOME text for another one which is personalized.
//* NOTE 6: Do not forget to translate NO_SPAM_WELCOME_TEXT, AT_TEXTS and labels to support all languages.
//
//* JavaScript main object usage (all parameters are arrays of strings):
// EASPM123([autoLoad], [emailClasses], [labelClasses], [emailIds], [labelIds], [noSpamTexts], [atTexts], [events]);
//
//* JavaScript main method usage (all parameters are arrays of strings):
// EASPM123.run([emailClasses], [labelClasses], [emailIds], [labelIds], [noSpamTexts], [atTexts], [events]);
//
var EASPM123 = function(autoLoad, emailClasses, labelClasses, emailIds, labelIds, noSpamTexts, atTexts, events)
{
//Configuration variables (caution: some old browsers are case sensitive so use always lower case letters):
var EMAIL_CLASSES = ["easpm123"]; //Classes used by A tags.
var LABEL_CLASSES = ["easpm123_label"]; //Classes used by without-no-spam label tags.
var EMAIL_IDS = ["easpm123"]; //IDs used by A tags.
var LABEL_IDS = ["easpm123_label"]; //IDs used by without-no-spam label tags.
var NO_SPAM_TEXTS = ["NO_SPAM_WELCOME"]; //Texts to be cleared (case sensitive).
var AT_TEXTS = ["{*AT_HERE*}"]; //Texts that will be replaced by AT (@) symbol.
var EVENTS = ["mouseover", "click", "touchstart"]; //Events that will fire the script (leave it empty to do it automatically without events).
//In case we wanted, processes the script when the page loads:
if (typeof(autoLoad) === "undefined" || autoLoad === null) { autoLoad = true; } //Auto-loads by default.
if (autoLoad)
{
setEvent(
window,
"load",
function()
{
setTimeout(
function()
{
EASPM123.run(emailClasses, labelClasses, emailIds, labelIds, noSpamTexts, atTexts, events);
}, 100); //Using a setTimeout is a bit safer (some spam bots supporting JavaScript don't wait).
}
);
}
//Function that processes the script:
EASPM123.run = function(emailClasses, labelClasses, emailIds, labelIds, noSpamTexts, atTexts, events)
{
//If not defined, uses default parameters:
emailClasses = emailClasses || EMAIL_CLASSES;
labelClasses = labelClasses || LABEL_CLASSES;
emailIds = emailIds || EMAIL_IDS;
labelIds = labelIds || LABEL_IDS;
noSpamTexts = noSpamTexts || NO_SPAM_TEXTS;
atTexts = atTexts || AT_TEXTS;
events = events || EVENTS;
//Processes all email elements with the desired classes:
elementsIdClass(emailClasses, true, processEmail, events, noSpamTexts, atTexts);
//Processes all email elements with the desired IDs:
elementsIdClass(emailIds, false, processEmail, events, noSpamTexts, atTexts);
//Processes all label elements with the desired classes:
elementsIdClass(labelClasses, true, processLabel);
//Processes all label elements with the desired IDs:
elementsIdClass(labelIds, false, processLabel);
}
//Function that returns all elements corresponding to a list of classes or IDs:
function elementsIdClass(array, isClass, processFunction, events, parameter1, parameter2)
{
if (typeof(isClass) === "undefined" || isClass === null) { isClass = false; }
if (typeof(processFunction) !== "function") { processFunction = function() {}; }
if (typeof(events) === "undefined" || typeof(events.length) === "undefined") { events = []; }
//var elements = [];
var arrayLength = array.length;
var elementsLoop;
var elementsLoopLength;
for (var x = 0; x < arrayLength; x++)
{
//If we are looking by class:
if (isClass)
{
//Gets all elements with the current class and stores them:
elementsLoop = elementsClass(array[x]);
if (elementsLoop !== null)
{
elementsLoopLength = elementsLoop.length;
for (var y = 0; y < elementsLoopLength; y++)
{
//elements[elements.length] = elementsLoop[y];
if (events.length === 0)
{
processFunction(elementsLoop[y], parameter1, parameter2);
}
else
{
setEvents(elementsLoop[y], events, processFunction, parameter1, parameter2);
}
}
}
}
//...otherwise, if we are looking by ID:
else
{
//Gets the current element by ID and stores it:
elementsLoop = document.getElementById(array[x]);
if (elementsLoop !== null)
{
//elements[elements.length] = elementsLoop;
if (events.length === 0)
{
processFunction(elementsLoop, parameter1, parameter2);
}
else
{
setEvents(elementsLoop, events, processFunction, parameter1, parameter2);
}
}
}
}
//return elements;
}
//Function that sets desired events (in an array) for an element:
function setEvents(element, events, eventFunction, parameter1, parameter2)
{
var eventsLength = events.length;
for (var x = 0; x < eventsLength; x++)
{
setEvent(element, events[x], function() { eventFunction(element, parameter1, parameter2); });
}
}
//Function that sets a desired event for an element:
function setEvent(element, event, eventFunction)
{
event = trim(event).toLowerCase();
var eventFunctionBackup = element["on" + event];
element["on" + event] =
function(e)
{
if (typeof(eventFunctionBackup) !== "undefined") { try { eventFunctionBackup(e); } catch (E) {} }
eventFunction(e);
};
}
//Function that processes an email element:
function processEmail(element, noSpamTexts, atTexts)
{
//If the element exists:
if (element !== null)
{
var textBackup = clearEmail(getText(element), noSpamTexts, atTexts); //IE fix.
//Replaces the text in the HREF element (if any):
element.href = clearEmail(element.href, noSpamTexts, atTexts);
//Replaces the innerHTML text (if any):
setText(element, textBackup);
//element.innerHTML = textBackup;
}
}
//Function that processes a label element:
function processLabel(element)
{
//If the element exists:
if (element !== null)
{
//Makes it disappear:
element.style.visibility = "hidden";
element.style.display = "none";
}
}
//Strips desired texts and replaces AT texts by AT symbol (@):
function clearEmail(string, noSpamTexts, atTexts)
{
//Casts the string:
string += "";
//Loops through all desired texts:
var noSpamTextsLength = noSpamTexts.length;
for (var x = 0; x < noSpamTextsLength; x++)
{
//Replaces the desired text for an empty string:
string = string.replace(noSpamTexts[x], "");
}
//Loops through all desired texts:
var atTextsLength = atTexts.length;
for (var x = 0; x < atTextsLength; x++)
{
//Replaces the desired text for an empty string:
string = string.replace(atTexts[x], "@");
}
//Returns the string:
return string;
}
//Returns either textContent or innerText of an element:
function getText(element)
{
if (typeof(element.textContent) !== "undefined")
{
return element.textContent;
}
else if (typeof(element.innerText) !== "undefined")
{
return element.innerText;
}
/* Commented to make it compatible with some browser extensions that disallow innerHTML usage:
else if (typeof(element.innerHTML) !== "undefined")
{
return element.innerHTML;
}
*/
return "";
}
//Replaces or adds contents to the textContent or innerText of an element:
function setText(element, text, add)
{
if (typeof(add) === "undefined" || add === null) { add = false; }
if (typeof(element) === "undefined" || element === null) { return; }
text += ""; //Parses to string.
//text = text.replace(/ /g, " ");
if (typeof(element.textContent) !== "undefined")
{
element.textContent = (add) ? element.textContent + text : text;
}
else if (typeof(element.innerText) !== "undefined")
{
element.innerText = (add) ? element.innerText + text : text;
}
/* Commented to make it compatible with some browser extensions that disallow innerHTML usage:
else if (typeof(element.innerHTML) !== "undefined")
{
element.innerHTML += (add) ? element.innerHTML + text : text;
}
*/
}
//Function for those old browsers without getElementsByClassName:
function elementsClass(className)
{
className = trim(className).toLowerCase();
if (className === "") { return []; }
var elements = [];
if (typeof(document.getElementsByClassName) !== "undefined" && document.getElementsByClassName !== null)
{
elements = document.getElementsByClassName(className);
}
else if (typeof(document.querySelectorAll) !== "undefined" && document.querySelectorAll !== null)
{
elements = document.querySelectorAll("." + className);
}
else
{
var allElements = elementsTag("*");
allElementsLength = allElements.length;
if (allElementsLength > 0)
{
elements = [];
var elementCurrent;
var classes;
var classesLength;
for (var x = 0; x < allElementsLength; x++)
{
elementCurrent = allElements[x];
if (elementCurrent !== null)
{
classes = elementCurrent.className.split(" ");
classesLength = classes.length;
for (var y = 0; y < classesLength; y++)
{
classes[y] = trim(classes[y]).toLowerCase();
if (classes[y] === className)
{
elements[elements.length] = elementCurrent;
break;
}
}
}
}
}
}
return elements;
}
//Function for those old browsers without getElementsByTagName:
function elementsTag(tagName)
{
//If no tag name is sent, uses "*" (all) by default:
if (typeof(tagName) === "undefined" || tagName === null || trim(tagName) === "") { tagName = "*"; }
tagName = trim(tagName).toLowerCase();
if (typeof(document.getElementsByTagName) !== "undefined" && document.getElementsByTagName !== null)
{
var elements = document.getElementsByTagName(tagName);
if (tagName === "*" && elements.length === 0 && typeof(document.all) !== "undefined" && document.all !== null)
{
elements = document.all;
}
return elements;
}
else if (typeof(document.querySelectorAll) !== "undefined" && document.querySelectorAll !== null)
{
return document.querySelectorAll(tagName);
}
else if (typeof(document.all) !== "undefined" && document.all !== null)
{
if (tagName === "*")
{
return document.all;
}
else
{
return document.all.tags(tagName);
}
}
else if (document.layers)
{
var allElements = document.layers;
//If we want all elements, then we get all of them:
if (tagName === "*") { return allElements; }
//...otherwise, obtains all elements with the given tag name:
else
{
//If any elements were obtained, we select just the ones with the desired tag name:
allElementsLength = allElements.length;
var elements = [];
var elementCurrent;
for (var x = 0; x < allElementsLength; x++)
{
elementCurrent = allElements[x];
if (elementCurrent !== null && typeof(elementCurrent.tagName) !== "undefined")
{
if (trim(elementCurrent.tagName).toLowerCase() === tagName)
{
elements.push(elementCurrent);
}
}
}
//elements = baseElement.layers[tagName];
return elements;
}
}
else
{
return [];
}
}
//Trims a string:
function trim(string)
{
//Changes undefined, null or false values to empty strings:
if (typeof(string) === "undefined" || string === null || !string) { string = ""; }
//Parses the variable to string type:
string += "";
//If the string is already empty, we return it:
if (string === "") { return string; }
//Trims spaces at the beginning:
while (string.substring(0, 1) === " ")
{
string = string.substring(1, string.length);
}
//Trims spaces at the end:
while (string.substring(string.length - 1, string.length) === " ")
{
string = string.substring(0, string.length - 1);
}
return string;
}
};
//Loads the script automatically:
EASPM123();