2012-11-04 12:42:18 -05:00
|
|
|
<?php
|
2014-10-15 05:58:44 -04:00
|
|
|
/**
|
2016-07-21 10:49:16 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2020-03-31 04:49:10 -04:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2016-05-26 13:56:05 -04:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 06:44:34 -04: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 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2014-10-15 05:58:44 -04:00
|
|
|
*
|
|
|
|
|
*/
|
2015-02-26 05:37:37 -05:00
|
|
|
|
2014-10-15 05:58:44 -04:00
|
|
|
// This file is just used to redirect the legacy sharing URLs (< ownCloud 8) to the new ones
|
|
|
|
|
|
2015-03-17 07:35:47 -04:00
|
|
|
$urlGenerator = \OC::$server->getURLGenerator();
|
2014-10-15 05:58:44 -04:00
|
|
|
$token = isset($_GET['t']) ? $_GET['t'] : '';
|
2014-11-18 08:47:48 -05:00
|
|
|
$route = isset($_GET['download']) ? 'files_sharing.sharecontroller.downloadShare' : 'files_sharing.sharecontroller.showShare';
|
2014-10-15 05:58:44 -04:00
|
|
|
|
2020-03-04 07:51:40 -05:00
|
|
|
if ($token !== '') {
|
2018-03-12 13:42:30 -04:00
|
|
|
$protocol = \OC::$server->getRequest()->getHttpProtocol();
|
2018-03-13 04:22:26 -04:00
|
|
|
if ($protocol == 'HTTP/1.0') {
|
2018-06-26 04:32:50 -04:00
|
|
|
http_response_code(302);
|
2018-03-12 13:42:30 -04:00
|
|
|
} else {
|
2018-06-26 04:32:50 -04:00
|
|
|
http_response_code(307);
|
2018-03-12 13:42:30 -04:00
|
|
|
}
|
2020-03-26 04:30:18 -04:00
|
|
|
header('Location: ' . $urlGenerator->linkToRoute($route, ['token' => $token]));
|
2015-02-25 11:26:54 -05:00
|
|
|
} else {
|
2018-06-26 04:32:50 -04:00
|
|
|
http_response_code(404);
|
2015-02-25 11:26:54 -05:00
|
|
|
$tmpl = new OCP\Template('', '404', 'guest');
|
|
|
|
|
print_unescaped($tmpl->fetchPage());
|
|
|
|
|
}
|