summaryrefslogtreecommitdiffstats
path: root/apps/lookup_server_connector/lib
diff options
context:
space:
mode:
authorBjoern Schiessle <bjoern@schiessle.org>2016-11-17 12:14:13 +0100
committerRoeland Jago Douma <roeland@famdouma.nl>2016-11-21 11:29:59 +0100
commitb23a4ca96b018b31d7586883075f306f0492c7e4 (patch)
tree2cfe6e459038753b3bc97911ba7aea3291dd7647 /apps/lookup_server_connector/lib
parent061ef0cc7cda6bd93ec8f42bba0e526d12c9bfec (diff)
downloadnextcloud-server-b23a4ca96b018b31d7586883075f306f0492c7e4.tar.gz
nextcloud-server-b23a4ca96b018b31d7586883075f306f0492c7e4.zip
push public user data to the lookup server
Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
Diffstat (limited to 'apps/lookup_server_connector/lib')
-rw-r--r--apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php33
-rw-r--r--apps/lookup_server_connector/lib/UpdateLookupServer.php93
2 files changed, 126 insertions, 0 deletions
diff --git a/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php b/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
new file mode 100644
index 00000000000..5c4f1e73259
--- /dev/null
+++ b/apps/lookup_server_connector/lib/BackgroundJobs/RetryJob.php
@@ -0,0 +1,33 @@
+<?php
+/**
+ * @copyright Copyright (c) 2016 Bjoern Schiessle <bjoern@schiessle.org>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * 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
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+
+namespace OCA\LookupServerConnector\BackgroundJobs;
+
+
+use OC\BackgroundJob\Job;
+
+class RetryJob extends Job {
+
+ protected function run($argument) {
+ // TODO: Implement run() method.
+ }
+}
diff --git a/apps/lookup_server_connector/lib/UpdateLookupServer.php b/apps/lookup_server_connector/lib/UpdateLookupServer.php
new file mode 100644
index 00000000000..2ccdf5b5a8c
--- /dev/null
+++ b/apps/lookup_server_connector/lib/UpdateLookupServer.php
@@ -0,0 +1,93 @@
+<?php
+/**
+ * @copyright Copyright (c) 2016 Bjoern Schiessle <bjoern@schiessle.org>
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * 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
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+
+namespace OCA\LookupServerConnector;
+
+
+use OC\Accounts\AccountManager;
+use OCP\IConfig;
+use OCP\IUser;
+
+/**
+ * Class UpdateLookupServer
+ *
+ * @package OCA\LookupServerConnector
+ */
+class UpdateLookupServer {
+
+ /** @var AccountManager */
+ private $accountManager;
+
+ /** @var IConfig */
+ private $config;
+
+ /**
+ * UpdateLookupServer constructor.
+ *
+ * @param AccountManager $accountManager
+ * @param IConfig $config
+ */
+ public function __construct(AccountManager $accountManager, IConfig $config) {
+ $this->accountManager;
+ $this->config = $config;
+ }
+
+
+ public function userUpdated(IUser $user) {
+ $userData = $this->accountManager->getUser($user);
+ $authKey = $this->config->getUserValue($user->getUID(), 'lookup_server_connector', 'authKey');
+
+ $publicData = [];
+
+ foreach ($userData as $data) {
+ if ($data['scope'] === AccountManager::VISIBILITY_PUBLIC) {
+ $publicData[] = $data;
+ }
+ }
+
+ if (empty($publicData)) {
+ $this->removeFromLookupServer($user);
+ } else {
+ $this->sendToLookupServer($publicData, $authKey);
+ }
+ }
+
+ /**
+ * remove user from lookup server
+ *
+ * @param IUser $user
+ */
+ protected function removeFromLookupServer(IUser $user) {
+ $this->config->deleteUserValue($user->getUID(), 'lookup_server_connector', 'authKey');
+ }
+
+ /**
+ * send public user data to the lookup server
+ *
+ * @param array $publicData
+ * @param string $authKey
+ */
+ protected function sendToLookupServer($publicData, $authKey) {
+ // If we don't update a existing entry, the server will return a authKey and we
+ // will add it to the database
+ }
+}