summaryrefslogtreecommitdiffstats
path: root/usr/local/www/includes/sajax.class.php
blob: dc070bd767d7f93071f1bd54e3139b0d8a95b9ed (plain)
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
<?php

if(Connection_Aborted()) {
	exit;
}

class sajax {

	var $sajax_debug_mode = 0;
	var $sajax_export_list = array();
	var $sajax_request_type = "GET";
	var $sajax_remote_uri = "";
	var $sajax_js_has_been_shown = 0;


	/**
	 * PHP 5 Constructor
	 *
	 * @param string $remoteURI
	 */
	function __construct($remoteURI = NULL)
	{
		if (!isset($remoteURL))
			$this->sajax_remote_uri = $this->sajax_get_my_uri();
	}


	/**
	 * PHP 4 Constructor
	 *
	 * @param string $remoteURI
	 */
	function sajax($remoteURI = NULL)
	{
		$this->__construct($$remoteURI);
	}


	/**
	 *
	 *
	 */
	function sajax_get_my_uri()
	{
		global $REQUEST_URI;

		return $REQUEST_URI;
	}



	function sajax_handle_client_request() {

		$mode = "";

		if (! empty($_GET["rs"])) 
			$mode = "get";

		if (!empty($_POST["rs"]))
			$mode = "post";

		if (empty($mode)) 
			return;

		if ($mode == "get") {
			// Bust cache in the head
			header ("Expires: Mon, 26 Jul 1997 05:00:00 GMT");    // Date in the past
			header ("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
			// always modified
			header ("Cache-Control: no-cache, must-revalidate");  // HTTP/1.1
			header ("Pragma: no-cache");                          // HTTP/1.0
			$func_name = $_GET["rs"];
			if (! empty($_GET["rsargs"])) 
				$args = $_GET["rsargs"];
			else
				$args = array();
		}
		else {
			$func_name = $_POST["rs"];
			if (! empty($_POST["rsargs"])) 
				$args = $_POST["rsargs"];
			else
				$args = array();
		}

		if (! in_array($func_name, $this->sajax_export_list))
			echo "-:$func_name not callable";
		else {
			echo "+:";
			$result = call_user_func_array($func_name, $args);
			echo $result;
		}
		exit;
	} // End sajax_handle_client_request() function ...


	function sajax_get_common_js() {

		$t = strtoupper($this->sajax_request_type);
		if ($t != "GET" && $t != "POST") 
			return "// Invalid type: $t.. \n\n";

		ob_start();
		?>
		<!--
		// remote scripting library
		// (c) copyright 2005 modernmethod, inc
		var sajax_debug_mode = <?php echo $this->sajax_debug_mode ? "true" : "false"; ?>;
		var sajax_request_type = "<?php echo $t; ?>";
		
		function sajax_debug(text) {
			if (sajax_debug_mode)
				alert("RSD: " + text)
		}
 		function sajax_init_object() {
 			sajax_debug("sajax_init_object() called..")
 			
 			var A;
/*
			try {
				A=new ActiveXObject("Msxml2.XMLHTTP");
			} catch (e) {
				try {
					A=new ActiveXObject("Microsoft.XMLHTTP");
				} catch (oc) {
					A=null;
				}
			}
*/
			if(!A && typeof XMLHttpRequest != "undefined")
				A = new XMLHttpRequest();
			if (!A)
				sajax_debug("Could not create connection object.");
			return A;
		}
		function sajax_do_call(func_name, args) {
			var i, x, n;
			var uri;
			var post_data;
			
			uri = "<?php echo $this->sajax_remote_uri; ?>";
			if (sajax_request_type == "GET") {
				if (uri.indexOf("?") == -1) 
					uri = uri + "?rs=" + escape(func_name);
				else
					uri = uri + "&rs=" + escape(func_name);
				for (i = 0; i < args.length-1; i++) 
					uri = uri + "&rsargs[]=" + escape(args[i]);
				uri = uri + "&rsrnd=" + new Date().getTime();
				post_data = null;
			} else {
				post_data = "rs=" + escape(func_name);
				for (i = 0; i < args.length-1; i++) 
					post_data = post_data + "&rsargs[]=" + escape(args[i]);
			}
			
			x = sajax_init_object();
			x.open(sajax_request_type, uri, true);
			if (sajax_request_type == "POST") {
				x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1");
				x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
			}
			x.onreadystatechange = function() {
				if (x.readyState != 4) 
					return;
				sajax_debug("received " + x.responseText);
				
				var status;
				var data;
				status = x.responseText.charAt(0);
				data = x.responseText.substring(2);
				if (status == "-") 
					alert("Error: " + data);
				else  
					args[args.length-1](data);
			}
			x.send(post_data);
			sajax_debug(func_name + " uri = " + uri + "/post = " + post_data);
			sajax_debug(func_name + " waiting..");
			delete x;
		}
		//-->
		<?php
		$html = ob_get_contents();
		ob_end_clean();
		return $html;
	}


	function sajax_show_common_js()
	{
		echo $this->sajax_get_common_js();
	}


	function sajax_esc($val)
	{
		return str_replace('"', '\\\\"', $val);
	}


	/**
	 * sajax_get_one_stub
	 *
	 * @param string $func_name
	 */
	function sajax_get_one_stub($func_name)
	{
		ob_start();	
		?>
		
		// wrapper for <?php echo $func_name; ?>
		
		function x_<?php echo $func_name; ?>() {
			sajax_do_call("<?php echo $func_name; ?>",
				x_<?php echo $func_name; ?>.arguments);
		}
		
		<?php
		$html = ob_get_contents();
		ob_end_clean();
		return $html;
	}


	function sajax_show_one_stub($func_name) {
		echo sajax_get_one_stub($func_name);
	}


	/**
	 * export user functions to sajax ...
	 *
	 */
	function sajax_export() {
		$n = func_num_args();
		for ($i = 0; $i < $n; $i++) {
			$this->sajax_export_list[] = func_get_arg($i);
		}
	}


	function sajax_get_javascript()
	{
		$html = "";
		if (! $this->sajax_js_has_been_shown) {
			$html .= $this->sajax_get_common_js();
			$this->sajax_js_has_been_shown = 1;
		}
		foreach ($this->sajax_export_list as $func) {
			$html .= $this->sajax_get_one_stub($func);
		}
		return $html;
	}


	function sajax_show_javascript()
	{
		echo $this->sajax_get_javascript();
	}


} // End sajax class


?>
OpenPOWER on IntegriCloud