2016-01-22 16:58:49 +03:00
|
|
|
<?php
|
2016-03-01 19:25:15 +03:00
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Bjoern Schiessle <bjoern@schiessle.org>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Björn Schießle <bjoern@schiessle.org>
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2016-03-01 19:25:15 +03:00
|
|
|
* @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/>
|
|
|
|
*
|
|
|
|
*/
|
2016-01-22 16:58:49 +03:00
|
|
|
namespace OCA\Federation;
|
|
|
|
|
2017-02-24 18:09:52 +03:00
|
|
|
use OC\OCS\DiscoveryService;
|
2016-01-22 16:58:49 +03:00
|
|
|
use OCA\DAV\CardDAV\SyncService;
|
2016-02-26 19:51:20 +03:00
|
|
|
use OCP\AppFramework\Http;
|
2017-02-24 18:09:52 +03:00
|
|
|
use OCP\OCS\IDiscoveryService;
|
2016-01-22 16:58:49 +03:00
|
|
|
|
|
|
|
class SyncFederationAddressBooks {
|
|
|
|
|
|
|
|
/** @var DbHandler */
|
|
|
|
protected $dbHandler;
|
|
|
|
|
|
|
|
/** @var SyncService */
|
|
|
|
private $syncService;
|
|
|
|
|
2017-02-24 18:09:52 +03:00
|
|
|
/** @var DiscoveryService */
|
|
|
|
private $ocsDiscoveryService;
|
|
|
|
|
2016-01-22 16:58:49 +03:00
|
|
|
/**
|
|
|
|
* @param DbHandler $dbHandler
|
2016-01-26 19:27:58 +03:00
|
|
|
* @param SyncService $syncService
|
2017-02-24 18:09:52 +03:00
|
|
|
* @param IDiscoveryService $ocsDiscoveryService
|
2016-01-22 16:58:49 +03:00
|
|
|
*/
|
2017-02-24 18:09:52 +03:00
|
|
|
public function __construct(DbHandler $dbHandler,
|
|
|
|
SyncService $syncService,
|
|
|
|
IDiscoveryService $ocsDiscoveryService
|
|
|
|
) {
|
2016-01-25 13:39:57 +03:00
|
|
|
$this->syncService = $syncService;
|
2016-01-22 16:58:49 +03:00
|
|
|
$this->dbHandler = $dbHandler;
|
2017-02-24 18:09:52 +03:00
|
|
|
$this->ocsDiscoveryService = $ocsDiscoveryService;
|
2016-01-22 16:58:49 +03:00
|
|
|
}
|
|
|
|
|
2016-01-26 19:27:58 +03:00
|
|
|
/**
|
|
|
|
* @param \Closure $callback
|
|
|
|
*/
|
2016-01-22 16:58:49 +03:00
|
|
|
public function syncThemAll(\Closure $callback) {
|
|
|
|
|
|
|
|
$trustedServers = $this->dbHandler->getAllServer();
|
|
|
|
foreach ($trustedServers as $trustedServer) {
|
|
|
|
$url = $trustedServer['url'];
|
2016-01-25 13:39:57 +03:00
|
|
|
$callback($url, null);
|
2016-01-22 16:58:49 +03:00
|
|
|
$sharedSecret = $trustedServer['shared_secret'];
|
|
|
|
$syncToken = $trustedServer['sync_token'];
|
|
|
|
|
2017-02-24 18:09:52 +03:00
|
|
|
$endPoints = $this->ocsDiscoveryService->discover($url, 'FEDERATED_SHARING');
|
|
|
|
$cardDavUser = isset($endPoints['carddav-user']) ? $endPoints['carddav-user'] : 'system';
|
|
|
|
$addressBookUrl = isset($endPoints['system-address-book']) ? trim($endPoints['system-address-book'], '/') : 'remote.php/dav/addressbooks/system/system/system';
|
|
|
|
|
2016-01-22 16:58:49 +03:00
|
|
|
if (is_null($sharedSecret)) {
|
|
|
|
continue;
|
|
|
|
}
|
2016-02-26 19:02:13 +03:00
|
|
|
$targetBookId = $trustedServer['url_hash'];
|
2016-01-22 16:58:49 +03:00
|
|
|
$targetPrincipal = "principals/system/system";
|
|
|
|
$targetBookProperties = [
|
|
|
|
'{DAV:}displayname' => $url
|
|
|
|
];
|
|
|
|
try {
|
2017-02-24 18:09:52 +03:00
|
|
|
$newToken = $this->syncService->syncRemoteAddressBook($url, $cardDavUser, $addressBookUrl, $sharedSecret, $syncToken, $targetBookId, $targetPrincipal, $targetBookProperties);
|
2016-01-22 16:58:49 +03:00
|
|
|
if ($newToken !== $syncToken) {
|
|
|
|
$this->dbHandler->setServerStatus($url, TrustedServers::STATUS_OK, $newToken);
|
|
|
|
}
|
|
|
|
} catch (\Exception $ex) {
|
2016-02-26 19:51:20 +03:00
|
|
|
if ($ex->getCode() === Http::STATUS_UNAUTHORIZED) {
|
|
|
|
$this->dbHandler->setServerStatus($url, TrustedServers::STATUS_ACCESS_REVOKED);
|
|
|
|
}
|
2016-01-22 16:58:49 +03:00
|
|
|
$callback($url, $ex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|