summaryrefslogtreecommitdiffstats
path: root/lib/Controller/GuestController.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2018-03-20 10:30:22 +0100
committerJoas Schilling <coding@schilljs.com>2018-03-20 10:30:22 +0100
commitafcd192587ee7440517887b85475fbde9ded01b2 (patch)
treedf1d68e2fab8ffa7f5b53be0ad9b1f56701b7ef0 /lib/Controller/GuestController.php
parent606a230fa4c7f0cd2ac3aa2608a90abb220e8e75 (diff)
Send a request to the server when a guest renames
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Controller/GuestController.php')
-rw-r--r--lib/Controller/GuestController.php92
1 files changed, 92 insertions, 0 deletions
diff --git a/lib/Controller/GuestController.php b/lib/Controller/GuestController.php
new file mode 100644
index 000000000..981856ec5
--- /dev/null
+++ b/lib/Controller/GuestController.php
@@ -0,0 +1,92 @@
+<?php
+
+/**
+ *
+ * @copyright Copyright (c) 2017, Daniel Calviño Sánchez (danxuliu@gmail.com)
+ *
+ * @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\Spreed\Controller;
+
+use Doctrine\DBAL\DBALException;
+use OCA\Spreed\GuestManager;
+use OCP\AppFramework\Http;
+use OCP\AppFramework\Http\DataResponse;
+use OCP\AppFramework\OCSController;
+use OCP\IRequest;
+use OCP\ISession;
+
+class GuestController extends OCSController {
+
+ /** @var string */
+ private $userId;
+
+ /** @var ISession */
+ private $session;
+
+ /** @var GuestManager */
+ private $guestManager;
+
+ /**
+ * @param string $appName
+ * @param string $UserId
+ * @param IRequest $request
+ * @param ISession $session
+ * @param GuestManager $guestManager
+ */
+ public function __construct($appName,
+ $UserId,
+ IRequest $request,
+ ISession $session,
+ GuestManager $guestManager) {
+ parent::__construct($appName, $request);
+
+ $this->userId = $UserId;
+ $this->session = $session;
+ $this->guestManager = $guestManager;
+ }
+
+ /**
+ * @PublicPage
+ *
+ *
+ * @param string $displayName
+ * @return DataResponse
+ */
+ public function setDisplayName($displayName) {
+ if ($this->userId) {
+ return new DataResponse([], Http::STATUS_FORBIDDEN);
+ }
+
+ $sessionId = $this->session->get('spreed-session');
+ $sessionId = $sessionId ? sha1($sessionId) : $sessionId;
+
+ if (!$sessionId) {
+ return new DataResponse([], Http::STATUS_NOT_FOUND);
+ }
+
+ try {
+ $this->guestManager->updateName($sessionId, $displayName);
+ } catch (DBALException $e) {
+ return new DataResponse([], Http::STATUS_INTERNAL_SERVER_ERROR);
+ }
+
+ return new DataResponse();
+ }
+
+}