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
|
/*
TODO: Further optimize serialize function
UPDATE: We were forced to create an individual XHR for each request
to avoid race conditions on slower browsers where the request would
be overwritten before the callback triggered, and leave it hanging.
This only happened in FF3.0 that we tested.
Example usage 1:
ajax.handle = function () {
$('#preview' + postid).raw().innerHTML = ajax.response;
$('#editbox' + postid).hide();
}
ajax.post("ajax.php?action=preview","#form-id" + postid);
Example usage 2:
ajax.handle = function() {
$('#quickpost').raw().value = "[quote="+username+"]" + ajax.response + "[/quote]";
}
ajax.get("?action=get_post&post=" + postid);
*/
"use strict";
var json = {
encode: function (object) {
try {
return JSON.stringify(object);
} catch (err) {
return '';
}
},
decode: function (string) {
if (window.JSON && JSON.parse) {
return JSON.parse(string);
} else {
return eval("(" + string + ")");
//return (new Function("return " + data))();
}
}
};
var ajax = {
get: function (url, callback) {
var req = (typeof(window.ActiveXObject) === 'undefined') ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");
if (callback !== undefined) {
req.onreadystatechange = function () {
if (req.readyState !== 4 || req.status !== 200) {
return;
}
callback(req.responseText);
};
}
req.open("GET", url, true);
req.send(null);
},
post: function (url, data, callback) {
var req = isset(window.ActiveXObject) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
var params = ajax.serialize(data);
if (callback !== undefined) {
req.onreadystatechange = function () {
if (req.readyState !== 4 || req.status !== 200) {
return;
}
callback(req.responseText);
};
}
req.open('POST', url, true);
req.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
req.send(params);
},
serialize: function (data) {
var query = '',
elements;
if (is_array(data)) {
for (var key in data) {
query += key + '=' + encodeURIComponent(data[key]) + '&';
}
} else {
elements = document.getElementById(data).elements;
for (var i = 0, il = elements.length; i < il; i++) {
var element = elements[i];
if (!isset(element) || element.disabled || element.name === '') {
continue;
}
switch (element.type) {
case 'text':
case 'hidden':
case 'password':
case 'textarea':
case 'select-one':
query += element.name + '=' + encodeURIComponent(element.value) + '&';
break;
case 'select-multiple':
for (var j = 0, jl = element.options.length; j < jl; j++) {
var current = element.options[j];
if (current.selected) {
query += element.name + '=' + encodeURIComponent(current.value) + '&';
}
}
break;
case 'radio':
if (element.checked) {
query += element.name + '=' + encodeURIComponent(element.value) + '&';
}
break;
case 'checkbox':
if (element.checked) {
query += element.name + '=' + encodeURIComponent(element.value) + '&';
}
break;
}
}
}
return query.substr(0, query.length - 1);
}
};
//Bookmarks
function Bookmark(type, id, newName) {
if (window.location.pathname.indexOf('top10.php') != -1) {
var oldName = $('.bookmarklink_' + type + '_' + id).raw().innerHTML;
ajax.get("bookmarks.php?action=add&type=" + type + "&auth=" + authkey + "&id=" + id, function() {
var bookmarklinks = $('.bookmarklink_' + type + '_' + id).objects;
for (var i = 0; i < bookmarklinks.length; i++) {
$(bookmarklinks[i].parentNode.parentNode.parentNode).add_class('bookmarked');
bookmarklinks[i].onclick = function() { Unbookmark(type, id, oldName); return false; };
bookmarklinks[i].innerHTML = newName;
bookmarklinks[i].title = 'Remove bookmark';
}
});
} else {
var lnk = $('#bookmarklink_' + type + '_' + id).raw();
var oldName = lnk.innerHTML;
ajax.get("bookmarks.php?action=add&type=" + type + "&auth=" + authkey + "&id=" + id, function() {
lnk.onclick = function() { Unbookmark(type, id, oldName); return false; };
lnk.innerHTML = newName;
lnk.title = 'Remove bookmark';
});
}
}
function Unbookmark(type, id, newName) {
if (window.location.pathname.indexOf('bookmarks.php') != -1) {
ajax.get("bookmarks.php?action=remove&type=" + type + "&auth=" + authkey + "&id=" + id, function() {
$('#group_' + id).remove();
$('.groupid_' + id).remove();
$('.bookmark_' + id).remove();
});
} else if (window.location.pathname.indexOf('top10.php') != -1) {
var oldName = $('.bookmarklink_' + type + '_' + id).raw().innerHTML;
ajax.get("bookmarks.php?action=remove&type=" + type + "&auth=" + authkey + "&id=" + id, function() {
var bookmarklinks = $('.bookmarklink_' + type + '_' + id).objects;
for (var i = 0; i < bookmarklinks.length; i++) {
$(bookmarklinks[i].parentNode.parentNode.parentNode).remove_class('bookmarked');
bookmarklinks[i].onclick = function() { Bookmark(type, id, oldName); return false; };
bookmarklinks[i].innerHTML = newName;
bookmarklinks[i].title = 'Add bookmark';
}
});
} else {
var lnk = $('#bookmarklink_' + type + '_' + id).raw();
var oldName = lnk.innerHTML;
ajax.get("bookmarks.php?action=remove&type=" + type + "&auth=" + authkey + "&id=" + id, function() {
lnk.onclick = function() { Bookmark(type, id, oldName); return false; };
lnk.innerHTML = newName;
lnk.title = 'Add bookmark';
});
}
}
|