123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <?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\DB\Exception as DBException;
- use OCP\DB\QueryBuilder\IQueryBuilder;
- use OCP\HintException;
- use OCP\IDBConnection;
- 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);
- }
- }
|