2017-01-27 06:52:17 -05:00
|
|
|
<?php
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2018-01-16 10:11:51 -05:00
|
|
|
declare(strict_types=1);
|
2019-12-03 13:57:53 -05:00
|
|
|
|
2017-01-27 06:52:17 -05:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2017 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2017-01-27 06:52:17 -05:00
|
|
|
*/
|
|
|
|
|
namespace OC\Federation;
|
|
|
|
|
|
|
|
|
|
use OCP\Federation\ICloudId;
|
|
|
|
|
|
|
|
|
|
class CloudId implements ICloudId {
|
|
|
|
|
/** @var string */
|
|
|
|
|
private $id;
|
|
|
|
|
/** @var string */
|
|
|
|
|
private $user;
|
|
|
|
|
/** @var string */
|
|
|
|
|
private $remote;
|
2020-11-16 11:56:44 -05:00
|
|
|
/** @var string|null */
|
|
|
|
|
private $displayName;
|
2017-01-27 06:52:17 -05:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* CloudId constructor.
|
|
|
|
|
*
|
|
|
|
|
* @param string $id
|
|
|
|
|
* @param string $user
|
|
|
|
|
* @param string $remote
|
|
|
|
|
*/
|
2020-11-16 11:56:44 -05:00
|
|
|
public function __construct(string $id, string $user, string $remote, ?string $displayName = null) {
|
2017-01-27 06:52:17 -05:00
|
|
|
$this->id = $id;
|
|
|
|
|
$this->user = $user;
|
|
|
|
|
$this->remote = $remote;
|
2020-11-16 11:56:44 -05:00
|
|
|
$this->displayName = $displayName;
|
2017-01-27 06:52:17 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The full remote cloud id
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2018-01-16 10:11:51 -05:00
|
|
|
public function getId(): string {
|
2017-01-27 06:52:17 -05:00
|
|
|
return $this->id;
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-16 10:11:51 -05:00
|
|
|
public function getDisplayId(): string {
|
2020-11-16 11:56:44 -05:00
|
|
|
if ($this->displayName) {
|
|
|
|
|
$atPos = strrpos($this->getId(), '@');
|
|
|
|
|
$atHost = substr($this->getId(), $atPos);
|
|
|
|
|
return $this->displayName . $atHost;
|
|
|
|
|
}
|
2017-01-27 06:52:17 -05:00
|
|
|
return str_replace('https://', '', str_replace('http://', '', $this->getId()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The username on the remote server
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2018-01-16 10:11:51 -05:00
|
|
|
public function getUser(): string {
|
2017-01-27 06:52:17 -05:00
|
|
|
return $this->user;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* The base address of the remote server
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2018-01-16 10:11:51 -05:00
|
|
|
public function getRemote(): string {
|
2017-01-27 06:52:17 -05:00
|
|
|
return $this->remote;
|
|
|
|
|
}
|
2017-02-09 07:32:36 -05:00
|
|
|
}
|