123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187 |
- <?php
- /**
- * @copyright Copyright (c) 2016, ownCloud, Inc.
- *
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Björn Schießle <bjoern@schiessle.org>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Clark Tomlinson <fallen013@gmail.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @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\Encryption;
- use OCA\Encryption\Exceptions\PrivateKeyMissingException;
- use OCP\ISession;
- class Session {
- /** @var ISession */
- protected $session;
- public const NOT_INITIALIZED = '0';
- public const INIT_EXECUTED = '1';
- public const INIT_SUCCESSFUL = '2';
- /**
- * @param ISession $session
- */
- public function __construct(ISession $session) {
- $this->session = $session;
- }
- /**
- * Sets status of encryption app
- *
- * @param string $status INIT_SUCCESSFUL, INIT_EXECUTED, NOT_INITIALIZED
- */
- public function setStatus($status) {
- $this->session->set('encryptionInitialized', $status);
- }
- /**
- * Gets status if we already tried to initialize the encryption app
- *
- * @return string init status INIT_SUCCESSFUL, INIT_EXECUTED, NOT_INITIALIZED
- */
- public function getStatus() {
- $status = $this->session->get('encryptionInitialized');
- if (is_null($status)) {
- $status = self::NOT_INITIALIZED;
- }
- return $status;
- }
- /**
- * check if encryption was initialized successfully
- *
- * @return bool
- */
- public function isReady() {
- $status = $this->getStatus();
- return $status === self::INIT_SUCCESSFUL;
- }
- /**
- * Gets user or public share private key from session
- *
- * @return string $privateKey The user's plaintext private key
- * @throws Exceptions\PrivateKeyMissingException
- */
- public function getPrivateKey() {
- $key = $this->session->get('privateKey');
- if (is_null($key)) {
- throw new Exceptions\PrivateKeyMissingException('please try to log-out and log-in again', 0);
- }
- return $key;
- }
- /**
- * check if private key is set
- *
- * @return boolean
- */
- public function isPrivateKeySet() {
- $key = $this->session->get('privateKey');
- if (is_null($key)) {
- return false;
- }
- return true;
- }
- /**
- * Sets user private key to session
- *
- * @param string $key users private key
- *
- * @note this should only be set on login
- */
- public function setPrivateKey($key) {
- $this->session->set('privateKey', $key);
- }
- /**
- * store data needed for the decrypt all operation in the session
- *
- * @param string $user
- * @param string $key
- */
- public function prepareDecryptAll($user, $key) {
- $this->session->set('decryptAll', true);
- $this->session->set('decryptAllKey', $key);
- $this->session->set('decryptAllUid', $user);
- }
- /**
- * check if we are in decrypt all mode
- *
- * @return bool
- */
- public function decryptAllModeActivated() {
- $decryptAll = $this->session->get('decryptAll');
- return ($decryptAll === true);
- }
- /**
- * get uid used for decrypt all operation
- *
- * @return string
- * @throws \Exception
- */
- public function getDecryptAllUid() {
- $uid = $this->session->get('decryptAllUid');
- if (is_null($uid) && $this->decryptAllModeActivated()) {
- throw new \Exception('No uid found while in decrypt all mode');
- } elseif (is_null($uid)) {
- throw new \Exception('Please activate decrypt all mode first');
- }
- return $uid;
- }
- /**
- * get private key for decrypt all operation
- *
- * @return string
- * @throws PrivateKeyMissingException
- */
- public function getDecryptAllKey() {
- $privateKey = $this->session->get('decryptAllKey');
- if (is_null($privateKey) && $this->decryptAllModeActivated()) {
- throw new PrivateKeyMissingException('No private key found while in decrypt all mode');
- } elseif (is_null($privateKey)) {
- throw new PrivateKeyMissingException('Please activate decrypt all mode first');
- }
- return $privateKey;
- }
- /**
- * remove keys from session
- */
- public function clear() {
- $this->session->remove('publicSharePrivateKey');
- $this->session->remove('privateKey');
- $this->session->remove('encryptionInitialized');
- $this->session->remove('decryptAll');
- $this->session->remove('decryptAllKey');
- $this->session->remove('decryptAllUid');
- }
- }
|