diff options
Diffstat (limited to 'inc')
-rw-r--r-- | inc/MyTool.class.php | 265 | ||||
-rw-r--r-- | inc/class.messages.php | 231 | ||||
-rw-r--r-- | inc/pocheTool.class.php | 101 |
3 files changed, 101 insertions, 496 deletions
diff --git a/inc/MyTool.class.php b/inc/MyTool.class.php deleted file mode 100644 index b11f18e9..00000000 --- a/inc/MyTool.class.php +++ /dev/null | |||
@@ -1,265 +0,0 @@ | |||
1 | <?php | ||
2 | /** | ||
3 | * poche, a read it later open source system | ||
4 | * | ||
5 | * @category poche | ||
6 | * @author Nicolas LÅ“uillet <support@inthepoche.com> | ||
7 | * @copyright 2013 | ||
8 | * @license http://www.wtfpl.net/ see COPYING file | ||
9 | */ | ||
10 | |||
11 | class MyTool | ||
12 | { | ||
13 | public static function initPhp() | ||
14 | { | ||
15 | define('START_TIME', microtime(true)); | ||
16 | |||
17 | if (phpversion() < 5) { | ||
18 | die(_('Oops, it seems you don\'t have PHP 5.')); | ||
19 | } | ||
20 | |||
21 | error_reporting(E_ALL); | ||
22 | |||
23 | function stripslashesDeep($value) { | ||
24 | return is_array($value) | ||
25 | ? array_map('stripslashesDeep', $value) | ||
26 | : stripslashes($value); | ||
27 | } | ||
28 | |||
29 | if (get_magic_quotes_gpc()) { | ||
30 | $_POST = array_map('stripslashesDeep', $_POST); | ||
31 | $_GET = array_map('stripslashesDeep', $_GET); | ||
32 | $_COOKIE = array_map('stripslashesDeep', $_COOKIE); | ||
33 | } | ||
34 | |||
35 | ob_start(); | ||
36 | register_shutdown_function('ob_end_flush'); | ||
37 | } | ||
38 | |||
39 | public static function isUrl($url) | ||
40 | { | ||
41 | // http://neo22s.com/check-if-url-exists-and-is-online-php/ | ||
42 | $pattern='|^http(s)?://[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?(/.*)?$|i'; | ||
43 | |||
44 | return preg_match($pattern, $url); | ||
45 | } | ||
46 | |||
47 | public static function isEmail($email) | ||
48 | { | ||
49 | $pattern = "/^[A-Z0-9._%-]+@[A-Z0-9.-]+\.[A-Z]{2, 4}$/i"; | ||
50 | |||
51 | return (preg_match($pattern, $email)); | ||
52 | } | ||
53 | |||
54 | public static function formatBBCode($text) | ||
55 | { | ||
56 | $replace = array( | ||
57 | '/\[m\](.+?)\[\/m\]/is' | ||
58 | => '/* moderate */', | ||
59 | '/\[b\](.+?)\[\/b\]/is' | ||
60 | => '<strong>$1</strong>', | ||
61 | '/\[i\](.+?)\[\/i\]/is' | ||
62 | => '<em>$1</em>', | ||
63 | '/\[s\](.+?)\[\/s\]/is' | ||
64 | => '<del>$1</del>', | ||
65 | '/\[u\](.+?)\[\/u\]/is' | ||
66 | => '<span style="text-decoration: underline;">$1</span>', | ||
67 | '/\[url\](.+?)\[\/url]/is' | ||
68 | => '<a href="$1">$1</a>', | ||
69 | '/\[url=(\w+:\/\/[^\]]+)\](.+?)\[\/url]/is' | ||
70 | => '<a href="$1">$2</a>', | ||
71 | '/\[quote\](.+?)\[\/quote\]/is' | ||
72 | => '<blockquote>$1</blockquote>', | ||
73 | '/\[code\](.+?)\[\/code\]/is' | ||
74 | => '<code>$1</code>', | ||
75 | '/\[([^[]+)\|([^[]+)\]/is' | ||
76 | => '<a href="$2">$1</a>' | ||
77 | ); | ||
78 | $text = preg_replace( | ||
79 | array_keys($replace), | ||
80 | array_values($replace), | ||
81 | $text | ||
82 | ); | ||
83 | |||
84 | return $text; | ||
85 | } | ||
86 | |||
87 | public static function formatText($text) | ||
88 | { | ||
89 | $text = preg_replace_callback( | ||
90 | '/<code_html>(.*?)<\/code_html>/is', | ||
91 | create_function( | ||
92 | '$matches', | ||
93 | 'return htmlspecialchars($matches[1]);' | ||
94 | ), | ||
95 | $text | ||
96 | ); | ||
97 | $text = preg_replace_callback( | ||
98 | '/<code_php>(.*?)<\/code_php>/is', | ||
99 | create_function( | ||
100 | '$matches', | ||
101 | 'return highlight_string("<?php $matches[1] ?>", true);' | ||
102 | ), | ||
103 | $text | ||
104 | ); | ||
105 | $text = preg_replace('/<br \/>/is', '', $text); | ||
106 | |||
107 | $text = preg_replace( | ||
108 | '#(^|\s)([a-z]+://([^\s\w/]?[\w/])*)(\s|$)#im', | ||
109 | '\\1<a href="\\2">\\2</a>\\4', | ||
110 | $text | ||
111 | ); | ||
112 | $text = preg_replace( | ||
113 | '#(^|\s)wp:?([a-z]{2}|):([\w]+)#im', | ||
114 | '\\1<a href="http://\\2.wikipedia.org/wiki/\\3">\\3</a>', | ||
115 | $text | ||
116 | ); | ||
117 | $text = str_replace( | ||
118 | 'http://.wikipedia.org/wiki/', | ||
119 | 'http://www.wikipedia.org/wiki/', | ||
120 | $text | ||
121 | ); | ||
122 | $text = str_replace('\wp:', 'wp:', $text); | ||
123 | $text = str_replace('\http:', 'http:', $text); | ||
124 | $text = MyTool::formatBBCode($text); | ||
125 | $text = nl2br($text); | ||
126 | |||
127 | return $text; | ||
128 | } | ||
129 | |||
130 | public static function getUrl() | ||
131 | { | ||
132 | $https = (!empty($_SERVER['HTTPS']) | ||
133 | && (strtolower($_SERVER['HTTPS']) == 'on')) | ||
134 | || (isset($_SERVER["SERVER_PORT"]) | ||
135 | && $_SERVER["SERVER_PORT"] == '443'); // HTTPS detection. | ||
136 | $serverport = (!isset($_SERVER["SERVER_PORT"]) | ||
137 | || $_SERVER["SERVER_PORT"] == '80' | ||
138 | || ($https && $_SERVER["SERVER_PORT"] == '443') | ||
139 | ? '' | ||
140 | : ':' . $_SERVER["SERVER_PORT"]); | ||
141 | |||
142 | $scriptname = str_replace('/index.php', '/', $_SERVER["SCRIPT_NAME"]); | ||
143 | |||
144 | if (!isset($_SERVER["SERVER_NAME"])) { | ||
145 | return $scriptname; | ||
146 | } | ||
147 | |||
148 | return 'http' . ($https ? 's' : '') . '://' | ||
149 | . $_SERVER["SERVER_NAME"] . $serverport . $scriptname; | ||
150 | } | ||
151 | |||
152 | public static function rrmdir($dir) | ||
153 | { | ||
154 | if (is_dir($dir) && ($d = @opendir($dir))) { | ||
155 | while (($file = @readdir($d)) !== false) { | ||
156 | if ( $file == '.' || $file == '..' ) { | ||
157 | continue; | ||
158 | } else { | ||
159 | unlink($dir . '/' . $file); | ||
160 | } | ||
161 | } | ||
162 | } | ||
163 | } | ||
164 | |||
165 | public static function humanBytes($bytes) | ||
166 | { | ||
167 | $siPrefix = array( 'bytes', 'KB', 'MB', 'GB', 'TB', 'EB', 'ZB', 'YB' ); | ||
168 | $base = 1024; | ||
169 | $class = min((int) log($bytes, $base), count($siPrefix) - 1); | ||
170 | $val = sprintf('%1.2f', $bytes / pow($base, $class)); | ||
171 | |||
172 | return $val . ' ' . $siPrefix[$class]; | ||
173 | } | ||
174 | |||
175 | public static function returnBytes($val) | ||
176 | { | ||
177 | $val = trim($val); | ||
178 | $last = strtolower($val[strlen($val)-1]); | ||
179 | switch($last) | ||
180 | { | ||
181 | case 'g': $val *= 1024; | ||
182 | case 'm': $val *= 1024; | ||
183 | case 'k': $val *= 1024; | ||
184 | } | ||
185 | |||
186 | return $val; | ||
187 | } | ||
188 | |||
189 | public static function getMaxFileSize() | ||
190 | { | ||
191 | $sizePostMax = MyTool::returnBytes(ini_get('post_max_size')); | ||
192 | $sizeUploadMax = MyTool::returnBytes(ini_get('upload_max_filesize')); | ||
193 | |||
194 | // Return the smaller of two: | ||
195 | return min($sizePostMax, $sizeUploadMax); | ||
196 | } | ||
197 | |||
198 | public static function smallHash($text) | ||
199 | { | ||
200 | $t = rtrim(base64_encode(hash('crc32', $text, true)), '='); | ||
201 | // Get rid of characters which need encoding in URLs. | ||
202 | $t = str_replace('+', '-', $t); | ||
203 | $t = str_replace('/', '_', $t); | ||
204 | $t = str_replace('=', '@', $t); | ||
205 | |||
206 | return $t; | ||
207 | } | ||
208 | |||
209 | public static function renderJson($data) | ||
210 | { | ||
211 | header('Cache-Control: no-cache, must-revalidate'); | ||
212 | header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); | ||
213 | header('Content-type: application/json; charset=UTF-8'); | ||
214 | |||
215 | echo json_encode($data); | ||
216 | exit(); | ||
217 | } | ||
218 | |||
219 | public static function grabToLocal($url, $file, $force = false) | ||
220 | { | ||
221 | if ((!file_exists($file) || $force) && in_array('curl', get_loaded_extensions())){ | ||
222 | $ch = curl_init ($url); | ||
223 | curl_setopt($ch, CURLOPT_HEADER, false); | ||
224 | curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | ||
225 | curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); | ||
226 | $raw = curl_exec($ch); | ||
227 | if (curl_getinfo($ch, CURLINFO_HTTP_CODE) == 200) { | ||
228 | $fp = fopen($file, 'x'); | ||
229 | fwrite($fp, $raw); | ||
230 | fclose($fp); | ||
231 | } | ||
232 | curl_close ($ch); | ||
233 | } | ||
234 | } | ||
235 | |||
236 | public static function redirect($rurl = '') | ||
237 | { | ||
238 | if ($rurl === '') { | ||
239 | // if (!empty($_SERVER['HTTP_REFERER']) && strcmp(parse_url($_SERVER['HTTP_REFERER'],PHP_URL_HOST),$_SERVER['SERVER_NAME'])==0) | ||
240 | $rurl = (empty($_SERVER['HTTP_REFERER'])?'?':$_SERVER['HTTP_REFERER']); | ||
241 | if (isset($_POST['returnurl'])) { | ||
242 | $rurl = $_POST['returnurl']; | ||
243 | } | ||
244 | } | ||
245 | |||
246 | // prevent loop | ||
247 | if (empty($rurl) || parse_url($rurl, PHP_URL_QUERY) === $_SERVER['QUERY_STRING']) { | ||
248 | $rurl = MyTool::getUrl(); | ||
249 | } | ||
250 | |||
251 | if (substr($rurl, 0, 1) !== '?') { | ||
252 | $ref = MyTool::getUrl(); | ||
253 | if (substr($rurl, 0, strlen($ref)) !== $ref) { | ||
254 | $rurl = $ref; | ||
255 | } | ||
256 | } | ||
257 | header('Location: '.$rurl); | ||
258 | exit(); | ||
259 | } | ||
260 | |||
261 | public static function silence_errors($num, $str) | ||
262 | { | ||
263 | // No-op | ||
264 | } | ||
265 | } \ No newline at end of file | ||
diff --git a/inc/class.messages.php b/inc/class.messages.php deleted file mode 100644 index 6d515bf6..00000000 --- a/inc/class.messages.php +++ /dev/null | |||
@@ -1,231 +0,0 @@ | |||
1 | <?php | ||
2 | //-------------------------------------------------------------------------------------------------- | ||
3 | // Session-Based Flash Messages v1.0 | ||
4 | // Copyright 2012 Mike Everhart (http://mikeeverhart.net) | ||
5 | // | ||
6 | // Licensed under the Apache License, Version 2.0 (the "License"); | ||
7 | // you may not use this file except in compliance with the License. | ||
8 | // You may obtain a copy of the License at | ||
9 | // | ||
10 | // http://www.apache.org/licenses/LICENSE-2.0 | ||
11 | // | ||
12 | // Unless required by applicable law or agreed to in writing, software | ||
13 | // distributed under the License is distributed on an "AS IS" BASIS, | ||
14 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
15 | // See the License for the specific language governing permissions and | ||
16 | // limitations under the License. | ||
17 | // | ||
18 | //------------------------------------------------------------------------------ | ||
19 | // Description: | ||
20 | //------------------------------------------------------------------------------ | ||
21 | // | ||
22 | // Stores messages in Session data to be easily retrieved later on. | ||
23 | // This class includes four different types of messages: | ||
24 | // - Success | ||
25 | // - Error | ||
26 | // - Warning | ||
27 | // - Information | ||
28 | // | ||
29 | // See README for basic usage instructions, or see samples/index.php for more advanced samples | ||
30 | // | ||
31 | //-------------------------------------------------------------------------------------------------- | ||
32 | // Changelog | ||
33 | //-------------------------------------------------------------------------------------------------- | ||
34 | // | ||
35 | // 2011-05-15 - v1.0 - Initial Version | ||
36 | // | ||
37 | //-------------------------------------------------------------------------------------------------- | ||
38 | |||
39 | class Messages { | ||
40 | |||
41 | //----------------------------------------------------------------------------------------------- | ||
42 | // Class Variables | ||
43 | //----------------------------------------------------------------------------------------------- | ||
44 | var $msgId; | ||
45 | var $msgTypes = array( 'help', 'info', 'warning', 'success', 'error' ); | ||
46 | var $msgClass = 'messages'; | ||
47 | var $msgWrapper = "<div class='%s %s'><a href='#' class='closeMessage'></a>\n%s</div>\n"; | ||
48 | var $msgBefore = '<p>'; | ||
49 | var $msgAfter = "</p>\n"; | ||
50 | |||
51 | |||
52 | /** | ||
53 | * Constructor | ||
54 | * @author Mike Everhart | ||
55 | */ | ||
56 | public function __construct() { | ||
57 | |||
58 | // Generate a unique ID for this user and session | ||
59 | $this->msgId = md5(uniqid()); | ||
60 | |||
61 | // Create the session array if it doesnt already exist | ||
62 | if( !array_key_exists('flash_messages', $_SESSION) ) $_SESSION['flash_messages'] = array(); | ||
63 | |||
64 | } | ||
65 | |||
66 | /** | ||
67 | * Add a message to the queue | ||
68 | * | ||
69 | * @author Mike Everhart | ||
70 | * | ||
71 | * @param string $type The type of message to add | ||
72 | * @param string $message The message | ||
73 | * @param string $redirect_to (optional) If set, the user will be redirected to this URL | ||
74 | * @return bool | ||
75 | * | ||
76 | */ | ||
77 | public function add($type, $message, $redirect_to=null) { | ||
78 | |||
79 | if( !isset($_SESSION['flash_messages']) ) return false; | ||
80 | |||
81 | if( !isset($type) || !isset($message[0]) ) return false; | ||
82 | |||
83 | // Replace any shorthand codes with their full version | ||
84 | if( strlen(trim($type)) == 1 ) { | ||
85 | $type = str_replace( array('h', 'i', 'w', 'e', 's'), array('help', 'info', 'warning', 'error', 'success'), $type ); | ||
86 | |||
87 | // Backwards compatibility... | ||
88 | } elseif( $type == 'information' ) { | ||
89 | $type = 'info'; | ||
90 | } | ||
91 | |||
92 | // Make sure it's a valid message type | ||
93 | if( !in_array($type, $this->msgTypes) ) die('"' . strip_tags($type) . '" is not a valid message type!' ); | ||
94 | |||
95 | // If the session array doesn't exist, create it | ||
96 | if( !array_key_exists( $type, $_SESSION['flash_messages'] ) ) $_SESSION['flash_messages'][$type] = array(); | ||
97 | |||
98 | $_SESSION['flash_messages'][$type][] = $message; | ||
99 | |||
100 | if( !is_null($redirect_to) ) { | ||
101 | header("Location: $redirect_to"); | ||
102 | exit(); | ||
103 | } | ||
104 | |||
105 | return true; | ||
106 | |||
107 | } | ||
108 | |||
109 | //----------------------------------------------------------------------------------------------- | ||
110 | // display() | ||
111 | // print queued messages to the screen | ||
112 | //----------------------------------------------------------------------------------------------- | ||
113 | /** | ||
114 | * Display the queued messages | ||
115 | * | ||
116 | * @author Mike Everhart | ||
117 | * | ||
118 | * @param string $type Which messages to display | ||
119 | * @param bool $print True = print the messages on the screen | ||
120 | * @return mixed | ||
121 | * | ||
122 | */ | ||
123 | public function display($type='all', $print=true) { | ||
124 | $messages = ''; | ||
125 | $data = ''; | ||
126 | |||
127 | if( !isset($_SESSION['flash_messages']) ) return false; | ||
128 | |||
129 | if( $type == 'g' || $type == 'growl' ) { | ||
130 | $this->displayGrowlMessages(); | ||
131 | return true; | ||
132 | } | ||
133 | |||
134 | // Print a certain type of message? | ||
135 | if( in_array($type, $this->msgTypes) ) { | ||
136 | foreach( $_SESSION['flash_messages'][$type] as $msg ) { | ||
137 | $messages .= $this->msgBefore . $msg . $this->msgAfter; | ||
138 | } | ||
139 | |||
140 | $data .= sprintf($this->msgWrapper, $this->msgClass, $type, $messages); | ||
141 | |||
142 | // Clear the viewed messages | ||
143 | $this->clear($type); | ||
144 | |||
145 | // Print ALL queued messages | ||
146 | } elseif( $type == 'all' ) { | ||
147 | foreach( $_SESSION['flash_messages'] as $type => $msgArray ) { | ||
148 | $messages = ''; | ||
149 | foreach( $msgArray as $msg ) { | ||
150 | $messages .= $this->msgBefore . $msg . $this->msgAfter; | ||
151 | } | ||
152 | $data .= sprintf($this->msgWrapper, $this->msgClass, $type, $messages); | ||
153 | } | ||
154 | |||
155 | // Clear ALL of the messages | ||
156 | $this->clear(); | ||
157 | |||
158 | // Invalid Message Type? | ||
159 | } else { | ||
160 | return false; | ||
161 | } | ||
162 | |||
163 | // Print everything to the screen or return the data | ||
164 | if( $print ) { | ||
165 | echo $data; | ||
166 | } else { | ||
167 | return $data; | ||
168 | } | ||
169 | } | ||
170 | |||
171 | |||
172 | /** | ||
173 | * Check to see if there are any queued error messages | ||
174 | * | ||
175 | * @author Mike Everhart | ||
176 | * | ||
177 | * @return bool true = There ARE error messages | ||
178 | * false = There are NOT any error messages | ||
179 | * | ||
180 | */ | ||
181 | public function hasErrors() { | ||
182 | return empty($_SESSION['flash_messages']['error']) ? false : true; | ||
183 | } | ||
184 | |||
185 | /** | ||
186 | * Check to see if there are any ($type) messages queued | ||
187 | * | ||
188 | * @author Mike Everhart | ||
189 | * | ||
190 | * @param string $type The type of messages to check for | ||
191 | * @return bool | ||
192 | * | ||
193 | */ | ||
194 | public function hasMessages($type=null) { | ||
195 | if( !is_null($type) ) { | ||
196 | if( !empty($_SESSION['flash_messages'][$type]) ) return $_SESSION['flash_messages'][$type]; | ||
197 | } else { | ||
198 | foreach( $this->msgTypes as $type ) { | ||
199 | if( !empty($_SESSION['flash_messages']) ) return true; | ||
200 | } | ||
201 | } | ||
202 | return false; | ||
203 | } | ||
204 | |||
205 | /** | ||
206 | * Clear messages from the session data | ||
207 | * | ||
208 | * @author Mike Everhart | ||
209 | * | ||
210 | * @param string $type The type of messages to clear | ||
211 | * @return bool | ||
212 | * | ||
213 | */ | ||
214 | public function clear($type='all') { | ||
215 | if( $type == 'all' ) { | ||
216 | unset($_SESSION['flash_messages']); | ||
217 | } else { | ||
218 | unset($_SESSION['flash_messages'][$type]); | ||
219 | } | ||
220 | return true; | ||
221 | } | ||
222 | |||
223 | public function __toString() { return $this->hasMessages(); } | ||
224 | |||
225 | public function __destruct() { | ||
226 | //$this->clear(); | ||
227 | } | ||
228 | |||
229 | |||
230 | } // end class | ||
231 | ?> \ No newline at end of file | ||
diff --git a/inc/pocheTool.class.php b/inc/pocheTool.class.php new file mode 100644 index 00000000..9aab76b9 --- /dev/null +++ b/inc/pocheTool.class.php | |||
@@ -0,0 +1,101 @@ | |||
1 | <?php | ||
2 | /** | ||
3 | * poche, a read it later open source system | ||
4 | * | ||
5 | * @category poche | ||
6 | * @author Nicolas LÅ“uillet <support@inthepoche.com> | ||
7 | * @copyright 2013 | ||
8 | * @license http://www.wtfpl.net/ see COPYING file | ||
9 | */ | ||
10 | |||
11 | class pocheTools | ||
12 | { | ||
13 | public static function initPhp() | ||
14 | { | ||
15 | define('START_TIME', microtime(true)); | ||
16 | |||
17 | if (phpversion() < 5) { | ||
18 | die(_('Oops, it seems you don\'t have PHP 5.')); | ||
19 | } | ||
20 | |||
21 | error_reporting(E_ALL); | ||
22 | |||
23 | function stripslashesDeep($value) { | ||
24 | return is_array($value) | ||
25 | ? array_map('stripslashesDeep', $value) | ||
26 | : stripslashes($value); | ||
27 | } | ||
28 | |||
29 | if (get_magic_quotes_gpc()) { | ||
30 | $_POST = array_map('stripslashesDeep', $_POST); | ||
31 | $_GET = array_map('stripslashesDeep', $_GET); | ||
32 | $_COOKIE = array_map('stripslashesDeep', $_COOKIE); | ||
33 | } | ||
34 | |||
35 | ob_start(); | ||
36 | register_shutdown_function('ob_end_flush'); | ||
37 | } | ||
38 | |||
39 | public static function isUrl($url) | ||
40 | { | ||
41 | // http://neo22s.com/check-if-url-exists-and-is-online-php/ | ||
42 | $pattern='|^http(s)?://[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?(/.*)?$|i'; | ||
43 | |||
44 | return preg_match($pattern, $url); | ||
45 | } | ||
46 | |||
47 | public static function getUrl() | ||
48 | { | ||
49 | $https = (!empty($_SERVER['HTTPS']) | ||
50 | && (strtolower($_SERVER['HTTPS']) == 'on')) | ||
51 | || (isset($_SERVER["SERVER_PORT"]) | ||
52 | && $_SERVER["SERVER_PORT"] == '443'); // HTTPS detection. | ||
53 | $serverport = (!isset($_SERVER["SERVER_PORT"]) | ||
54 | || $_SERVER["SERVER_PORT"] == '80' | ||
55 | || ($https && $_SERVER["SERVER_PORT"] == '443') | ||
56 | ? '' : ':' . $_SERVER["SERVER_PORT"]); | ||
57 | |||
58 | $scriptname = str_replace('/index.php', '/', $_SERVER["SCRIPT_NAME"]); | ||
59 | |||
60 | if (!isset($_SERVER["SERVER_NAME"])) { | ||
61 | return $scriptname; | ||
62 | } | ||
63 | |||
64 | return 'http' . ($https ? 's' : '') . '://' | ||
65 | . $_SERVER["SERVER_NAME"] . $serverport . $scriptname; | ||
66 | } | ||
67 | |||
68 | public static function renderJson($data) | ||
69 | { | ||
70 | header('Cache-Control: no-cache, must-revalidate'); | ||
71 | header('Expires: Sat, 26 Jul 1997 05:00:00 GMT'); | ||
72 | header('Content-type: application/json; charset=UTF-8'); | ||
73 | |||
74 | echo json_encode($data); | ||
75 | exit(); | ||
76 | } | ||
77 | |||
78 | public static function redirect($rurl = '') | ||
79 | { | ||
80 | if ($rurl === '') { | ||
81 | $rurl = (empty($_SERVER['HTTP_REFERER'])?'?':$_SERVER['HTTP_REFERER']); | ||
82 | if (isset($_POST['returnurl'])) { | ||
83 | $rurl = $_POST['returnurl']; | ||
84 | } | ||
85 | } | ||
86 | |||
87 | // prevent loop | ||
88 | if (empty($rurl) || parse_url($rurl, PHP_URL_QUERY) === $_SERVER['QUERY_STRING']) { | ||
89 | $rurl = pocheTool::getUrl(); | ||
90 | } | ||
91 | |||
92 | if (substr($rurl, 0, 1) !== '?') { | ||
93 | $ref = pocheTool::getUrl(); | ||
94 | if (substr($rurl, 0, strlen($ref)) !== $ref) { | ||
95 | $rurl = $ref; | ||
96 | } | ||
97 | } | ||
98 | header('Location: '.$rurl); | ||
99 | exit(); | ||
100 | } | ||
101 | } \ No newline at end of file | ||