123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Björn Schießle <bjoern@schiessle.org>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.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 OC\HintException;
- use OCP\IDBConnection;
- use OCP\IL10N;
- /**
- * Class DbHandler
- *
- * handles all database calls for the federation app
- *
- * @group DB
- * @package OCA\Federation
- */
- class DbHandler {
- /** @var IDBConnection */
- private $connection;
- /** @var IL10N */
- private $IL10N;
- /** @var string */
- private $dbTable = 'trusted_servers';
- /**
- * @param IDBConnection $connection
- * @param IL10N $il10n
- */
- public function __construct(
- IDBConnection $connection,
- IL10N $il10n
- ) {
- $this->connection = $connection;
- $this->IL10N = $il10n;
- }
- /**
- * add server to the list of trusted servers
- *
- * @param string $url
- * @return int
- * @throws HintException
- */
- public function addServer($url) {
- $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->execute();
- if ($result) {
- return (int)$this->connection->lastInsertId('*PREFIX*'.$this->dbTable);
- } else {
- $message = 'Internal failure, Could not add ownCloud as trusted server: ' . $url;
- $message_t = $this->IL10N->t('Could not add server');
- throw new HintException($message, $message_t);
- }
- }
- /**
- * remove server from the list of trusted servers
- *
- * @param int $id
- */
- public function removeServer($id) {
- $query = $this->connection->getQueryBuilder();
- $query->delete($this->dbTable)
- ->where($query->expr()->eq('id', $query->createParameter('id')))
- ->setParameter('id', $id);
- $query->execute();
- }
- /**
- * get trusted server with given ID
- *
- * @param int $id
- * @return array
- * @throws \Exception
- */
- public function getServerById($id) {
- $query = $this->connection->getQueryBuilder();
- $query->select('*')->from($this->dbTable)
- ->where($query->expr()->eq('id', $query->createParameter('id')))
- ->setParameter('id', $id);
- $query->execute();
- $result = $query->execute()->fetchAll();
- if (empty($result)) {
- throw new \Exception('No Server found with ID: ' . $id);
- }
- return $result[0];
- }
- /**
- * get all trusted servers
- *
- * @return array
- */
- public function getAllServer() {
- $query = $this->connection->getQueryBuilder();
- $query->select(['url', 'url_hash', 'id', 'status', 'shared_secret', 'sync_token'])->from($this->dbTable);
- $result = $query->execute()->fetchAll();
- return $result;
- }
- /**
- * check if server already exists in the database table
- *
- * @param string $url
- * @return bool
- */
- public function serverExists($url) {
- $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);
- $result = $query->execute()->fetchAll();
- return !empty($result);
- }
- /**
- * write token to database. Token is used to exchange the secret
- *
- * @param string $url
- * @param string $token
- */
- public function addToken($url, $token) {
- $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->execute();
- }
- /**
- * get token stored in database
- *
- * @param string $url
- * @return string
- * @throws \Exception
- */
- public function getToken($url) {
- $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);
- $result = $query->execute()->fetch();
- if (!isset($result['token'])) {
- throw new \Exception('No token found for: ' . $url);
- }
- return $result['token'];
- }
- /**
- * add shared Secret to database
- *
- * @param string $url
- * @param string $sharedSecret
- */
- public function addSharedSecret($url, $sharedSecret) {
- $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->execute();
- }
- /**
- * get shared secret from database
- *
- * @param string $url
- * @return string
- */
- public function getSharedSecret($url) {
- $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);
- $result = $query->execute()->fetch();
- return $result['shared_secret'];
- }
- /**
- * set server status
- *
- * @param string $url
- * @param int $status
- * @param string|null $token
- */
- public function setServerStatus($url, $status, $token = null) {
- $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->execute();
- }
- /**
- * get server status
- *
- * @param string $url
- * @return int
- */
- public function getServerStatus($url) {
- $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);
- $result = $query->execute()->fetch();
- return (int)$result['status'];
- }
- /**
- * create hash from URL
- *
- * @param string $url
- * @return string
- */
- protected function hash($url) {
- $normalized = $this->normalizeUrl($url);
- return sha1($normalized);
- }
- /**
- * normalize URL, used to create the sha1 hash
- *
- * @param string $url
- * @return string
- */
- protected function normalizeUrl($url) {
- $normalized = $url;
- if (strpos($url, 'https://') === 0) {
- $normalized = substr($url, strlen('https://'));
- } else if (strpos($url, 'http://') === 0) {
- $normalized = substr($url, strlen('http://'));
- }
- $normalized = Filesystem::normalizePath($normalized);
- $normalized = trim($normalized, '/');
- return $normalized;
- }
- /**
- * @param $username
- * @param $password
- * @return bool
- */
- public function auth($username, $password) {
- if ($username !== 'system') {
- return false;
- }
- $query = $this->connection->getQueryBuilder();
- $query->select('url')->from($this->dbTable)
- ->where($query->expr()->eq('shared_secret', $query->createNamedParameter($password)));
- $result = $query->execute()->fetch();
- return !empty($result);
- }
- }
|