2017-01-27 14:52:17 +03:00
|
|
|
<?php
|
2018-01-16 18:11:51 +03:00
|
|
|
declare(strict_types=1);
|
2017-01-27 14:52:17 +03:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2017, Robin Appelman <robin@icewind.nl>
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
|
|
|
*
|
2017-02-09 15:32:36 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* 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.
|
2017-01-27 14:52:17 +03:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2017-11-06 17:56:42 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2017-01-27 14:52:17 +03:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* 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/>.
|
2017-01-27 14:52:17 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OC\Federation;
|
|
|
|
|
|
|
|
use OCP\Federation\ICloudId;
|
|
|
|
use OCP\Federation\ICloudIdManager;
|
|
|
|
|
|
|
|
class CloudIdManager implements ICloudIdManager {
|
|
|
|
/**
|
|
|
|
* @param string $cloudId
|
|
|
|
* @return ICloudId
|
2017-02-14 14:47:46 +03:00
|
|
|
* @throws \InvalidArgumentException
|
2017-01-27 14:52:17 +03:00
|
|
|
*/
|
2018-01-16 18:11:51 +03:00
|
|
|
public function resolveCloudId(string $cloudId): ICloudId {
|
2017-01-27 14:52:17 +03:00
|
|
|
// TODO magic here to get the url and user instead of just splitting on @
|
|
|
|
|
|
|
|
if (!$this->isValidCloudId($cloudId)) {
|
|
|
|
throw new \InvalidArgumentException('Invalid cloud id');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the first character that is not allowed in user names
|
2017-02-09 15:31:06 +03:00
|
|
|
$id = $this->fixRemoteURL($cloudId);
|
2017-01-27 14:52:17 +03:00
|
|
|
$posSlash = strpos($id, '/');
|
|
|
|
$posColon = strpos($id, ':');
|
|
|
|
|
|
|
|
if ($posSlash === false && $posColon === false) {
|
2018-01-16 18:11:51 +03:00
|
|
|
$invalidPos = \strlen($id);
|
2017-01-27 14:52:17 +03:00
|
|
|
} else if ($posSlash === false) {
|
|
|
|
$invalidPos = $posColon;
|
|
|
|
} else if ($posColon === false) {
|
|
|
|
$invalidPos = $posSlash;
|
|
|
|
} else {
|
|
|
|
$invalidPos = min($posSlash, $posColon);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the last @ before $invalidPos
|
|
|
|
$pos = $lastAtPos = 0;
|
|
|
|
while ($lastAtPos !== false && $lastAtPos <= $invalidPos) {
|
|
|
|
$pos = $lastAtPos;
|
|
|
|
$lastAtPos = strpos($id, '@', $pos + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($pos !== false) {
|
|
|
|
$user = substr($id, 0, $pos);
|
|
|
|
$remote = substr($id, $pos + 1);
|
|
|
|
if (!empty($user) && !empty($remote)) {
|
2017-02-09 15:31:06 +03:00
|
|
|
return new CloudId($id, $user, $remote);
|
2017-01-27 14:52:17 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
throw new \InvalidArgumentException('Invalid cloud id');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $user
|
|
|
|
* @param string $remote
|
|
|
|
* @return CloudId
|
|
|
|
*/
|
2018-01-16 18:11:51 +03:00
|
|
|
public function getCloudId(string $user, string $remote): ICloudId {
|
2017-01-27 14:52:17 +03:00
|
|
|
// TODO check what the correct url is for remote (asking the remote)
|
|
|
|
return new CloudId($user. '@' . $remote, $user, $remote);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Strips away a potential file names and trailing slashes:
|
|
|
|
* - http://localhost
|
|
|
|
* - http://localhost/
|
|
|
|
* - http://localhost/index.php
|
|
|
|
* - http://localhost/index.php/s/{shareToken}
|
|
|
|
*
|
|
|
|
* all return: http://localhost
|
|
|
|
*
|
|
|
|
* @param string $remote
|
|
|
|
* @return string
|
|
|
|
*/
|
2018-01-16 18:11:51 +03:00
|
|
|
protected function fixRemoteURL(string $remote): string {
|
2017-01-27 14:52:17 +03:00
|
|
|
$remote = str_replace('\\', '/', $remote);
|
|
|
|
if ($fileNamePosition = strpos($remote, '/index.php')) {
|
|
|
|
$remote = substr($remote, 0, $fileNamePosition);
|
|
|
|
}
|
|
|
|
$remote = rtrim($remote, '/');
|
|
|
|
|
|
|
|
return $remote;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $cloudId
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-01-16 18:11:51 +03:00
|
|
|
public function isValidCloudId(string $cloudId): bool {
|
2017-01-27 14:52:17 +03:00
|
|
|
return strpos($cloudId, '@') !== false;
|
|
|
|
}
|
2017-02-08 17:06:38 +03:00
|
|
|
}
|