2012-11-04 21:42:18 +04:00
|
|
|
<?php
|
2014-10-15 13:58:44 +04:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-10-15 13:58:44 +04:00
|
|
|
*
|
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2014-10-15 13:58:44 +04:00
|
|
|
// This file is just used to redirect the legacy sharing URLs (< ownCloud 8) to the new ones
|
|
|
|
|
2015-03-17 14:35:47 +03:00
|
|
|
$urlGenerator = \OC::$server->getURLGenerator();
|
2014-10-15 13:58:44 +04:00
|
|
|
$token = isset($_GET['t']) ? $_GET['t'] : '';
|
2014-11-18 16:47:48 +03:00
|
|
|
$route = isset($_GET['download']) ? 'files_sharing.sharecontroller.downloadShare' : 'files_sharing.sharecontroller.showShare';
|
2014-10-15 13:58:44 +04:00
|
|
|
|
2020-03-04 15:51:40 +03:00
|
|
|
if ($token !== '') {
|
2018-03-12 20:42:30 +03:00
|
|
|
$protocol = \OC::$server->getRequest()->getHttpProtocol();
|
2018-03-13 11:22:26 +03:00
|
|
|
if ($protocol == 'HTTP/1.0') {
|
2018-06-26 11:32:50 +03:00
|
|
|
http_response_code(302);
|
2018-03-12 20:42:30 +03:00
|
|
|
} else {
|
2018-06-26 11:32:50 +03:00
|
|
|
http_response_code(307);
|
2018-03-12 20:42:30 +03:00
|
|
|
}
|
2020-03-26 11:30:18 +03:00
|
|
|
header('Location: ' . $urlGenerator->linkToRoute($route, ['token' => $token]));
|
2015-02-25 19:26:54 +03:00
|
|
|
} else {
|
2018-06-26 11:32:50 +03:00
|
|
|
http_response_code(404);
|
2015-02-25 19:26:54 +03:00
|
|
|
$tmpl = new OCP\Template('', '404', 'guest');
|
|
|
|
print_unescaped($tmpl->fetchPage());
|
|
|
|
}
|