24 lines
785 B
PHP
24 lines
785 B
PHP
<?php
|
|
/**
|
|
* @author Lukas Reschke
|
|
* @copyright 2014 Lukas Reschke lukas@owncloud.com
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later.
|
|
* See the COPYING-README file.
|
|
*/
|
|
|
|
// This file is just used to redirect the legacy sharing URLs (< ownCloud 8) to the new ones
|
|
|
|
$urlGenerator = new \OC\URLGenerator(\OC::$server->getConfig());
|
|
$token = isset($_GET['t']) ? $_GET['t'] : '';
|
|
$route = isset($_GET['download']) ? 'files_sharing.sharecontroller.downloadShare' : 'files_sharing.sharecontroller.showShare';
|
|
|
|
if($token !== '') {
|
|
OC_Response::redirect($urlGenerator->linkToRoute($route, array('token' => $token)));
|
|
} else {
|
|
header('HTTP/1.0 404 Not Found');
|
|
$tmpl = new OCP\Template('', '404', 'guest');
|
|
print_unescaped($tmpl->fetchPage());
|
|
}
|