]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/File_redirection.php
Merge branch 'master' of gitorious.org:statusnet/mainline into 0.9.x
[quix0rs-gnu-social.git] / classes / File_redirection.php
1 <?php
2 /*
3  * StatusNet - the distributed open-source microblogging tool
4  * Copyright (C) 2008, 2009, StatusNet, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.     If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
21
22 require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
23 require_once INSTALLDIR.'/classes/File.php';
24 require_once INSTALLDIR.'/classes/File_oembed.php';
25
26 define('USER_AGENT', 'StatusNet user agent / file probe');
27
28 /**
29  * Table Definition for file_redirection
30  */
31
32 class File_redirection extends Memcached_DataObject
33 {
34     ###START_AUTOCODE
35     /* the code below is auto generated do not remove the above tag */
36
37     public $__table = 'file_redirection';                // table name
38     public $url;                             // varchar(255)  primary_key not_null
39     public $file_id;                         // int(4)
40     public $redirections;                    // int(4)
41     public $httpcode;                        // int(4)
42     public $modified;                        // timestamp()   not_null default_CURRENT_TIMESTAMP
43
44     /* Static get */
45     function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('File_redirection',$k,$v); }
46
47     /* the code above is auto generated do not remove the tag below */
48     ###END_AUTOCODE
49
50     static function _commonHttp($url, $redirs) {
51         $request = new HTTPClient($url);
52         $request->setConfig(array(
53             'connect_timeout' => 10, // # seconds to wait
54             'max_redirs' => $redirs, // # max number of http redirections to follow
55             'follow_redirects' => true, // Follow redirects
56             'store_body' => false, // We won't need body content here.
57         ));
58         return $request;
59     }
60
61     /**
62      * Check if this URL is a redirect and return redir info.
63      *
64      * Most code should call File_redirection::where instead, to check if we
65      * already know that redirection and avoid extra hits to the web.
66      *
67      * The URL is hit and any redirects are followed, up to 10 levels or until
68      * a protected URL is reached.
69      *
70      * @param string $in_url
71      * @return mixed one of:
72      *         string - target URL, if this is a direct link or can't be followed
73      *         array - redirect info if this is an *unknown* redirect:
74      *              associative array with the following elements:
75      *                code: HTTP status code
76      *                redirects: count of redirects followed
77      *                url: URL string of final target
78      *                type (optional): MIME type from Content-Type header
79      *                size (optional): byte size from Content-Length header
80      *                time (optional): timestamp from Last-Modified header
81      */
82     public function lookupWhere($short_url, $redirs = 10, $protected = false) {
83         if ($redirs < 0) return false;
84
85         if(strpos($short_url,'://') === false){
86             return $short_url;
87         }
88         try {
89             $request = self::_commonHttp($short_url, $redirs);
90             // Don't include body in output
91             $request->setMethod(HTTP_Request2::METHOD_HEAD);
92             $response = $request->send();
93
94             if (405 == $response->getStatus() || 204 == $response->getStatus()) {
95                 // HTTP 405 Unsupported Method
96                 // Server doesn't support HEAD method? Can this really happen?
97                 // We'll try again as a GET and ignore the response data.
98                 //
99                 // HTTP 204 No Content
100                 // YFrog sends 204 responses back for our HEAD checks, which
101                 // seems like it may be a logic error in their servers. If
102                 // we get a 204 back, re-run it as a GET... if there's really
103                 // no content it'll be cheap. :)
104                 $request = self::_commonHttp($short_url, $redirs);
105                 $response = $request->send();
106             }
107         } catch (Exception $e) {
108             // Invalid URL or failure to reach server
109             common_log(LOG_ERR, "Error while following redirects for $short_url: " . $e->getMessage());
110             return $short_url;
111         }
112
113         if ($response->getRedirectCount() && File::isProtected($response->getUrl())) {
114             // Bump back up the redirect chain until we find a non-protected URL
115             return self::lookupWhere($short_url, $response->getRedirectCount() - 1, true);
116         }
117
118         $ret = array('code' => $response->getStatus()
119                 , 'redirects' => $response->getRedirectCount()
120                 , 'url' => $response->getUrl());
121
122         $type = $response->getHeader('Content-Type');
123         if ($type) $ret['type'] = $type;
124         if ($protected) $ret['protected'] = true;
125         $size = $response->getHeader('Content-Length'); // @fixme bytes?
126         if ($size) $ret['size'] = $size;
127         $time = $response->getHeader('Last-Modified');
128         if ($time) $ret['time'] = strtotime($time);
129         return $ret;
130     }
131
132     /**
133      * Check if this URL is a redirect and return redir info.
134      * If a File record is present for this URL, it is not considered a redirect.
135      * If a File_redirection record is present for this URL, the recorded target is returned.
136      *
137      * If no File or File_redirect record is present, the URL is hit and any
138      * redirects are followed, up to 10 levels or until a protected URL is
139      * reached.
140      *
141      * @param string $in_url
142      * @param boolean $discover true to attempt dereferencing the redirect if we don't know it already
143      * @return mixed one of:
144      *         string - target URL, if this is a direct link or a known redirect
145      *         array - redirect info if this is an *unknown* redirect:
146      *              associative array with the following elements:
147      *                code: HTTP status code
148      *                redirects: count of redirects followed
149      *                url: URL string of final target
150      *                type (optional): MIME type from Content-Type header
151      *                size (optional): byte size from Content-Length header
152      *                time (optional): timestamp from Last-Modified header
153      */
154     public function where($in_url, $discover=true) {
155         // let's see if we know this...
156         $a = File::staticGet('url', $in_url);
157
158         if (!empty($a)) {
159             // this is a direct link to $a->url
160             return $a->url;
161         } else {
162             $b = File_redirection::staticGet('url', $in_url);
163             if (!empty($b)) {
164                 // this is a redirect to $b->file_id
165                 $a = File::staticGet('id', $b->file_id);
166                 return $a->url;
167             }
168         }
169
170         if ($discover) {
171             $ret = File_redirection::lookupWhere($in_url);
172             return $ret;
173         } else {
174             // No manual dereferencing; leave the unknown URL as is.
175             return $in_url;
176         }
177     }
178
179     /**
180      * Shorten a URL with the current user's configured shortening
181      * options, if applicable.
182      *
183      * If it cannot be shortened or the "short" URL is longer than the
184      * original, the original is returned.
185      *
186      * If the referenced item has not been seen before, embedding data
187      * may be saved.
188      *
189      * @param string $long_url
190      * @return string
191      */
192     function makeShort($long_url) {
193
194         $canon = File_redirection::_canonUrl($long_url);
195
196         $short_url = File_redirection::_userMakeShort($canon);
197
198         // Did we get one? Is it shorter?
199         if (!empty($short_url) && mb_strlen($short_url) < mb_strlen($long_url)) {
200             return $short_url;
201         } else {
202             return $long_url;
203         }
204     }
205
206     function _userMakeShort($long_url) {
207         $short_url = common_shorten_url($long_url);
208         if (!empty($short_url) && $short_url != $long_url) {
209             $short_url = (string)$short_url;
210             // store it
211             $file = File::staticGet('url', $long_url);
212             if (empty($file)) {
213                 // Check if the target URL is itself a redirect...
214                 $redir_data = File_redirection::where($long_url);
215                 if (is_array($redir_data)) {
216                     // We haven't seen the target URL before.
217                     // Save file and embedding data about it!
218                     $file = File::saveNew($redir_data, $long_url);
219                     $file_id = $file->id;
220                     if (!empty($redir_data['oembed']['json'])) {
221                         File_oembed::saveNew($redir_data['oembed']['json'], $file_id);
222                     }
223                 } else if (is_string($redir_data)) {
224                     // The file is a known redirect target.
225                     $file = File::staticGet('url', $redir_data);
226                     if (empty($file)) {
227                         // @fixme should we save a new one?
228                         // this case was triggering sometimes for redirects
229                         // with unresolvable targets; found while fixing
230                         // "can't linkify" bugs with shortened links to
231                         // SSL sites with cert issues.
232                         return null;
233                     }
234                     $file_id = $file->id;
235                 }
236             } else {
237                 $file_id = $file->id;
238             }
239             $file_redir = File_redirection::staticGet('url', $short_url);
240             if (empty($file_redir)) {
241                 $file_redir = new File_redirection;
242                 $file_redir->url = $short_url;
243                 $file_redir->file_id = $file_id;
244                 $file_redir->insert();
245             }
246             return $short_url;
247         }
248         return null;
249     }
250
251     /**
252      * Basic attempt to canonicalize a URL, cleaning up some standard variants
253      * such as funny syntax or a missing path. Used internally when cleaning
254      * up URLs for storage and following redirect chains.
255      *
256      * Note that despite being on File_redirect, this function DOES NOT perform
257      * any dereferencing of redirects.
258      *
259      * @param string $in_url input URL
260      * @param string $default_scheme if given a bare link; defaults to 'http://'
261      * @return string
262      */
263     function _canonUrl($in_url, $default_scheme = 'http://') {
264         if (empty($in_url)) return false;
265         $out_url = $in_url;
266         $p = parse_url($out_url);
267         if (empty($p['host']) || empty($p['scheme'])) {
268             list($scheme) = explode(':', $in_url, 2);
269             switch ($scheme) {
270             case 'fax':
271             case 'tel':
272                 $out_url = str_replace('.-()', '', $out_url);
273                 break;
274
275             case 'mailto':
276             case 'aim':
277             case 'jabber':
278             case 'xmpp':
279                 // don't touch anything
280                 break;
281
282             default:
283                 $out_url = $default_scheme . ltrim($out_url, '/');
284                 $p = parse_url($out_url);
285                 if (empty($p['scheme'])) return false;
286                 break;
287             }
288         }
289
290         if (('ftp' == $p['scheme']) || ('ftps' == $p['scheme']) || ('http' == $p['scheme']) || ('https' == $p['scheme'])) {
291             if (empty($p['host'])) return false;
292             if (empty($p['path'])) {
293                 $out_url .= '/';
294             }
295         }
296
297         return $out_url;
298     }
299
300     function saveNew($data, $file_id, $url) {
301         $file_redir = new File_redirection;
302         $file_redir->url = $url;
303         $file_redir->file_id = $file_id;
304         $file_redir->redirections = intval($data['redirects']);
305         $file_redir->httpcode = intval($data['code']);
306         $file_redir->insert();
307     }
308 }