3 * StatusNet - the distributed open-source microblogging tool
4 * Copyright (C) 2008, 2009, StatusNet, Inc.
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.
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.
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/>.
20 if (!defined('GNUSOCIAL')) { exit(1); }
23 * Table Definition for file
25 class File extends Managed_DataObject
28 /* the code below is auto generated do not remove the above tag */
30 public $__table = 'file'; // table name
31 public $id; // int(4) primary_key not_null
32 public $url; // varchar(255) unique_key
33 public $mimetype; // varchar(50)
34 public $size; // int(4)
35 public $title; // varchar(255)
36 public $date; // int(4)
37 public $protected; // int(4)
38 public $filename; // varchar(255)
39 public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
41 /* the code above is auto generated do not remove the tag below */
44 public static function schemaDef()
48 'id' => array('type' => 'serial', 'not null' => true),
49 'url' => array('type' => 'varchar', 'length' => 255, 'description' => 'destination URL after following redirections'),
50 'mimetype' => array('type' => 'varchar', 'length' => 50, 'description' => 'mime type of resource'),
51 'size' => array('type' => 'int', 'description' => 'size of resource when available'),
52 'title' => array('type' => 'varchar', 'length' => 255, 'description' => 'title of resource when available'),
53 'date' => array('type' => 'int', 'description' => 'date of resource according to http query'),
54 'protected' => array('type' => 'int', 'description' => 'true when URL is private (needs login)'),
55 'filename' => array('type' => 'varchar', 'length' => 255, 'description' => 'if a local file, name of the file'),
57 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date this record was modified'),
59 'primary key' => array('id'),
60 'unique keys' => array(
61 'file_url_key' => array('url'),
66 function isProtected($url) {
67 return 'http://www.facebook.com/login.php' === $url;
71 * Save a new file record.
73 * @param array $redir_data lookup data eg from File_redirection::where()
74 * @param string $given_url
77 function saveNew(array $redir_data, $given_url) {
79 // I don't know why we have to keep doing this but I'm adding this last check to avoid
82 $x = File::getKV('url', $given_url);
84 if (!$x instanceof File) {
87 if (!empty($redir_data['protected'])) $x->protected = $redir_data['protected'];
88 if (!empty($redir_data['title'])) $x->title = $redir_data['title'];
89 if (!empty($redir_data['type'])) $x->mimetype = $redir_data['type'];
90 if (!empty($redir_data['size'])) $x->size = intval($redir_data['size']);
91 if (isset($redir_data['time']) && $redir_data['time'] > 0) $x->date = intval($redir_data['time']);
92 $file_id = $x->insert();
95 $x->saveOembed($redir_data, $given_url);
100 * Save embedding information for this file, if applicable.
102 * Normally this won't need to be called manually, as File::saveNew()
105 * @param array $redir_data lookup data eg from File_redirection::where()
106 * @param string $given_url
107 * @return boolean success
109 public function saveOembed(array $redir_data, $given_url)
111 if (isset($redir_data['type'])
112 && (('text/html' === substr($redir_data['type'], 0, 9)
113 || 'application/xhtml+xml' === substr($redir_data['type'], 0, 21)))) {
115 $oembed_data = File_oembed::_getOembed($given_url);
116 } catch (Exception $e) {
119 if ($oembed_data === false) {
122 $fo = File_oembed::getKV('file_id', $this->id);
124 if ($fo instanceof File_oembed) {
125 common_log(LOG_WARNING, "Strangely, a File_oembed object exists for new file $file_id", __FILE__);
127 File_oembed::saveNew($oembed_data, $this->id);
135 * Go look at a URL and possibly save data about it if it's new:
136 * - follow redirect chains and store them in file_redirection
137 * - look up oEmbed data and save it in file_oembed
138 * - if a thumbnail is available, save it in file_thumbnail
139 * - save file record with basic info
140 * - optionally save a file_to_post record
141 * - return the File object with the full reference
143 * @fixme refactor this mess, it's gotten pretty scary.
144 * @param string $given_url the URL we're looking at
145 * @param int $notice_id (optional)
146 * @param bool $followRedirects defaults to true
148 * @return mixed File on success, -1 on some errors
150 * @throws ServerException on some errors
152 public function processNew($given_url, $notice_id=null, $followRedirects=true) {
153 if (empty($given_url)) return -1; // error, no url to process
154 $given_url = File_redirection::_canonUrl($given_url);
155 if (empty($given_url)) return -1; // error, no url to process
156 $file = File::getKV('url', $given_url);
158 $file_redir = File_redirection::getKV('url', $given_url);
159 if (empty($file_redir)) {
160 // @fixme for new URLs this also looks up non-redirect data
161 // such as target content type, size, etc, which we need
162 // for File::saveNew(); so we call it even if not following
164 $redir_data = File_redirection::where($given_url);
165 if (is_array($redir_data)) {
166 $redir_url = $redir_data['url'];
167 } elseif (is_string($redir_data)) {
168 $redir_url = $redir_data;
169 $redir_data = array();
171 // TRANS: Server exception thrown when a URL cannot be processed.
172 throw new ServerException(sprintf(_("Cannot process URL '%s'"), $given_url));
174 // TODO: max field length
175 if ($redir_url === $given_url || strlen($redir_url) > 255 || !$followRedirects) {
176 $x = File::saveNew($redir_data, $given_url);
179 // This seems kind of messed up... for now skipping this part
180 // if we're already under a redirect, so we don't go into
181 // horrible infinite loops if we've been given an unstable
182 // redirect (where the final destination of the first request
183 // doesn't match what we get when we ask for it again).
185 // Seen in the wild with clojure.org, which redirects through
186 // wikispaces for auth and appends session data in the URL params.
187 $x = File::processNew($redir_url, $notice_id, /*followRedirects*/false);
189 File_redirection::saveNew($redir_data, $file_id, $given_url);
192 $file_id = $file_redir->file_id;
195 $file_id = $file->id;
200 $x = File::getKV('id', $file_id);
202 // @todo FIXME: This could possibly be a clearer message :)
203 // TRANS: Server exception thrown when... Robin thinks something is impossible!
204 throw new ServerException(_('Robin thinks something is impossible.'));
208 if (!empty($notice_id)) {
209 File_to_post::processNew($file_id, $notice_id);
214 public static function respectsQuota(Profile $scoped, $fileSize) {
215 if ($fileSize > common_config('attachments', 'file_quota')) {
216 // TRANS: Message used to be inserted as %2$s in the text "No file may
217 // TRANS: be larger than %1$d byte and the file you sent was %2$s.".
218 // TRANS: %1$d is the number of bytes of an uploaded file.
219 $fileSizeText = sprintf(_m('%1$d byte','%1$d bytes',$fileSize),$fileSize);
221 $fileQuota = common_config('attachments', 'file_quota');
222 // TRANS: Message given if an upload is larger than the configured maximum.
223 // TRANS: %1$d (used for plural) is the byte limit for uploads,
224 // TRANS: %2$s is the proper form of "n bytes". This is the only ways to have
225 // TRANS: gettext support multiple plurals in the same message, unfortunately...
226 throw new ClientException(
227 sprintf(_m('No file may be larger than %1$d byte and the file you sent was %2$s. Try to upload a smaller version.',
228 'No file may be larger than %1$d bytes and the file you sent was %2$s. Try to upload a smaller version.',
230 $fileQuota, $fileSizeText));
235 $query = "select sum(size) as total from file join file_to_post on file_to_post.file_id = file.id join notice on file_to_post.post_id = notice.id where profile_id = {$scoped->id} and file.url like '%/notice/%/file'";
236 $file->query($query);
238 $total = $file->total + $fileSize;
239 if ($total > common_config('attachments', 'user_quota')) {
240 // TRANS: Message given if an upload would exceed user quota.
241 // TRANS: %d (number) is the user quota in bytes and is used for plural.
242 throw new ClientException(
243 sprintf(_m('A file this large would exceed your user quota of %d byte.',
244 'A file this large would exceed your user quota of %d bytes.',
245 common_config('attachments', 'user_quota')),
246 common_config('attachments', 'user_quota')));
248 $query .= ' AND EXTRACT(month FROM file.modified) = EXTRACT(month FROM now()) and EXTRACT(year FROM file.modified) = EXTRACT(year FROM now())';
249 $file->query($query);
251 $total = $file->total + $fileSize;
252 if ($total > common_config('attachments', 'monthly_quota')) {
253 // TRANS: Message given id an upload would exceed a user's monthly quota.
254 // TRANS: $d (number) is the monthly user quota in bytes and is used for plural.
255 throw new ClientException(
256 sprintf(_m('A file this large would exceed your monthly quota of %d byte.',
257 'A file this large would exceed your monthly quota of %d bytes.',
258 common_config('attachments', 'monthly_quota')),
259 common_config('attachments', 'monthly_quota')));
264 // where should the file go?
266 static function filename($profile, $basename, $mimetype)
268 require_once 'MIME/Type/Extension.php';
270 // We have to temporarily disable auto handling of PEAR errors...
271 PEAR::staticPushErrorHandling(PEAR_ERROR_RETURN);
273 $mte = new MIME_Type_Extension();
274 $ext = $mte->getExtension($mimetype);
275 if (PEAR::isError($ext)) {
276 $ext = strtolower(preg_replace('/\W/', '', $mimetype));
279 // Restore error handling.
280 PEAR::staticPopErrorHandling();
282 $nickname = $profile->nickname;
283 $datestamp = strftime('%Y%m%dT%H%M%S', time());
284 $random = strtolower(common_confirmation_code(32));
285 return "$nickname-$datestamp-$random.$ext";
289 * Validation for as-saved base filenames
291 static function validFilename($filename)
293 return preg_match('/^[A-Za-z0-9._-]+$/', $filename);
297 * @throws ClientException on invalid filename
299 static function path($filename)
301 if (!self::validFilename($filename)) {
302 // TRANS: Client exception thrown if a file upload does not have a valid name.
303 throw new ClientException(_("Invalid filename."));
305 $dir = common_config('attachments', 'dir');
307 if ($dir[strlen($dir)-1] != '/') {
311 return $dir . $filename;
314 static function url($filename)
316 if (!self::validFilename($filename)) {
317 // TRANS: Client exception thrown if a file upload does not have a valid name.
318 throw new ClientException(_("Invalid filename."));
321 if (common_config('site','private')) {
323 return common_local_url('getfile',
324 array('filename' => $filename));
328 if (StatusNet::isHTTPS()) {
330 $sslserver = common_config('attachments', 'sslserver');
332 if (empty($sslserver)) {
333 // XXX: this assumes that background dir == site dir + /file/
334 // not true if there's another server
335 if (is_string(common_config('site', 'sslserver')) &&
336 mb_strlen(common_config('site', 'sslserver')) > 0) {
337 $server = common_config('site', 'sslserver');
338 } else if (common_config('site', 'server')) {
339 $server = common_config('site', 'server');
341 $path = common_config('site', 'path') . '/file/';
343 $server = $sslserver;
344 $path = common_config('attachments', 'sslpath');
346 $path = common_config('attachments', 'path');
352 $path = common_config('attachments', 'path');
353 $server = common_config('attachments', 'server');
355 if (empty($server)) {
356 $server = common_config('site', 'server');
359 $ssl = common_config('attachments', 'ssl');
361 $protocol = ($ssl) ? 'https' : 'http';
364 if ($path[strlen($path)-1] != '/') {
368 if ($path[0] != '/') {
372 return $protocol.'://'.$server.$path.$filename;
375 function getEnclosure(){
376 $enclosure = (object) array();
377 $enclosure->title=$this->title;
378 $enclosure->url=$this->url;
379 $enclosure->title=$this->title;
380 $enclosure->date=$this->date;
381 $enclosure->modified=$this->modified;
382 $enclosure->size=$this->size;
383 $enclosure->mimetype=$this->mimetype;
385 if(! isset($this->filename)){
386 $notEnclosureMimeTypes = array(null,'text/html','application/xhtml+xml');
387 $mimetype = $this->mimetype;
388 if($mimetype != null){
389 $mimetype = strtolower($this->mimetype);
391 $semicolon = strpos($mimetype,';');
393 $mimetype = substr($mimetype,0,$semicolon);
395 if(in_array($mimetype,$notEnclosureMimeTypes)){
396 // Never treat generic HTML links as an enclosure type!
397 // But if we have oEmbed info, we'll consider it golden.
398 $oembed = File_oembed::getKV('file_id',$this->id);
399 if($oembed && in_array($oembed->type, array('photo', 'video'))){
400 $mimetype = strtolower($oembed->mimetype);
401 $semicolon = strpos($mimetype,';');
403 $mimetype = substr($mimetype,0,$semicolon);
405 // @fixme uncertain if this is right.
406 // we want to expose things like YouTube videos as
407 // viewable attachments, but don't expose them as
408 // downloadable enclosures.....?
409 //if (in_array($mimetype, $notEnclosureMimeTypes)) {
412 if($oembed->mimetype) $enclosure->mimetype=$oembed->mimetype;
413 if($oembed->url) $enclosure->url=$oembed->url;
414 if($oembed->title) $enclosure->title=$oembed->title;
415 if($oembed->modified) $enclosure->modified=$oembed->modified;
416 unset($oembed->size);
426 // quick back-compat hack, since there's still code using this
427 function isEnclosure()
429 $enclosure = $this->getEnclosure();
430 return !empty($enclosure);
434 * Get the attachment's thumbnail record, if any.
436 * @return File_thumbnail
438 function getThumbnail()
440 return File_thumbnail::getKV('file_id', $this->id);
444 * Blow the cache of notices that link to this URL
446 * @param boolean $last Whether to blow the "last" cache too
451 function blowCache($last=false)
453 self::blow('file:notice-ids:%s', $this->url);
455 self::blow('file:notice-ids:%s;last', $this->url);
457 self::blow('file:notice-count:%d', $this->id);
461 * Stream of notices linking to this URL
463 * @param integer $offset Offset to show; default is 0
464 * @param integer $limit Limit of notices to show
465 * @param integer $since_id Since this notice
466 * @param integer $max_id Before this notice
468 * @return array ids of notices that link to this file
471 function stream($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $max_id=0)
473 $stream = new FileNoticeStream($this);
474 return $stream->getNotices($offset, $limit, $since_id, $max_id);
477 function noticeCount()
479 $cacheKey = sprintf('file:notice-count:%d', $this->id);
481 $count = self::cacheGet($cacheKey);
483 if ($count === false) {
485 $f2p = new File_to_post();
487 $f2p->file_id = $this->id;
489 $count = $f2p->count();
491 self::cacheSet($cacheKey, $count);