]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - classes/File_redirection.php
a distributed -> the distributed
[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('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     function _commonCurl($url, $redirs) {
51         $curlh = curl_init();
52         curl_setopt($curlh, CURLOPT_URL, $url);
53         curl_setopt($curlh, CURLOPT_AUTOREFERER, true); // # setup referer header when folowing redirects
54         curl_setopt($curlh, CURLOPT_CONNECTTIMEOUT, 10); // # seconds to wait
55         curl_setopt($curlh, CURLOPT_MAXREDIRS, $redirs); // # max number of http redirections to follow
56         curl_setopt($curlh, CURLOPT_USERAGENT, USER_AGENT);
57         curl_setopt($curlh, CURLOPT_FOLLOWLOCATION, true); // Follow redirects
58         curl_setopt($curlh, CURLOPT_RETURNTRANSFER, true);
59         curl_setopt($curlh, CURLOPT_FILETIME, true);
60         curl_setopt($curlh, CURLOPT_HEADER, true); // Include header in output
61         return $curlh;
62     }
63
64     function _redirectWhere_imp($short_url, $redirs = 10, $protected = false) {
65         if ($redirs < 0) return false;
66
67         // let's see if we know this...
68         $a = File::staticGet('url', $short_url);
69
70         if (!empty($a)) {
71             // this is a direct link to $a->url
72             return $a->url;
73         } else {
74             $b = File_redirection::staticGet('url', $short_url);
75             if (!empty($b)) {
76                 // this is a redirect to $b->file_id
77                 $a = File::staticGet('id', $b->file_id);
78                 return $a->url;
79             }
80         }
81
82         $curlh = File_redirection::_commonCurl($short_url, $redirs);
83         // Don't include body in output
84         curl_setopt($curlh, CURLOPT_NOBODY, true);
85         curl_exec($curlh);
86         $info = curl_getinfo($curlh);
87         curl_close($curlh);
88
89         if (405 == $info['http_code']) {
90             $curlh = File_redirection::_commonCurl($short_url, $redirs);
91             curl_exec($curlh);
92             $info = curl_getinfo($curlh);
93             curl_close($curlh);
94         }
95
96         if (!empty($info['redirect_count']) && File::isProtected($info['url'])) {
97             return File_redirection::_redirectWhere_imp($short_url, $info['redirect_count'] - 1, true);
98         }
99
100         $ret = array('code' => $info['http_code']
101                 , 'redirects' => $info['redirect_count']
102                 , 'url' => $info['url']);
103
104         if (!empty($info['content_type'])) $ret['type'] = $info['content_type'];
105         if ($protected) $ret['protected'] = true;
106         if (!empty($info['download_content_length'])) $ret['size'] = $info['download_content_length'];
107         if (isset($info['filetime']) && ($info['filetime'] > 0)) $ret['time'] = $info['filetime'];
108         return $ret;
109     }
110
111     function where($in_url) {
112         $ret = File_redirection::_redirectWhere_imp($in_url);
113         return $ret;
114     }
115
116     function makeShort($long_url) {
117
118         $canon = File_redirection::_canonUrl($long_url);
119
120         $short_url = File_redirection::_userMakeShort($canon);
121
122         // Did we get one? Is it shorter?
123         if (!empty($short_url) && mb_strlen($short_url) < mb_strlen($long_url)) {
124             return $short_url;
125         } else {
126             return $long_url;
127         }
128     }
129
130     function _userMakeShort($long_url) {
131         $short_url = common_shorten_url($long_url);
132         if (!empty($short_url) && $short_url != $long_url) {
133             $short_url = (string)$short_url;
134             // store it
135             $file = File::staticGet('url', $long_url);
136             if (empty($file)) {
137                 $redir_data = File_redirection::where($long_url);
138                 $file = File::saveNew($redir_data, $long_url);
139                 $file_id = $file->id;
140                 if (!empty($redir_data['oembed']['json'])) {
141                     File_oembed::saveNew($redir_data['oembed']['json'], $file_id);
142                 }
143             } else {
144                 $file_id = $file->id;
145             }
146             $file_redir = File_redirection::staticGet('url', $short_url);
147             if (empty($file_redir)) {
148                 $file_redir = new File_redirection;
149                 $file_redir->url = $short_url;
150                 $file_redir->file_id = $file_id;
151                 $file_redir->insert();
152             }
153             return $short_url;
154         }
155         return null;
156     }
157
158     function _canonUrl($in_url, $default_scheme = 'http://') {
159         if (empty($in_url)) return false;
160         $out_url = $in_url;
161         $p = parse_url($out_url);
162         if (empty($p['host']) || empty($p['scheme'])) {
163             list($scheme) = explode(':', $in_url, 2);
164             switch ($scheme) {
165             case 'fax':
166             case 'tel':
167                 $out_url = str_replace('.-()', '', $out_url);
168                 break;
169
170             case 'mailto':
171             case 'aim':
172             case 'jabber':
173             case 'xmpp':
174                 // don't touch anything
175                 break;
176
177             default:
178                 $out_url = $default_scheme . ltrim($out_url, '/');
179                 $p = parse_url($out_url);
180                 if (empty($p['scheme'])) return false;
181                 break;
182             }
183         }
184
185         if (('ftp' == $p['scheme']) || ('ftps' == $p['scheme']) || ('http' == $p['scheme']) || ('https' == $p['scheme'])) {
186             if (empty($p['host'])) return false;
187             if (empty($p['path'])) {
188                 $out_url .= '/';
189             }
190         }
191
192         return $out_url;
193     }
194
195     function saveNew($data, $file_id, $url) {
196         $file_redir = new File_redirection;
197         $file_redir->url = $url;
198         $file_redir->file_id = $file_id;
199         $file_redir->redirections = intval($data['redirects']);
200         $file_redir->httpcode = intval($data['code']);
201         $file_redir->insert();
202     }
203 }
204