]> git.immae.eu Git - github/wallabag/wallabag.git/blame - inc/functions.php
import depuis Pocket, yeah cf #3
[github/wallabag/wallabag.git] / inc / functions.php
CommitLineData
24619534 1<?php
2
c8bbe19b 3/**
4 * Permet de générer l'URL de poche pour le bookmarklet
5 */
8046748b 6function get_poche_url()
c8bbe19b 7{
8 $protocol = "http";
9 if(isset($_SERVER['HTTPS'])) {
10 if($_SERVER['HTTPS'] != "off") {
11 $protocol = "https";
12 }
13 }
24619534 14
c8bbe19b 15 return $protocol . "://" . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
24619534 16}
17
24619534 18// function define to retrieve url content
c8bbe19b 19function get_external_file($url, $timeout)
20{
24619534 21 // spoofing FireFox 18.0
22 $useragent="Mozilla/5.0 (Windows NT 5.1; rv:18.0) Gecko/20100101 Firefox/18.0";
23
24 if (in_array ('curl', get_loaded_extensions())) {
25 // Fetch feed from URL
26 $curl = curl_init();
27 curl_setopt($curl, CURLOPT_URL, $url);
28 curl_setopt($curl, CURLOPT_TIMEOUT, $timeout);
29 curl_setopt($curl, CURLOPT_FOLLOWLOCATION, true);
30 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
31 curl_setopt($curl, CURLOPT_HEADER, false);
32
33 // FeedBurner requires a proper USER-AGENT...
34 curl_setopt($curl, CURL_HTTP_VERSION_1_1, true);
35 curl_setopt($curl, CURLOPT_ENCODING, "gzip, deflate");
36 curl_setopt($curl, CURLOPT_USERAGENT, $useragent);
37
38 $data = curl_exec($curl);
39
40 $httpcode = curl_getinfo($curl, CURLINFO_HTTP_CODE);
41
42 $httpcodeOK = isset($httpcode) and ($httpcode == 200 or $httpcode == 301);
43
44 curl_close($curl);
45 } else {
46
47 // create http context and add timeout and user-agent
48 $context = stream_context_create(array('http'=>array('timeout' => $timeout, // Timeout : time until we stop waiting for the response.
139769aa 49 'header'=> "User-Agent: ".$useragent, // spoot Mozilla Firefox
50 'follow_location' => true
51 )));
24619534 52
53 // only download page lesser than 4MB
54 $data = @file_get_contents($url, false, $context, -1, 4000000); // We download at most 4 MB from source.
55 // echo "<pre>http_response_header : ".print_r($http_response_header);
56
57 if(isset($http_response_header) and isset($http_response_header[0])) {
58 $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));
59 }
60 }
61
62 // if response is not empty and response is OK
63 if (isset($data) and isset($httpcodeOK) and $httpcodeOK ) {
64
65 // take charset of page and get it
66 preg_match('#<meta .*charset=.*>#Usi', $data, $meta);
67
68 // if meta tag is found
69 if (!empty($meta[0])) {
70 // retrieve encoding in $enc
71 preg_match('#charset="?(.*)"#si', $meta[0], $enc);
72
73 // if charset is found set it otherwise, set it to utf-8
74 $html_charset = (!empty($enc[1])) ? strtolower($enc[1]) : 'utf-8';
75
76 } else {
77 $html_charset = 'utf-8';
78 $enc[1] = '';
79 }
80
81 // replace charset of url to charset of page
82 $data = str_replace('charset='.$enc[1], 'charset='.$html_charset, $data);
83
84 return $data;
85 }
86 else {
87 return FALSE;
88 }
3c8d80ae 89}
90
8046748b 91/**
92 * Préparation de l'URL avec récupération du contenu avant insertion en base
93 */
3c8d80ae 94function prepare_url($url)
95{
96 $parametres = array();
97 $url = html_entity_decode(trim($url));
98
99 // We remove the annoying parameters added by FeedBurner and GoogleFeedProxy (?utm_source=...)
100 // from shaarli, by sebsauvage
101 $i=strpos($url,'&utm_source='); if ($i!==false) $url=substr($url,0,$i);
102 $i=strpos($url,'?utm_source='); if ($i!==false) $url=substr($url,0,$i);
103 $i=strpos($url,'#xtor=RSS-'); if ($i!==false) $url=substr($url,0,$i);
104
105 $title = $url;
106 if (!preg_match('!^https?://!i', $url))
107 $url = 'http://' . $url;
108
109 $html = Encoding::toUTF8(get_external_file($url,15));
110 if (isset($html) and strlen($html) > 0)
111 {
112 $r = new Readability($html, $url);
113 if($r->init())
114 {
115 $title = $r->articleTitle->innerHTML;
116 }
117 }
118
119 $parametres['title'] = $title;
120 $parametres['content'] = $r->articleContent->innerHTML;
121
122 return $parametres;
263d6c67 123}
124
125/**
126 * Appel d'une action (mark as fav, archive, delete)
127 */
cf3180f6 128function action_to_do($action, $id, $url, $token)
263d6c67 129{
130 global $db;
131
132 switch ($action)
133 {
134 case 'add':
135 if ($url == '')
136 continue;
137
138 $parametres_url = prepare_url($url);
139 $sql_action = 'INSERT INTO entries ( url, title, content ) VALUES (?, ?, ?)';
140 $params_action = array($url, $parametres_url['title'], $parametres_url['content']);
141 break;
142 case 'delete':
cf3180f6 143 if (verif_token($token)) {
144 $sql_action = "DELETE FROM entries WHERE id=?";
145 $params_action = array($id);
146 }
147 else die('CSRF problem');
263d6c67 148 break;
139769aa 149 case 'toggle_fav' :
150 if (verif_token($token)) {
151 $sql_action = "UPDATE entries SET is_fav=~is_fav WHERE id=?";
152 $params_action = array($id);
153 }
154 else die('CSRF problem');
155 break;
156 case 'toggle_archive' :
157 if (verif_token($token)) {
158 $sql_action = "UPDATE entries SET is_read=~is_read WHERE id=?";
159 $params_action = array($id);
160 }
161 else die('CSRF problem');
162 break;
263d6c67 163 default:
164 break;
165 }
166
167 try
168 {
169 # action query
170 if (isset($sql_action))
171 {
172 $query = $db->getHandle()->prepare($sql_action);
173 $query->execute($params_action);
174 }
175 }
176 catch (Exception $e)
177 {
178 die('action query error : '.$e->getMessage());
179 }
180}
181
182/**
183 * Détermine quels liens afficher : home, fav ou archives
184 */
9fee2e72 185function display_view($view)
263d6c67 186{
187 global $db;
188
139769aa 189 switch ($_SESSION['sort'])
190 {
191 case 'ia':
192 $order = 'ORDER BY id';
193 break;
194 case 'id':
195 $order = 'ORDER BY id DESC';
196 break;
197 case 'ta':
198 $order = 'ORDER BY lower(title)';
199 break;
200 case 'td':
201 $order = 'ORDER BY lower(title) DESC';
202 break;
203 default:
204 $order = 'ORDER BY id';
205 break;
206 }
207
9fee2e72 208 switch ($view)
263d6c67 209 {
210 case 'archive':
139769aa 211 $sql = "SELECT * FROM entries WHERE is_read=? " . $order;
263d6c67 212 $params = array(-1);
213 break;
214 case 'fav' :
139769aa 215 $sql = "SELECT * FROM entries WHERE is_fav=? " . $order;
263d6c67 216 $params = array(-1);
217 break;
218 default:
139769aa 219 $sql = "SELECT * FROM entries WHERE is_read=? " . $order;
263d6c67 220 $params = array(0);
221 break;
222 }
223
224 # view query
225 try
226 {
227 $query = $db->getHandle()->prepare($sql);
228 $query->execute($params);
229 $entries = $query->fetchAll();
230 }
231 catch (Exception $e)
232 {
233 die('view query error : '.$e->getMessage());
234 }
235
236 return $entries;
237}
238
239/**
240 * Récupère un article en fonction d'un ID
241 */
242function get_article($id)
243{
244 global $db;
245
246 $entry = NULL;
247 $sql = "SELECT * FROM entries WHERE id=?";
248 $params = array(intval($id));
249
250 # view article query
251 try
252 {
253 $query = $db->getHandle()->prepare($sql);
254 $query->execute($params);
255 $entry = $query->fetchAll();
256 }
257 catch (Exception $e)
258 {
259 die('query error : '.$e->getMessage());
260 }
261
262 return $entry;
cf3180f6 263}
264
265/**
266 * Vérifie si le jeton passé en $_POST correspond à celui en session
267 */
268function verif_token($token)
269{
270 if(isset($_SESSION['token_poche']) && isset($_SESSION['token_time_poche']) && isset($token))
271 {
272 if($_SESSION['token_poche'] == $token)
273 {
274 $old_timestamp = time() - (15*60);
275 if($_SESSION['token_time_poche'] >= $old_timestamp)
276 {
277 return TRUE;
278 }
643e3037 279 else {
280 session_destroy();
281 }
cf3180f6 282 }
283 else return FALSE;
284 }
285 else return FALSE;
c8bbe19b 286}