mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 18:09:45 +00:00
f38e060090
- Return type were not correct - willReturn and with confusion Signed-off-by: Carl Schwan <carl@carlschwan.eu>
292 lines
8.3 KiB
PHP
292 lines
8.3 KiB
PHP
<?php
|
|
/**
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
*
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
* @author Robin Appelman <robin@icewind.nl>
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
*
|
|
* @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,
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*
|
|
*/
|
|
namespace OCA\Federation;
|
|
|
|
use OC\Files\Filesystem;
|
|
use OCP\HintException;
|
|
use OCP\IDBConnection;
|
|
use OCP\DB\Exception as DBException;
|
|
use OCP\DB\QueryBuilder\IQueryBuilder;
|
|
use OCP\IL10N;
|
|
|
|
/**
|
|
* Class DbHandler
|
|
*
|
|
* Handles all database calls for the federation app
|
|
*
|
|
* @todo Port to QBMapper
|
|
*
|
|
* @group DB
|
|
* @package OCA\Federation
|
|
*/
|
|
class DbHandler {
|
|
private IDBConnection $connection;
|
|
private IL10N $IL10N;
|
|
private string $dbTable = 'trusted_servers';
|
|
|
|
public function __construct(
|
|
IDBConnection $connection,
|
|
IL10N $il10n
|
|
) {
|
|
$this->connection = $connection;
|
|
$this->IL10N = $il10n;
|
|
}
|
|
|
|
/**
|
|
* Add server to the list of trusted servers
|
|
*
|
|
* @throws HintException
|
|
*/
|
|
public function addServer(string $url): int {
|
|
$hash = $this->hash($url);
|
|
$url = rtrim($url, '/');
|
|
$query = $this->connection->getQueryBuilder();
|
|
$query->insert($this->dbTable)
|
|
->values([
|
|
'url' => $query->createParameter('url'),
|
|
'url_hash' => $query->createParameter('url_hash'),
|
|
])
|
|
->setParameter('url', $url)
|
|
->setParameter('url_hash', $hash);
|
|
|
|
$result = $query->executeStatement();
|
|
|
|
if ($result) {
|
|
return $query->getLastInsertId();
|
|
}
|
|
|
|
$message = 'Internal failure, Could not add trusted server: ' . $url;
|
|
$message_t = $this->IL10N->t('Could not add server');
|
|
throw new HintException($message, $message_t);
|
|
return -1;
|
|
}
|
|
|
|
/**
|
|
* Remove server from the list of trusted servers
|
|
*/
|
|
public function removeServer(int $id): void {
|
|
$query = $this->connection->getQueryBuilder();
|
|
$query->delete($this->dbTable)
|
|
->where($query->expr()->eq('id', $query->createParameter('id')))
|
|
->setParameter('id', $id);
|
|
$query->executeStatement();
|
|
}
|
|
|
|
/**
|
|
* Get trusted server with given ID
|
|
*
|
|
* @return array{id: int, url: string, url_hash: string, token: ?string, shared_secret: ?string, status: int, sync_token: ?string}
|
|
* @throws \Exception
|
|
*/
|
|
public function getServerById(int $id): array {
|
|
$query = $this->connection->getQueryBuilder();
|
|
$query->select('*')->from($this->dbTable)
|
|
->where($query->expr()->eq('id', $query->createParameter('id')))
|
|
->setParameter('id', $id, IQueryBuilder::PARAM_INT);
|
|
|
|
$qResult = $query->executeQuery();
|
|
$result = $qResult->fetchAll();
|
|
$qResult->closeCursor();
|
|
|
|
if (empty($result)) {
|
|
throw new \Exception('No Server found with ID: ' . $id);
|
|
}
|
|
|
|
return $result[0];
|
|
}
|
|
|
|
/**
|
|
* Get all trusted servers
|
|
*
|
|
* @return list<array{id: int, url: string, url_hash: string, shared_secret: ?string, status: int, sync_token: ?string}>
|
|
* @throws DBException
|
|
*/
|
|
public function getAllServer(): array {
|
|
$query = $this->connection->getQueryBuilder();
|
|
$query->select(['url', 'url_hash', 'id', 'status', 'shared_secret', 'sync_token'])
|
|
->from($this->dbTable);
|
|
$statement = $query->executeQuery();
|
|
$result = $statement->fetchAll();
|
|
$statement->closeCursor();
|
|
return $result;
|
|
}
|
|
|
|
/**
|
|
* Check if server already exists in the database table
|
|
*/
|
|
public function serverExists(string $url): bool {
|
|
$hash = $this->hash($url);
|
|
$query = $this->connection->getQueryBuilder();
|
|
$query->select('url')
|
|
->from($this->dbTable)
|
|
->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
|
|
->setParameter('url_hash', $hash);
|
|
$statement = $query->executeQuery();
|
|
$result = $statement->fetchAll();
|
|
$statement->closeCursor();
|
|
|
|
return !empty($result);
|
|
}
|
|
|
|
/**
|
|
* Write token to database. Token is used to exchange the secret
|
|
*/
|
|
public function addToken(string $url, string $token): void {
|
|
$hash = $this->hash($url);
|
|
$query = $this->connection->getQueryBuilder();
|
|
$query->update($this->dbTable)
|
|
->set('token', $query->createParameter('token'))
|
|
->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
|
|
->setParameter('url_hash', $hash)
|
|
->setParameter('token', $token);
|
|
$query->executeStatement();
|
|
}
|
|
|
|
/**
|
|
* Get token stored in database
|
|
* @throws \Exception
|
|
*/
|
|
public function getToken(string $url): string {
|
|
$hash = $this->hash($url);
|
|
$query = $this->connection->getQueryBuilder();
|
|
$query->select('token')->from($this->dbTable)
|
|
->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
|
|
->setParameter('url_hash', $hash);
|
|
|
|
$statement = $query->executeQuery();
|
|
$result = $statement->fetch();
|
|
$statement->closeCursor();
|
|
|
|
if (!isset($result['token'])) {
|
|
throw new \Exception('No token found for: ' . $url);
|
|
}
|
|
|
|
return $result['token'];
|
|
}
|
|
|
|
/**
|
|
* Add shared Secret to database
|
|
*/
|
|
public function addSharedSecret(string $url, string $sharedSecret): void {
|
|
$hash = $this->hash($url);
|
|
$query = $this->connection->getQueryBuilder();
|
|
$query->update($this->dbTable)
|
|
->set('shared_secret', $query->createParameter('sharedSecret'))
|
|
->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
|
|
->setParameter('url_hash', $hash)
|
|
->setParameter('sharedSecret', $sharedSecret);
|
|
$query->executeStatement();
|
|
}
|
|
|
|
/**
|
|
* Get shared secret from database
|
|
*/
|
|
public function getSharedSecret(string $url): string {
|
|
$hash = $this->hash($url);
|
|
$query = $this->connection->getQueryBuilder();
|
|
$query->select('shared_secret')->from($this->dbTable)
|
|
->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
|
|
->setParameter('url_hash', $hash);
|
|
|
|
$statement = $query->executeQuery();
|
|
$result = $statement->fetch();
|
|
$statement->closeCursor();
|
|
return (string)$result['shared_secret'];
|
|
}
|
|
|
|
/**
|
|
* Set server status
|
|
*/
|
|
public function setServerStatus(string $url, int $status, ?string $token = null): void {
|
|
$hash = $this->hash($url);
|
|
$query = $this->connection->getQueryBuilder();
|
|
$query->update($this->dbTable)
|
|
->set('status', $query->createNamedParameter($status))
|
|
->where($query->expr()->eq('url_hash', $query->createNamedParameter($hash)));
|
|
if (!is_null($token)) {
|
|
$query->set('sync_token', $query->createNamedParameter($token));
|
|
}
|
|
$query->executeStatement();
|
|
}
|
|
|
|
/**
|
|
* Get server status
|
|
*/
|
|
public function getServerStatus(string $url): int {
|
|
$hash = $this->hash($url);
|
|
$query = $this->connection->getQueryBuilder();
|
|
$query->select('status')->from($this->dbTable)
|
|
->where($query->expr()->eq('url_hash', $query->createParameter('url_hash')))
|
|
->setParameter('url_hash', $hash);
|
|
|
|
$statement = $query->executeQuery();
|
|
$result = $statement->fetch();
|
|
$statement->closeCursor();
|
|
return (int)$result['status'];
|
|
}
|
|
|
|
/**
|
|
* Create hash from URL
|
|
*/
|
|
protected function hash(string $url): string {
|
|
$normalized = $this->normalizeUrl($url);
|
|
return sha1($normalized);
|
|
}
|
|
|
|
/**
|
|
* Normalize URL, used to create the sha1 hash
|
|
*/
|
|
protected function normalizeUrl(string $url): string {
|
|
$normalized = $url;
|
|
|
|
if (strpos($url, 'https://') === 0) {
|
|
$normalized = substr($url, strlen('https://'));
|
|
} elseif (strpos($url, 'http://') === 0) {
|
|
$normalized = substr($url, strlen('http://'));
|
|
}
|
|
|
|
$normalized = Filesystem::normalizePath($normalized);
|
|
$normalized = trim($normalized, '/');
|
|
|
|
return $normalized;
|
|
}
|
|
|
|
public function auth(string $username, string $password): bool {
|
|
if ($username !== 'system') {
|
|
return false;
|
|
}
|
|
$query = $this->connection->getQueryBuilder();
|
|
$query->select('url')->from($this->dbTable)
|
|
->where($query->expr()->eq('shared_secret', $query->createNamedParameter($password)));
|
|
|
|
$statement = $query->executeQuery();
|
|
$result = $statement->fetch();
|
|
$statement->closeCursor();
|
|
return !empty($result);
|
|
}
|
|
}
|