]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/File_redirection.php
i18n/L10n review, extension credits added.
[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()) {
95                 // Server doesn't support HEAD method? Can this really happen?
96                 // We'll try again as a GET and ignore the response data.
97                 $request = self::_commonHttp($short_url, $redirs);
98                 $response = $request->send();
99             }
100         } catch (Exception $e) {
101             // Invalid URL or failure to reach server
102             common_log(LOG_ERR, "Error while following redirects for $short_url: " . $e->getMessage());
103             return $short_url;
104         }
105
106         if ($response->getRedirectCount() && File::isProtected($response->getUrl())) {
107             // Bump back up the redirect chain until we find a non-protected URL
108             return self::lookupWhere($short_url, $response->getRedirectCount() - 1, true);
109         }
110
111         $ret = array('code' => $response->getStatus()
112                 , 'redirects' => $response->getRedirectCount()
113                 , 'url' => $response->getUrl());
114
115         $type = $response->getHeader('Content-Type');
116         if ($type) $ret['type'] = $type;
117         if ($protected) $ret['protected'] = true;
118         $size = $response->getHeader('Content-Length'); // @fixme bytes?
119         if ($size) $ret['size'] = $size;
120         $time = $response->getHeader('Last-Modified');
121         if ($time) $ret['time'] = strtotime($time);
122         return $ret;
123     }
124
125     /**
126      * Check if this URL is a redirect and return redir info.
127      * If a File record is present for this URL, it is not considered a redirect.
128      * If a File_redirection record is present for this URL, the recorded target is returned.
129      *
130      * If no File or File_redirect record is present, the URL is hit and any
131      * redirects are followed, up to 10 levels or until a protected URL is
132      * reached.
133      *
134      * @param string $in_url
135      * @return mixed one of:
136      *         string - target URL, if this is a direct link or a known redirect
137      *         array - redirect info if this is an *unknown* redirect:
138      *              associative array with the following elements:
139      *                code: HTTP status code
140      *                redirects: count of redirects followed
141      *                url: URL string of final target
142      *                type (optional): MIME type from Content-Type header
143      *                size (optional): byte size from Content-Length header
144      *                time (optional): timestamp from Last-Modified header
145      */
146     public function where($in_url) {
147         // let's see if we know this...
148         $a = File::staticGet('url', $in_url);
149
150         if (!empty($a)) {
151             // this is a direct link to $a->url
152             return $a->url;
153         } else {
154             $b = File_redirection::staticGet('url', $in_url);
155             if (!empty($b)) {
156                 // this is a redirect to $b->file_id
157                 $a = File::staticGet('id', $b->file_id);
158                 return $a->url;
159             }
160         }
161
162         $ret = File_redirection::lookupWhere($in_url);
163         return $ret;
164     }
165
166     /**
167      * Shorten a URL with the current user's configured shortening
168      * options, if applicable.
169      *
170      * If it cannot be shortened or the "short" URL is longer than the
171      * original, the original is returned.
172      *
173      * If the referenced item has not been seen before, embedding data
174      * may be saved.
175      *
176      * @param string $long_url
177      * @return string
178      */
179     function makeShort($long_url) {
180
181         $canon = File_redirection::_canonUrl($long_url);
182
183         $short_url = File_redirection::_userMakeShort($canon);
184
185         // Did we get one? Is it shorter?
186         if (!empty($short_url) && mb_strlen($short_url) < mb_strlen($long_url)) {
187             return $short_url;
188         } else {
189             return $long_url;
190         }
191     }
192
193     function _userMakeShort($long_url) {
194         $short_url = common_shorten_url($long_url);
195         if (!empty($short_url) && $short_url != $long_url) {
196             $short_url = (string)$short_url;
197             // store it
198             $file = File::staticGet('url', $long_url);
199             if (empty($file)) {
200                 // Check if the target URL is itself a redirect...
201                 $redir_data = File_redirection::where($long_url);
202                 if (is_array($redir_data)) {
203                     // We haven't seen the target URL before.
204                     // Save file and embedding data about it!
205                     $file = File::saveNew($redir_data, $long_url);
206                     $file_id = $file->id;
207                     if (!empty($redir_data['oembed']['json'])) {
208                         File_oembed::saveNew($redir_data['oembed']['json'], $file_id);
209                     }
210                 } else if (is_string($redir_data)) {
211                     // The file is a known redirect target.
212                     $file = File::staticGet('url', $redir_data);
213                     if (empty($file)) {
214                         // @fixme should we save a new one?
215                         // this case was triggering sometimes for redirects
216                         // with unresolvable targets; found while fixing
217                         // "can't linkify" bugs with shortened links to
218                         // SSL sites with cert issues.
219                         return null;
220                     }
221                     $file_id = $file->id;
222                 }
223             } else {
224                 $file_id = $file->id;
225             }
226             $file_redir = File_redirection::staticGet('url', $short_url);
227             if (empty($file_redir)) {
228                 $file_redir = new File_redirection;
229                 $file_redir->url = $short_url;
230                 $file_redir->file_id = $file_id;
231                 $file_redir->insert();
232             }
233             return $short_url;
234         }
235         return null;
236     }
237
238     function _canonUrl($in_url, $default_scheme = 'http://') {
239         if (empty($in_url)) return false;
240         $out_url = $in_url;
241         $p = parse_url($out_url);
242         if (empty($p['host']) || empty($p['scheme'])) {
243             list($scheme) = explode(':', $in_url, 2);
244             switch ($scheme) {
245             case 'fax':
246             case 'tel':
247                 $out_url = str_replace('.-()', '', $out_url);
248                 break;
249
250             case 'mailto':
251             case 'aim':
252             case 'jabber':
253             case 'xmpp':
254                 // don't touch anything
255                 break;
256
257             default:
258                 $out_url = $default_scheme . ltrim($out_url, '/');
259                 $p = parse_url($out_url);
260                 if (empty($p['scheme'])) return false;
261                 break;
262             }
263         }
264
265         if (('ftp' == $p['scheme']) || ('ftps' == $p['scheme']) || ('http' == $p['scheme']) || ('https' == $p['scheme'])) {
266             if (empty($p['host'])) return false;
267             if (empty($p['path'])) {
268                 $out_url .= '/';
269             }
270         }
271
272         return $out_url;
273     }
274
275     function saveNew($data, $file_id, $url) {
276         $file_redir = new File_redirection;
277         $file_redir->url = $url;
278         $file_redir->file_id = $file_id;
279         $file_redir->redirections = intval($data['redirects']);
280         $file_redir->httpcode = intval($data['code']);
281         $file_redir->insert();
282     }
283 }