]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/poche/Tools.class.php
poche is dead, welcome wallabag
[github/wallabag/wallabag.git] / inc / poche / Tools.class.php
CommitLineData
eb1af592
NL
1<?php
2/**
c95b78a8 3 * wallabag, self hostable application allowing you to not miss any content anymore
eb1af592 4 *
c95b78a8
NL
5 * @category wallabag
6 * @author Nicolas Lœuillet <nicolas@loeuillet.org>
eb1af592
NL
7 * @copyright 2013
8 * @license http://www.wtfpl.net/ see COPYING file
9 */
10
11class Tools
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 getPocheUrl()
40 {
41 $https = (!empty($_SERVER['HTTPS'])
42 && (strtolower($_SERVER['HTTPS']) == 'on'))
43 || (isset($_SERVER["SERVER_PORT"])
125f9ee8 44 && $_SERVER["SERVER_PORT"] == '443') // HTTPS detection.
2916d24b
JCSD
45 || (isset($_SERVER["SERVER_PORT"]) //Custom HTTPS port detection
46 && $_SERVER["SERVER_PORT"] == SSL_PORT);
125f9ee8 47
eb1af592
NL
48 $serverport = (!isset($_SERVER["SERVER_PORT"])
49 || $_SERVER["SERVER_PORT"] == '80'
50 || ($https && $_SERVER["SERVER_PORT"] == '443')
2916d24b 51 || ($https && $_SERVER["SERVER_PORT"]==SSL_PORT) //Custom HTTPS port detection
eb1af592
NL
52 ? '' : ':' . $_SERVER["SERVER_PORT"]);
53
54 $scriptname = str_replace('/index.php', '/', $_SERVER["SCRIPT_NAME"]);
55
45e9e0f5 56 if (!isset($_SERVER["HTTP_HOST"])) {
eb1af592
NL
57 return $scriptname;
58 }
59
60 return 'http' . ($https ? 's' : '') . '://'
45e9e0f5 61 . $_SERVER["HTTP_HOST"] . $serverport . $scriptname;
eb1af592
NL
62 }
63
64 public static function redirect($url = '')
65 {
66 if ($url === '') {
67 $url = (empty($_SERVER['HTTP_REFERER'])?'?':$_SERVER['HTTP_REFERER']);
68 if (isset($_POST['returnurl'])) {
69 $url = $_POST['returnurl'];
70 }
71 }
72
73 # prevent loop
74 if (empty($url) || parse_url($url, PHP_URL_QUERY) === $_SERVER['QUERY_STRING']) {
75 $url = Tools::getPocheUrl();
76 }
77
78 if (substr($url, 0, 1) !== '?') {
79 $ref = Tools::getPocheUrl();
80 if (substr($url, 0, strlen($ref)) !== $ref) {
81 $url = $ref;
82 }
83 }
bc1ee852 84 self::logm('redirect to ' . $url);
eb1af592
NL
85 header('Location: '.$url);
86 exit();
87 }
88
89 public static function getTplFile($view)
90 {
74ec445a
NL
91 $views = array(
92 'install', 'import', 'export', 'config', 'tags',
4886ed6d 93 'edit-tags', 'view', 'login', 'error', 'tag'
74ec445a
NL
94 );
95
96 if (in_array($view, $views)) {
97 return $view . '.twig';
eb1af592 98 }
74ec445a
NL
99
100 return 'home.twig';
eb1af592
NL
101 }
102
103 public static function getFile($url)
104 {
105 $timeout = 15;
106 $useragent = "Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0";
107
108 if (in_array ('curl', get_loaded_extensions())) {
109 # Fetch feed from URL
110 $curl = curl_init();
111 curl_setopt($curl, CURLOPT_URL, $url);
112 curl_setopt($curl, CURLOPT_TIMEOUT, $timeout);
f2d3ee98
NL
113 if (!ini_get('open_basedir') && !ini_get('safe_mode')) {
114 curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
115 }
eb1af592
NL
116 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
117 curl_setopt($curl, CURLOPT_HEADER, false);
118
119 # for ssl, do not verified certificate
120 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
121 curl_setopt($curl, CURLOPT_AUTOREFERER, TRUE );
122
123 # FeedBurner requires a proper USER-AGENT...
124 curl_setopt($curl, CURL_HTTP_VERSION_1_1, true);
125 curl_setopt($curl, CURLOPT_ENCODING, "gzip, deflate");
126 curl_setopt($curl, CURLOPT_USERAGENT, $useragent);
127
128 $data = curl_exec($curl);
129 $httpcode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
130 $httpcodeOK = isset($httpcode) and ($httpcode == 200 or $httpcode == 301);
131 curl_close($curl);
132 } else {
133 # create http context and add timeout and user-agent
134 $context = stream_context_create(
135 array(
136 'http' => array(
137 'timeout' => $timeout,
138 'header' => "User-Agent: " . $useragent,
139 'follow_location' => true
140 ),
141 'ssl' => array(
142 'verify_peer' => false,
143 'allow_self_signed' => true
144 )
145 )
146 );
147
148 # only download page lesser than 4MB
149 $data = @file_get_contents($url, false, $context, -1, 4000000);
150
151 if (isset($http_response_header) and isset($http_response_header[0])) {
152 $httpcodeOK = isset($http_response_header) and isset($http_response_header[0]) and ((strpos($http_response_header[0], '200 OK') !== FALSE) or (strpos($http_response_header[0], '301 Moved Permanently') !== FALSE));
153 }
154 }
155
156 # if response is not empty and response is OK
157 if (isset($data) and isset($httpcodeOK) and $httpcodeOK) {
158
159 # take charset of page and get it
160 preg_match('#<meta .*charset=.*>#Usi', $data, $meta);
161
162 # if meta tag is found
163 if (!empty($meta[0])) {
164 preg_match('#charset="?(.*)"#si', $meta[0], $encoding);
165 # if charset is found set it otherwise, set it to utf-8
166 $html_charset = (!empty($encoding[1])) ? strtolower($encoding[1]) : 'utf-8';
5f9bff0f 167 if (empty($encoding[1])) $encoding[1] = 'utf-8';
eb1af592
NL
168 } else {
169 $html_charset = 'utf-8';
170 $encoding[1] = '';
171 }
172
173 # replace charset of url to charset of page
174 $data = str_replace('charset=' . $encoding[1], 'charset=' . $html_charset, $data);
175
176 return $data;
177 }
178 else {
179 return FALSE;
180 }
181 }
182
183 public static function renderJson($data)
184 {
185 header('Cache-Control: no-cache, must-revalidate');
186 header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');
187 header('Content-type: application/json; charset=UTF-8');
188 echo json_encode($data);
189 exit();
190 }
191
192 public static function logm($message)
193 {
194 if (DEBUG_POCHE) {
195 $t = strval(date('Y/m/d_H:i:s')) . ' - ' . $_SERVER["REMOTE_ADDR"] . ' - ' . strval($message) . "\n";
6a361945 196 file_put_contents(CACHE . '/log.txt', $t, FILE_APPEND);
bc1ee852 197 error_log('DEBUG POCHE : ' . $message);
eb1af592
NL
198 }
199 }
200
201 public static function encodeString($string)
202 {
203 return sha1($string . SALT);
204 }
63c35580 205
7f959169 206 public static function checkVar($var, $default = '')
63c35580 207 {
7f959169 208 return ((isset ($_REQUEST["$var"])) ? htmlentities($_REQUEST["$var"]) : $default);
63c35580 209 }
55821e04
NL
210
211 public static function getDomain($url)
212 {
d7c2f0cc 213 return parse_url($url, PHP_URL_HOST);
55821e04 214 }
d9178758
NL
215
216 public static function getReadingTime($text) {
217 $word = str_word_count(strip_tags($text));
218 $minutes = floor($word / 200);
219 $seconds = floor($word % 200 / (200 / 60));
220 $time = array('minutes' => $minutes, 'seconds' => $seconds);
221
222 return $minutes;
223 }
bb5a7d9e 224
1b2abab6
N
225 public static function getDocLanguage($userlanguage) {
226 $lang = explode('.', $userlanguage);
227 return str_replace('_', '-', $lang[0]);
228 }
d460914f
NL
229
230 public static function status($status_code)
231 {
232 if (strpos(php_sapi_name(), 'apache') !== false) {
233
234 header('HTTP/1.0 '.$status_code);
235 }
236 else {
237
238 header('Status: '.$status_code);
239 }
240 }
241
242
243 public static function download_db() {
244 header('Content-Disposition: attachment; filename="poche.sqlite.gz"');
245 self::status(200);
246
247 header('Content-Transfer-Encoding: binary');
248 header('Content-Type: application/octet-stream');
249 echo gzencode(file_get_contents(STORAGE_SQLITE));
250
251 exit;
252 }
125f9ee8 253}