2011-01-23 21:49:12 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2010, StatusNet, Inc.
|
|
|
|
*
|
|
|
|
* Redirect to the given URL
|
2011-03-18 16:04:38 +00:00
|
|
|
*
|
2011-01-23 21:49:12 +00:00
|
|
|
* PHP version 5
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @category URL
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
2015-07-10 11:08:33 +01:00
|
|
|
if (!defined('GNUSOCIAL')) { exit(1); }
|
2011-01-23 21:49:12 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Redirect to a given URL
|
|
|
|
*
|
|
|
|
* This is our internal low-budget URL-shortener
|
|
|
|
*
|
|
|
|
* @category Action
|
|
|
|
* @package StatusNet
|
|
|
|
* @author Evan Prodromou <evan@status.net>
|
|
|
|
* @copyright 2010 StatusNet, Inc.
|
|
|
|
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
|
|
|
* @link http://status.net/
|
|
|
|
*/
|
|
|
|
|
2015-07-10 11:08:33 +01:00
|
|
|
class RedirecturlAction extends ManagedAction
|
2011-01-23 21:49:12 +00:00
|
|
|
{
|
|
|
|
protected $file = null;
|
|
|
|
|
2015-07-10 11:08:33 +01:00
|
|
|
protected function doPreparation()
|
2011-01-23 21:49:12 +00:00
|
|
|
{
|
2015-07-10 11:08:33 +01:00
|
|
|
$this->file = File::getByID($this->int('id'));
|
2011-01-23 21:49:12 +00:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-07-10 11:08:33 +01:00
|
|
|
public function showPage()
|
2011-01-23 21:49:12 +00:00
|
|
|
{
|
2016-01-06 19:06:14 +00:00
|
|
|
common_redirect($this->file->getUrl(false), 301);
|
2011-01-23 21:49:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function isReadOnly($args)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function lastModified()
|
|
|
|
{
|
|
|
|
// For comparison with If-Last-Modified
|
|
|
|
// If not applicable, return null
|
|
|
|
|
|
|
|
return strtotime($this->file->modified);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return etag, if applicable.
|
|
|
|
*
|
|
|
|
* MAY override
|
|
|
|
*
|
|
|
|
* @return string etag http header
|
|
|
|
*/
|
|
|
|
function etag()
|
|
|
|
{
|
2015-07-10 11:08:33 +01:00
|
|
|
return 'W/"' . implode(':', array($this->getActionName(),
|
2011-01-23 21:49:12 +00:00
|
|
|
common_user_cache_hash(),
|
|
|
|
common_language(),
|
2015-07-10 11:08:33 +01:00
|
|
|
$this->file->getID())) . '"';
|
2011-01-23 21:49:12 +00:00
|
|
|
}
|
|
|
|
}
|