@@ -55,7 +55,7 @@ discard block |
||
| 55 | 55 | private function setupUserFs($userId) { |
| 56 | 56 | \OC_Util::setupFS($userId); |
| 57 | 57 | $this->session->close(); |
| 58 | - return $this->principalPrefix . $userId; |
|
| 58 | + return $this->principalPrefix.$userId; |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | /** |
@@ -64,10 +64,10 @@ discard block |
||
| 64 | 64 | public function validateBearerToken($bearerToken) { |
| 65 | 65 | \OC_Util::setupFS(); |
| 66 | 66 | |
| 67 | - if(!$this->userSession->isLoggedIn()) { |
|
| 67 | + if (!$this->userSession->isLoggedIn()) { |
|
| 68 | 68 | $this->userSession->tryTokenLogin($this->request); |
| 69 | 69 | } |
| 70 | - if($this->userSession->isLoggedIn()) { |
|
| 70 | + if ($this->userSession->isLoggedIn()) { |
|
| 71 | 71 | return $this->setupUserFs($this->userSession->getUser()->getUID()); |
| 72 | 72 | } |
| 73 | 73 | |
@@ -29,66 +29,66 @@ |
||
| 29 | 29 | use Sabre\HTTP\ResponseInterface; |
| 30 | 30 | |
| 31 | 31 | class BearerAuth extends AbstractBearer { |
| 32 | - /** @var IUserSession */ |
|
| 33 | - private $userSession; |
|
| 34 | - /** @var ISession */ |
|
| 35 | - private $session; |
|
| 36 | - /** @var IRequest */ |
|
| 37 | - private $request; |
|
| 38 | - /** @var string */ |
|
| 39 | - private $principalPrefix; |
|
| 32 | + /** @var IUserSession */ |
|
| 33 | + private $userSession; |
|
| 34 | + /** @var ISession */ |
|
| 35 | + private $session; |
|
| 36 | + /** @var IRequest */ |
|
| 37 | + private $request; |
|
| 38 | + /** @var string */ |
|
| 39 | + private $principalPrefix; |
|
| 40 | 40 | |
| 41 | - /** |
|
| 42 | - * @param IUserSession $userSession |
|
| 43 | - * @param ISession $session |
|
| 44 | - * @param string $principalPrefix |
|
| 45 | - * @param IRequest $request |
|
| 46 | - */ |
|
| 47 | - public function __construct(IUserSession $userSession, |
|
| 48 | - ISession $session, |
|
| 49 | - IRequest $request, |
|
| 50 | - $principalPrefix = 'principals/users/') { |
|
| 51 | - $this->userSession = $userSession; |
|
| 52 | - $this->session = $session; |
|
| 53 | - $this->request = $request; |
|
| 54 | - $this->principalPrefix = $principalPrefix; |
|
| 41 | + /** |
|
| 42 | + * @param IUserSession $userSession |
|
| 43 | + * @param ISession $session |
|
| 44 | + * @param string $principalPrefix |
|
| 45 | + * @param IRequest $request |
|
| 46 | + */ |
|
| 47 | + public function __construct(IUserSession $userSession, |
|
| 48 | + ISession $session, |
|
| 49 | + IRequest $request, |
|
| 50 | + $principalPrefix = 'principals/users/') { |
|
| 51 | + $this->userSession = $userSession; |
|
| 52 | + $this->session = $session; |
|
| 53 | + $this->request = $request; |
|
| 54 | + $this->principalPrefix = $principalPrefix; |
|
| 55 | 55 | |
| 56 | - // setup realm |
|
| 57 | - $defaults = new \OCP\Defaults(); |
|
| 58 | - $this->realm = $defaults->getName(); |
|
| 59 | - } |
|
| 56 | + // setup realm |
|
| 57 | + $defaults = new \OCP\Defaults(); |
|
| 58 | + $this->realm = $defaults->getName(); |
|
| 59 | + } |
|
| 60 | 60 | |
| 61 | - private function setupUserFs($userId) { |
|
| 62 | - \OC_Util::setupFS($userId); |
|
| 63 | - $this->session->close(); |
|
| 64 | - return $this->principalPrefix . $userId; |
|
| 65 | - } |
|
| 61 | + private function setupUserFs($userId) { |
|
| 62 | + \OC_Util::setupFS($userId); |
|
| 63 | + $this->session->close(); |
|
| 64 | + return $this->principalPrefix . $userId; |
|
| 65 | + } |
|
| 66 | 66 | |
| 67 | - /** |
|
| 68 | - * {@inheritdoc} |
|
| 69 | - */ |
|
| 70 | - public function validateBearerToken($bearerToken) { |
|
| 71 | - \OC_Util::setupFS(); |
|
| 67 | + /** |
|
| 68 | + * {@inheritdoc} |
|
| 69 | + */ |
|
| 70 | + public function validateBearerToken($bearerToken) { |
|
| 71 | + \OC_Util::setupFS(); |
|
| 72 | 72 | |
| 73 | - if(!$this->userSession->isLoggedIn()) { |
|
| 74 | - $this->userSession->tryTokenLogin($this->request); |
|
| 75 | - } |
|
| 76 | - if($this->userSession->isLoggedIn()) { |
|
| 77 | - return $this->setupUserFs($this->userSession->getUser()->getUID()); |
|
| 78 | - } |
|
| 73 | + if(!$this->userSession->isLoggedIn()) { |
|
| 74 | + $this->userSession->tryTokenLogin($this->request); |
|
| 75 | + } |
|
| 76 | + if($this->userSession->isLoggedIn()) { |
|
| 77 | + return $this->setupUserFs($this->userSession->getUser()->getUID()); |
|
| 78 | + } |
|
| 79 | 79 | |
| 80 | - return false; |
|
| 81 | - } |
|
| 80 | + return false; |
|
| 81 | + } |
|
| 82 | 82 | |
| 83 | - /** |
|
| 84 | - * \Sabre\DAV\Auth\Backend\AbstractBearer::challenge sets an WWW-Authenticate |
|
| 85 | - * header which some DAV clients can't handle. Thus we override this function |
|
| 86 | - * and make it simply return a 401. |
|
| 87 | - * |
|
| 88 | - * @param RequestInterface $request |
|
| 89 | - * @param ResponseInterface $response |
|
| 90 | - */ |
|
| 91 | - public function challenge(RequestInterface $request, ResponseInterface $response) { |
|
| 92 | - $response->setStatus(401); |
|
| 93 | - } |
|
| 83 | + /** |
|
| 84 | + * \Sabre\DAV\Auth\Backend\AbstractBearer::challenge sets an WWW-Authenticate |
|
| 85 | + * header which some DAV clients can't handle. Thus we override this function |
|
| 86 | + * and make it simply return a 401. |
|
| 87 | + * |
|
| 88 | + * @param RequestInterface $request |
|
| 89 | + * @param ResponseInterface $response |
|
| 90 | + */ |
|
| 91 | + public function challenge(RequestInterface $request, ResponseInterface $response) { |
|
| 92 | + $response->setStatus(401); |
|
| 93 | + } |
|
| 94 | 94 | } |
@@ -29,31 +29,31 @@ |
||
| 29 | 29 | |
| 30 | 30 | class Additional implements ISettings { |
| 31 | 31 | |
| 32 | - /** |
|
| 33 | - * @return TemplateResponse returns the instance with all parameters set, ready to be rendered |
|
| 34 | - * @since 9.1 |
|
| 35 | - */ |
|
| 36 | - public function getForm() { |
|
| 37 | - return new TemplateResponse('settings', 'settings/empty'); |
|
| 38 | - } |
|
| 32 | + /** |
|
| 33 | + * @return TemplateResponse returns the instance with all parameters set, ready to be rendered |
|
| 34 | + * @since 9.1 |
|
| 35 | + */ |
|
| 36 | + public function getForm() { |
|
| 37 | + return new TemplateResponse('settings', 'settings/empty'); |
|
| 38 | + } |
|
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * @return string the section ID, e.g. 'sharing' |
|
| 42 | - * @since 9.1 |
|
| 43 | - */ |
|
| 44 | - public function getSection() { |
|
| 45 | - return 'additional'; |
|
| 46 | - } |
|
| 40 | + /** |
|
| 41 | + * @return string the section ID, e.g. 'sharing' |
|
| 42 | + * @since 9.1 |
|
| 43 | + */ |
|
| 44 | + public function getSection() { |
|
| 45 | + return 'additional'; |
|
| 46 | + } |
|
| 47 | 47 | |
| 48 | - /** |
|
| 49 | - * @return int whether the form should be rather on the top or bottom of |
|
| 50 | - * the admin section. The forms are arranged in ascending order of the |
|
| 51 | - * priority values. It is required to return a value between 0 and 100. |
|
| 52 | - * |
|
| 53 | - * E.g.: 70 |
|
| 54 | - * @since 9.1 |
|
| 55 | - */ |
|
| 56 | - public function getPriority() { |
|
| 57 | - return '5'; |
|
| 58 | - } |
|
| 48 | + /** |
|
| 49 | + * @return int whether the form should be rather on the top or bottom of |
|
| 50 | + * the admin section. The forms are arranged in ascending order of the |
|
| 51 | + * priority values. It is required to return a value between 0 and 100. |
|
| 52 | + * |
|
| 53 | + * E.g.: 70 |
|
| 54 | + * @since 9.1 |
|
| 55 | + */ |
|
| 56 | + public function getPriority() { |
|
| 57 | + return '5'; |
|
| 58 | + } |
|
| 59 | 59 | } |
@@ -28,34 +28,34 @@ |
||
| 28 | 28 | $util = $app->getContainer()->query(\OCA\Theming\Util::class); |
| 29 | 29 | if(!$util->isAlreadyThemed()) { |
| 30 | 30 | |
| 31 | - $app->getContainer()->registerCapability(\OCA\Theming\Capabilities::class); |
|
| 31 | + $app->getContainer()->registerCapability(\OCA\Theming\Capabilities::class); |
|
| 32 | 32 | |
| 33 | - $linkToCSS = \OC::$server->getURLGenerator()->linkToRoute( |
|
| 34 | - 'theming.Theming.getStylesheet', |
|
| 35 | - [ |
|
| 36 | - 'v' => \OC::$server->getConfig()->getAppValue('theming', 'cachebuster', '0'), |
|
| 37 | - ] |
|
| 38 | - ); |
|
| 39 | - \OCP\Util::addHeader( |
|
| 40 | - 'link', |
|
| 41 | - [ |
|
| 42 | - 'rel' => 'stylesheet', |
|
| 43 | - 'href' => $linkToCSS, |
|
| 44 | - ] |
|
| 45 | - ); |
|
| 33 | + $linkToCSS = \OC::$server->getURLGenerator()->linkToRoute( |
|
| 34 | + 'theming.Theming.getStylesheet', |
|
| 35 | + [ |
|
| 36 | + 'v' => \OC::$server->getConfig()->getAppValue('theming', 'cachebuster', '0'), |
|
| 37 | + ] |
|
| 38 | + ); |
|
| 39 | + \OCP\Util::addHeader( |
|
| 40 | + 'link', |
|
| 41 | + [ |
|
| 42 | + 'rel' => 'stylesheet', |
|
| 43 | + 'href' => $linkToCSS, |
|
| 44 | + ] |
|
| 45 | + ); |
|
| 46 | 46 | |
| 47 | - $linkToJs = \OC::$server->getURLGenerator()->linkToRoute( |
|
| 48 | - 'theming.Theming.getJavascript', |
|
| 49 | - [ |
|
| 50 | - 'v' => \OC::$server->getConfig()->getAppValue('theming', 'cachebuster', '0'), |
|
| 51 | - ] |
|
| 52 | - ); |
|
| 53 | - \OCP\Util::addHeader( |
|
| 54 | - 'script', |
|
| 55 | - [ |
|
| 56 | - 'src' => $linkToJs, |
|
| 57 | - 'nonce' => \OC::$server->getContentSecurityPolicyNonceManager()->getNonce() |
|
| 58 | - ], '' |
|
| 59 | - ); |
|
| 47 | + $linkToJs = \OC::$server->getURLGenerator()->linkToRoute( |
|
| 48 | + 'theming.Theming.getJavascript', |
|
| 49 | + [ |
|
| 50 | + 'v' => \OC::$server->getConfig()->getAppValue('theming', 'cachebuster', '0'), |
|
| 51 | + ] |
|
| 52 | + ); |
|
| 53 | + \OCP\Util::addHeader( |
|
| 54 | + 'script', |
|
| 55 | + [ |
|
| 56 | + 'src' => $linkToJs, |
|
| 57 | + 'nonce' => \OC::$server->getContentSecurityPolicyNonceManager()->getNonce() |
|
| 58 | + ], '' |
|
| 59 | + ); |
|
| 60 | 60 | |
| 61 | 61 | } |
| 62 | 62 | \ No newline at end of file |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | $app = new \OCP\AppFramework\App('theming'); |
| 27 | 27 | /** @var \OCA\Theming\Util $util */ |
| 28 | 28 | $util = $app->getContainer()->query(\OCA\Theming\Util::class); |
| 29 | -if(!$util->isAlreadyThemed()) { |
|
| 29 | +if (!$util->isAlreadyThemed()) { |
|
| 30 | 30 | |
| 31 | 31 | $app->getContainer()->registerCapability(\OCA\Theming\Capabilities::class); |
| 32 | 32 | |
@@ -27,45 +27,45 @@ |
||
| 27 | 27 | |
| 28 | 28 | class Config implements \OCP\GlobalScale\IConfig { |
| 29 | 29 | |
| 30 | - /** @var IConfig */ |
|
| 31 | - private $config; |
|
| 30 | + /** @var IConfig */ |
|
| 31 | + private $config; |
|
| 32 | 32 | |
| 33 | - /** |
|
| 34 | - * Config constructor. |
|
| 35 | - * |
|
| 36 | - * @param IConfig $config |
|
| 37 | - */ |
|
| 38 | - public function __construct(IConfig $config) { |
|
| 39 | - $this->config = $config; |
|
| 40 | - } |
|
| 33 | + /** |
|
| 34 | + * Config constructor. |
|
| 35 | + * |
|
| 36 | + * @param IConfig $config |
|
| 37 | + */ |
|
| 38 | + public function __construct(IConfig $config) { |
|
| 39 | + $this->config = $config; |
|
| 40 | + } |
|
| 41 | 41 | |
| 42 | - /** |
|
| 43 | - * check if global scale is enabled |
|
| 44 | - * |
|
| 45 | - * @since 12.0.1 |
|
| 46 | - * @return bool |
|
| 47 | - */ |
|
| 48 | - public function isGlobalScaleEnabled() { |
|
| 49 | - $enabled = $this->config->getSystemValue('gs.enabled', false); |
|
| 50 | - return $enabled !== false; |
|
| 51 | - } |
|
| 42 | + /** |
|
| 43 | + * check if global scale is enabled |
|
| 44 | + * |
|
| 45 | + * @since 12.0.1 |
|
| 46 | + * @return bool |
|
| 47 | + */ |
|
| 48 | + public function isGlobalScaleEnabled() { |
|
| 49 | + $enabled = $this->config->getSystemValue('gs.enabled', false); |
|
| 50 | + return $enabled !== false; |
|
| 51 | + } |
|
| 52 | 52 | |
| 53 | - /** |
|
| 54 | - * check if federation should only be used internally in a global scale setup |
|
| 55 | - * |
|
| 56 | - * @since 12.0.1 |
|
| 57 | - * @return bool |
|
| 58 | - */ |
|
| 59 | - public function onlyInternalFederation() { |
|
| 60 | - // if global scale is disabled federation works always globally |
|
| 61 | - $gsEnabled = $this->isGlobalScaleEnabled(); |
|
| 62 | - if ($gsEnabled === false) { |
|
| 63 | - return false; |
|
| 64 | - } |
|
| 53 | + /** |
|
| 54 | + * check if federation should only be used internally in a global scale setup |
|
| 55 | + * |
|
| 56 | + * @since 12.0.1 |
|
| 57 | + * @return bool |
|
| 58 | + */ |
|
| 59 | + public function onlyInternalFederation() { |
|
| 60 | + // if global scale is disabled federation works always globally |
|
| 61 | + $gsEnabled = $this->isGlobalScaleEnabled(); |
|
| 62 | + if ($gsEnabled === false) { |
|
| 63 | + return false; |
|
| 64 | + } |
|
| 65 | 65 | |
| 66 | - $enabled = $this->config->getSystemValue('gs.federation', 'internal'); |
|
| 66 | + $enabled = $this->config->getSystemValue('gs.federation', 'internal'); |
|
| 67 | 67 | |
| 68 | - return $enabled === 'internal'; |
|
| 69 | - } |
|
| 68 | + return $enabled === 'internal'; |
|
| 69 | + } |
|
| 70 | 70 | |
| 71 | 71 | } |
@@ -32,20 +32,20 @@ |
||
| 32 | 32 | */ |
| 33 | 33 | interface IConfig { |
| 34 | 34 | |
| 35 | - /** |
|
| 36 | - * check if global scale is enabled |
|
| 37 | - * |
|
| 38 | - * @since 12.0.1 |
|
| 39 | - * @return bool |
|
| 40 | - */ |
|
| 41 | - public function isGlobalScaleEnabled(); |
|
| 35 | + /** |
|
| 36 | + * check if global scale is enabled |
|
| 37 | + * |
|
| 38 | + * @since 12.0.1 |
|
| 39 | + * @return bool |
|
| 40 | + */ |
|
| 41 | + public function isGlobalScaleEnabled(); |
|
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * check if federation should only be used internally in a global scale setup |
|
| 45 | - * |
|
| 46 | - * @since 12.0.1 |
|
| 47 | - * @return bool |
|
| 48 | - */ |
|
| 49 | - public function onlyInternalFederation(); |
|
| 43 | + /** |
|
| 44 | + * check if federation should only be used internally in a global scale setup |
|
| 45 | + * |
|
| 46 | + * @since 12.0.1 |
|
| 47 | + * @return bool |
|
| 48 | + */ |
|
| 49 | + public function onlyInternalFederation(); |
|
| 50 | 50 | |
| 51 | 51 | } |
@@ -30,55 +30,55 @@ |
||
| 30 | 30 | |
| 31 | 31 | class Admin implements ISettings { |
| 32 | 32 | |
| 33 | - /** @var FederatedShareProvider */ |
|
| 34 | - private $fedShareProvider; |
|
| 33 | + /** @var FederatedShareProvider */ |
|
| 34 | + private $fedShareProvider; |
|
| 35 | 35 | |
| 36 | - /** @var IConfig */ |
|
| 37 | - private $gsConfig; |
|
| 36 | + /** @var IConfig */ |
|
| 37 | + private $gsConfig; |
|
| 38 | 38 | |
| 39 | - /** |
|
| 40 | - * Admin constructor. |
|
| 41 | - * |
|
| 42 | - * @param FederatedShareProvider $fedShareProvider |
|
| 43 | - * @param IConfig $globalScaleConfig |
|
| 44 | - */ |
|
| 45 | - public function __construct(FederatedShareProvider $fedShareProvider, IConfig $globalScaleConfig) { |
|
| 46 | - $this->fedShareProvider = $fedShareProvider; |
|
| 47 | - $this->gsConfig = $globalScaleConfig; |
|
| 48 | - } |
|
| 39 | + /** |
|
| 40 | + * Admin constructor. |
|
| 41 | + * |
|
| 42 | + * @param FederatedShareProvider $fedShareProvider |
|
| 43 | + * @param IConfig $globalScaleConfig |
|
| 44 | + */ |
|
| 45 | + public function __construct(FederatedShareProvider $fedShareProvider, IConfig $globalScaleConfig) { |
|
| 46 | + $this->fedShareProvider = $fedShareProvider; |
|
| 47 | + $this->gsConfig = $globalScaleConfig; |
|
| 48 | + } |
|
| 49 | 49 | |
| 50 | - /** |
|
| 51 | - * @return TemplateResponse |
|
| 52 | - */ |
|
| 53 | - public function getForm() { |
|
| 50 | + /** |
|
| 51 | + * @return TemplateResponse |
|
| 52 | + */ |
|
| 53 | + public function getForm() { |
|
| 54 | 54 | |
| 55 | - $parameters = [ |
|
| 56 | - 'internalOnly' => $this->gsConfig->onlyInternalFederation(), |
|
| 57 | - 'outgoingServer2serverShareEnabled' => $this->fedShareProvider->isOutgoingServer2serverShareEnabled(), |
|
| 58 | - 'incomingServer2serverShareEnabled' => $this->fedShareProvider->isIncomingServer2serverShareEnabled(), |
|
| 59 | - 'lookupServerEnabled' => $this->fedShareProvider->isLookupServerQueriesEnabled(), |
|
| 60 | - 'lookupServerUploadEnabled' => $this->fedShareProvider->isLookupServerUploadEnabled(), |
|
| 61 | - ]; |
|
| 55 | + $parameters = [ |
|
| 56 | + 'internalOnly' => $this->gsConfig->onlyInternalFederation(), |
|
| 57 | + 'outgoingServer2serverShareEnabled' => $this->fedShareProvider->isOutgoingServer2serverShareEnabled(), |
|
| 58 | + 'incomingServer2serverShareEnabled' => $this->fedShareProvider->isIncomingServer2serverShareEnabled(), |
|
| 59 | + 'lookupServerEnabled' => $this->fedShareProvider->isLookupServerQueriesEnabled(), |
|
| 60 | + 'lookupServerUploadEnabled' => $this->fedShareProvider->isLookupServerUploadEnabled(), |
|
| 61 | + ]; |
|
| 62 | 62 | |
| 63 | - return new TemplateResponse('federatedfilesharing', 'settings-admin', $parameters, ''); |
|
| 64 | - } |
|
| 63 | + return new TemplateResponse('federatedfilesharing', 'settings-admin', $parameters, ''); |
|
| 64 | + } |
|
| 65 | 65 | |
| 66 | - /** |
|
| 67 | - * @return string the section ID, e.g. 'sharing' |
|
| 68 | - */ |
|
| 69 | - public function getSection() { |
|
| 70 | - return 'sharing'; |
|
| 71 | - } |
|
| 66 | + /** |
|
| 67 | + * @return string the section ID, e.g. 'sharing' |
|
| 68 | + */ |
|
| 69 | + public function getSection() { |
|
| 70 | + return 'sharing'; |
|
| 71 | + } |
|
| 72 | 72 | |
| 73 | - /** |
|
| 74 | - * @return int whether the form should be rather on the top or bottom of |
|
| 75 | - * the admin section. The forms are arranged in ascending order of the |
|
| 76 | - * priority values. It is required to return a value between 0 and 100. |
|
| 77 | - * |
|
| 78 | - * E.g.: 70 |
|
| 79 | - */ |
|
| 80 | - public function getPriority() { |
|
| 81 | - return 20; |
|
| 82 | - } |
|
| 73 | + /** |
|
| 74 | + * @return int whether the form should be rather on the top or bottom of |
|
| 75 | + * the admin section. The forms are arranged in ascending order of the |
|
| 76 | + * priority values. It is required to return a value between 0 and 100. |
|
| 77 | + * |
|
| 78 | + * E.g.: 70 |
|
| 79 | + */ |
|
| 80 | + public function getPriority() { |
|
| 81 | + return 20; |
|
| 82 | + } |
|
| 83 | 83 | |
| 84 | 84 | } |
@@ -35,161 +35,161 @@ |
||
| 35 | 35 | */ |
| 36 | 36 | interface IEncryptionModule { |
| 37 | 37 | |
| 38 | - /** |
|
| 39 | - * @return string defining the technical unique id |
|
| 40 | - * @since 8.1.0 |
|
| 41 | - */ |
|
| 42 | - public function getId(); |
|
| 43 | - |
|
| 44 | - /** |
|
| 45 | - * In comparison to getKey() this function returns a human readable (maybe translated) name |
|
| 46 | - * |
|
| 47 | - * @return string |
|
| 48 | - * @since 8.1.0 |
|
| 49 | - */ |
|
| 50 | - public function getDisplayName(); |
|
| 51 | - |
|
| 52 | - /** |
|
| 53 | - * start receiving chunks from a file. This is the place where you can |
|
| 54 | - * perform some initial step before starting encrypting/decrypting the |
|
| 55 | - * chunks |
|
| 56 | - * |
|
| 57 | - * @param string $path to the file |
|
| 58 | - * @param string $user who read/write the file (null for public access) |
|
| 59 | - * @param string $mode php stream open mode |
|
| 60 | - * @param array $header contains the header data read from the file |
|
| 61 | - * @param array $accessList who has access to the file contains the key 'users' and 'public' |
|
| 62 | - * |
|
| 63 | - * $return array $header contain data as key-value pairs which should be |
|
| 64 | - * written to the header, in case of a write operation |
|
| 65 | - * or if no additional data is needed return a empty array |
|
| 66 | - * @since 8.1.0 |
|
| 67 | - */ |
|
| 68 | - public function begin($path, $user, $mode, array $header, array $accessList); |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * last chunk received. This is the place where you can perform some final |
|
| 72 | - * operation and return some remaining data if something is left in your |
|
| 73 | - * buffer. |
|
| 74 | - * |
|
| 75 | - * @param string $path to the file |
|
| 76 | - * @param string $position id of the last block (looks like "<Number>end") |
|
| 77 | - * |
|
| 78 | - * @return string remained data which should be written to the file in case |
|
| 79 | - * of a write operation |
|
| 80 | - * |
|
| 81 | - * @since 8.1.0 |
|
| 82 | - * @since 9.0.0 parameter $position added |
|
| 83 | - */ |
|
| 84 | - public function end($path, $position); |
|
| 85 | - |
|
| 86 | - /** |
|
| 87 | - * encrypt data |
|
| 88 | - * |
|
| 89 | - * @param string $data you want to encrypt |
|
| 90 | - * @param string $position position of the block we want to encrypt (starts with '0') |
|
| 91 | - * |
|
| 92 | - * @return mixed encrypted data |
|
| 93 | - * |
|
| 94 | - * @since 8.1.0 |
|
| 95 | - * @since 9.0.0 parameter $position added |
|
| 96 | - */ |
|
| 97 | - public function encrypt($data, $position); |
|
| 98 | - |
|
| 99 | - /** |
|
| 100 | - * decrypt data |
|
| 101 | - * |
|
| 102 | - * @param string $data you want to decrypt |
|
| 103 | - * @param string $position position of the block we want to decrypt |
|
| 104 | - * |
|
| 105 | - * @return mixed decrypted data |
|
| 106 | - * |
|
| 107 | - * @since 8.1.0 |
|
| 108 | - * @since 9.0.0 parameter $position added |
|
| 109 | - */ |
|
| 110 | - public function decrypt($data, $position); |
|
| 111 | - |
|
| 112 | - /** |
|
| 113 | - * update encrypted file, e.g. give additional users access to the file |
|
| 114 | - * |
|
| 115 | - * @param string $path path to the file which should be updated |
|
| 116 | - * @param string $uid of the user who performs the operation |
|
| 117 | - * @param array $accessList who has access to the file contains the key 'users' and 'public' |
|
| 118 | - * @return boolean |
|
| 119 | - * @since 8.1.0 |
|
| 120 | - */ |
|
| 121 | - public function update($path, $uid, array $accessList); |
|
| 122 | - |
|
| 123 | - /** |
|
| 124 | - * should the file be encrypted or not |
|
| 125 | - * |
|
| 126 | - * @param string $path |
|
| 127 | - * @return boolean |
|
| 128 | - * @since 8.1.0 |
|
| 129 | - */ |
|
| 130 | - public function shouldEncrypt($path); |
|
| 131 | - |
|
| 132 | - /** |
|
| 133 | - * get size of the unencrypted payload per block. |
|
| 134 | - * ownCloud read/write files with a block size of 8192 byte |
|
| 135 | - * |
|
| 136 | - * @param bool $signed |
|
| 137 | - * @return int |
|
| 138 | - * @since 8.1.0 optional parameter $signed was added in 9.0.0 |
|
| 139 | - */ |
|
| 140 | - public function getUnencryptedBlockSize($signed = false); |
|
| 141 | - |
|
| 142 | - /** |
|
| 143 | - * check if the encryption module is able to read the file, |
|
| 144 | - * e.g. if all encryption keys exists |
|
| 145 | - * |
|
| 146 | - * @param string $path |
|
| 147 | - * @param string $uid user for whom we want to check if he can read the file |
|
| 148 | - * @return boolean |
|
| 149 | - * @since 8.1.0 |
|
| 150 | - */ |
|
| 151 | - public function isReadable($path, $uid); |
|
| 152 | - |
|
| 153 | - /** |
|
| 154 | - * Initial encryption of all files |
|
| 155 | - * |
|
| 156 | - * @param InputInterface $input |
|
| 157 | - * @param OutputInterface $output write some status information to the terminal during encryption |
|
| 158 | - * @since 8.2.0 |
|
| 159 | - */ |
|
| 160 | - public function encryptAll(InputInterface $input, OutputInterface $output); |
|
| 161 | - |
|
| 162 | - /** |
|
| 163 | - * prepare encryption module to decrypt all files |
|
| 164 | - * |
|
| 165 | - * @param InputInterface $input |
|
| 166 | - * @param OutputInterface $output write some status information to the terminal during encryption |
|
| 167 | - * @param $user (optional) for which the files should be decrypted, default = all users |
|
| 168 | - * @return bool return false on failure or if it isn't supported by the module |
|
| 169 | - * @since 8.2.0 |
|
| 170 | - */ |
|
| 171 | - public function prepareDecryptAll(InputInterface $input, OutputInterface $output, $user = ''); |
|
| 172 | - |
|
| 173 | - /** |
|
| 174 | - * Check if the module is ready to be used by that specific user. |
|
| 175 | - * In case a module is not ready - because e.g. key pairs have not been generated |
|
| 176 | - * upon login this method can return false before any operation starts and might |
|
| 177 | - * cause issues during operations. |
|
| 178 | - * |
|
| 179 | - * @param string $user |
|
| 180 | - * @return boolean |
|
| 181 | - * @since 9.1.0 |
|
| 182 | - */ |
|
| 183 | - public function isReadyForUser($user); |
|
| 184 | - |
|
| 185 | - /** |
|
| 186 | - * Does the encryption module needs a detailed list of users with access to the file? |
|
| 187 | - * For example if the encryption module uses per-user encryption keys and needs to know |
|
| 188 | - * the users with access to the file to encrypt/decrypt it. |
|
| 189 | - * |
|
| 190 | - * @since 13.0.0 |
|
| 191 | - * @return bool |
|
| 192 | - */ |
|
| 193 | - public function needDetailedAccessList(); |
|
| 38 | + /** |
|
| 39 | + * @return string defining the technical unique id |
|
| 40 | + * @since 8.1.0 |
|
| 41 | + */ |
|
| 42 | + public function getId(); |
|
| 43 | + |
|
| 44 | + /** |
|
| 45 | + * In comparison to getKey() this function returns a human readable (maybe translated) name |
|
| 46 | + * |
|
| 47 | + * @return string |
|
| 48 | + * @since 8.1.0 |
|
| 49 | + */ |
|
| 50 | + public function getDisplayName(); |
|
| 51 | + |
|
| 52 | + /** |
|
| 53 | + * start receiving chunks from a file. This is the place where you can |
|
| 54 | + * perform some initial step before starting encrypting/decrypting the |
|
| 55 | + * chunks |
|
| 56 | + * |
|
| 57 | + * @param string $path to the file |
|
| 58 | + * @param string $user who read/write the file (null for public access) |
|
| 59 | + * @param string $mode php stream open mode |
|
| 60 | + * @param array $header contains the header data read from the file |
|
| 61 | + * @param array $accessList who has access to the file contains the key 'users' and 'public' |
|
| 62 | + * |
|
| 63 | + * $return array $header contain data as key-value pairs which should be |
|
| 64 | + * written to the header, in case of a write operation |
|
| 65 | + * or if no additional data is needed return a empty array |
|
| 66 | + * @since 8.1.0 |
|
| 67 | + */ |
|
| 68 | + public function begin($path, $user, $mode, array $header, array $accessList); |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * last chunk received. This is the place where you can perform some final |
|
| 72 | + * operation and return some remaining data if something is left in your |
|
| 73 | + * buffer. |
|
| 74 | + * |
|
| 75 | + * @param string $path to the file |
|
| 76 | + * @param string $position id of the last block (looks like "<Number>end") |
|
| 77 | + * |
|
| 78 | + * @return string remained data which should be written to the file in case |
|
| 79 | + * of a write operation |
|
| 80 | + * |
|
| 81 | + * @since 8.1.0 |
|
| 82 | + * @since 9.0.0 parameter $position added |
|
| 83 | + */ |
|
| 84 | + public function end($path, $position); |
|
| 85 | + |
|
| 86 | + /** |
|
| 87 | + * encrypt data |
|
| 88 | + * |
|
| 89 | + * @param string $data you want to encrypt |
|
| 90 | + * @param string $position position of the block we want to encrypt (starts with '0') |
|
| 91 | + * |
|
| 92 | + * @return mixed encrypted data |
|
| 93 | + * |
|
| 94 | + * @since 8.1.0 |
|
| 95 | + * @since 9.0.0 parameter $position added |
|
| 96 | + */ |
|
| 97 | + public function encrypt($data, $position); |
|
| 98 | + |
|
| 99 | + /** |
|
| 100 | + * decrypt data |
|
| 101 | + * |
|
| 102 | + * @param string $data you want to decrypt |
|
| 103 | + * @param string $position position of the block we want to decrypt |
|
| 104 | + * |
|
| 105 | + * @return mixed decrypted data |
|
| 106 | + * |
|
| 107 | + * @since 8.1.0 |
|
| 108 | + * @since 9.0.0 parameter $position added |
|
| 109 | + */ |
|
| 110 | + public function decrypt($data, $position); |
|
| 111 | + |
|
| 112 | + /** |
|
| 113 | + * update encrypted file, e.g. give additional users access to the file |
|
| 114 | + * |
|
| 115 | + * @param string $path path to the file which should be updated |
|
| 116 | + * @param string $uid of the user who performs the operation |
|
| 117 | + * @param array $accessList who has access to the file contains the key 'users' and 'public' |
|
| 118 | + * @return boolean |
|
| 119 | + * @since 8.1.0 |
|
| 120 | + */ |
|
| 121 | + public function update($path, $uid, array $accessList); |
|
| 122 | + |
|
| 123 | + /** |
|
| 124 | + * should the file be encrypted or not |
|
| 125 | + * |
|
| 126 | + * @param string $path |
|
| 127 | + * @return boolean |
|
| 128 | + * @since 8.1.0 |
|
| 129 | + */ |
|
| 130 | + public function shouldEncrypt($path); |
|
| 131 | + |
|
| 132 | + /** |
|
| 133 | + * get size of the unencrypted payload per block. |
|
| 134 | + * ownCloud read/write files with a block size of 8192 byte |
|
| 135 | + * |
|
| 136 | + * @param bool $signed |
|
| 137 | + * @return int |
|
| 138 | + * @since 8.1.0 optional parameter $signed was added in 9.0.0 |
|
| 139 | + */ |
|
| 140 | + public function getUnencryptedBlockSize($signed = false); |
|
| 141 | + |
|
| 142 | + /** |
|
| 143 | + * check if the encryption module is able to read the file, |
|
| 144 | + * e.g. if all encryption keys exists |
|
| 145 | + * |
|
| 146 | + * @param string $path |
|
| 147 | + * @param string $uid user for whom we want to check if he can read the file |
|
| 148 | + * @return boolean |
|
| 149 | + * @since 8.1.0 |
|
| 150 | + */ |
|
| 151 | + public function isReadable($path, $uid); |
|
| 152 | + |
|
| 153 | + /** |
|
| 154 | + * Initial encryption of all files |
|
| 155 | + * |
|
| 156 | + * @param InputInterface $input |
|
| 157 | + * @param OutputInterface $output write some status information to the terminal during encryption |
|
| 158 | + * @since 8.2.0 |
|
| 159 | + */ |
|
| 160 | + public function encryptAll(InputInterface $input, OutputInterface $output); |
|
| 161 | + |
|
| 162 | + /** |
|
| 163 | + * prepare encryption module to decrypt all files |
|
| 164 | + * |
|
| 165 | + * @param InputInterface $input |
|
| 166 | + * @param OutputInterface $output write some status information to the terminal during encryption |
|
| 167 | + * @param $user (optional) for which the files should be decrypted, default = all users |
|
| 168 | + * @return bool return false on failure or if it isn't supported by the module |
|
| 169 | + * @since 8.2.0 |
|
| 170 | + */ |
|
| 171 | + public function prepareDecryptAll(InputInterface $input, OutputInterface $output, $user = ''); |
|
| 172 | + |
|
| 173 | + /** |
|
| 174 | + * Check if the module is ready to be used by that specific user. |
|
| 175 | + * In case a module is not ready - because e.g. key pairs have not been generated |
|
| 176 | + * upon login this method can return false before any operation starts and might |
|
| 177 | + * cause issues during operations. |
|
| 178 | + * |
|
| 179 | + * @param string $user |
|
| 180 | + * @return boolean |
|
| 181 | + * @since 9.1.0 |
|
| 182 | + */ |
|
| 183 | + public function isReadyForUser($user); |
|
| 184 | + |
|
| 185 | + /** |
|
| 186 | + * Does the encryption module needs a detailed list of users with access to the file? |
|
| 187 | + * For example if the encryption module uses per-user encryption keys and needs to know |
|
| 188 | + * the users with access to the file to encrypt/decrypt it. |
|
| 189 | + * |
|
| 190 | + * @since 13.0.0 |
|
| 191 | + * @return bool |
|
| 192 | + */ |
|
| 193 | + public function needDetailedAccessList(); |
|
| 194 | 194 | |
| 195 | 195 | } |
@@ -9,10 +9,13 @@ discard block |
||
| 9 | 9 | <h3><?php p($l->t("Default encryption module")); ?></h3> |
| 10 | 10 | <?php if(!$_["initStatus"] && $_['masterKeyEnabled'] === false): ?> |
| 11 | 11 | <?php p($l->t("Encryption app is enabled but your keys are not initialized, please log-out and log-in again")); ?> |
| 12 | - <?php else: ?> |
|
| 12 | + <?php else { |
|
| 13 | + : ?> |
|
| 13 | 14 | <p id="encryptHomeStorageSetting"> |
| 14 | 15 | <input type="checkbox" class="checkbox" name="encrypt_home_storage" id="encryptHomeStorage" |
| 15 | - value="1" <?php if ($_['encryptHomeStorage']) print_unescaped('checked="checked"'); ?> /> |
|
| 16 | + value="1" <?php if ($_['encryptHomeStorage']) print_unescaped('checked="checked"'); |
|
| 17 | +} |
|
| 18 | +?> /> |
|
| 16 | 19 | <label for="encryptHomeStorage"><?php p($l->t('Encrypt the home storage'));?></label></br> |
| 17 | 20 | <em><?php p( $l->t( "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" ) ); ?></em> |
| 18 | 21 | </p> |
@@ -42,7 +45,10 @@ discard block |
||
| 42 | 45 | </p> |
| 43 | 46 | <br/><br/> |
| 44 | 47 | |
| 45 | - <p name="changeRecoveryPasswordBlock" id="encryptionChangeRecoveryKey" <?php if($_['recoveryEnabled'] === '0') print_unescaped('class="hidden"');?>> |
|
| 48 | + <p name="changeRecoveryPasswordBlock" id="encryptionChangeRecoveryKey" <?php if($_['recoveryEnabled'] === '0') { |
|
| 49 | + print_unescaped('class="hidden"'); |
|
| 50 | +} |
|
| 51 | +?>> |
|
| 46 | 52 | <?php p($l->t("Change recovery key password:")); ?> |
| 47 | 53 | <span class="msg"></span> |
| 48 | 54 | <br/> |
@@ -7,17 +7,17 @@ discard block |
||
| 7 | 7 | ?> |
| 8 | 8 | <form id="ocDefaultEncryptionModule" class="sub-section"> |
| 9 | 9 | <h3><?php p($l->t("Default encryption module")); ?></h3> |
| 10 | - <?php if(!$_["initStatus"] && $_['masterKeyEnabled'] === false): ?> |
|
| 10 | + <?php if (!$_["initStatus"] && $_['masterKeyEnabled'] === false): ?> |
|
| 11 | 11 | <?php p($l->t("Encryption app is enabled but your keys are not initialized, please log-out and log-in again")); ?> |
| 12 | 12 | <?php else: ?> |
| 13 | 13 | <p id="encryptHomeStorageSetting"> |
| 14 | 14 | <input type="checkbox" class="checkbox" name="encrypt_home_storage" id="encryptHomeStorage" |
| 15 | 15 | value="1" <?php if ($_['encryptHomeStorage']) print_unescaped('checked="checked"'); ?> /> |
| 16 | - <label for="encryptHomeStorage"><?php p($l->t('Encrypt the home storage'));?></label></br> |
|
| 17 | - <em><?php p( $l->t( "Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted" ) ); ?></em> |
|
| 16 | + <label for="encryptHomeStorage"><?php p($l->t('Encrypt the home storage')); ?></label></br> |
|
| 17 | + <em><?php p($l->t("Enabling this option encrypts all files stored on the main storage, otherwise only files on external storage will be encrypted")); ?></em> |
|
| 18 | 18 | </p> |
| 19 | 19 | <br /> |
| 20 | - <?php if($_['masterKeyEnabled'] === false): ?> |
|
| 20 | + <?php if ($_['masterKeyEnabled'] === false): ?> |
|
| 21 | 21 | <p id="encryptionSetRecoveryKey"> |
| 22 | 22 | <?php $_["recoveryEnabled"] === '0' ? p($l->t("Enable recovery key")) : p($l->t("Disable recovery key")); ?> |
| 23 | 23 | <span class="msg"></span> |
@@ -42,7 +42,7 @@ discard block |
||
| 42 | 42 | </p> |
| 43 | 43 | <br/><br/> |
| 44 | 44 | |
| 45 | - <p name="changeRecoveryPasswordBlock" id="encryptionChangeRecoveryKey" <?php if($_['recoveryEnabled'] === '0') print_unescaped('class="hidden"');?>> |
|
| 45 | + <p name="changeRecoveryPasswordBlock" id="encryptionChangeRecoveryKey" <?php if ($_['recoveryEnabled'] === '0') print_unescaped('class="hidden"'); ?>> |
|
| 46 | 46 | <?php p($l->t("Change recovery key password:")); ?> |
| 47 | 47 | <span class="msg"></span> |
| 48 | 48 | <br/> |
@@ -35,43 +35,43 @@ |
||
| 35 | 35 | class SetMasterKeyStatus implements IRepairStep { |
| 36 | 36 | |
| 37 | 37 | |
| 38 | - /** @var IConfig */ |
|
| 39 | - private $config; |
|
| 38 | + /** @var IConfig */ |
|
| 39 | + private $config; |
|
| 40 | 40 | |
| 41 | 41 | |
| 42 | - public function __construct(IConfig $config) { |
|
| 43 | - $this->config = $config; |
|
| 44 | - } |
|
| 42 | + public function __construct(IConfig $config) { |
|
| 43 | + $this->config = $config; |
|
| 44 | + } |
|
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * Returns the step's name |
|
| 48 | - * |
|
| 49 | - * @return string |
|
| 50 | - * @since 9.1.0 |
|
| 51 | - */ |
|
| 52 | - public function getName() { |
|
| 53 | - return 'Write default encryption module configuration to the database'; |
|
| 54 | - } |
|
| 46 | + /** |
|
| 47 | + * Returns the step's name |
|
| 48 | + * |
|
| 49 | + * @return string |
|
| 50 | + * @since 9.1.0 |
|
| 51 | + */ |
|
| 52 | + public function getName() { |
|
| 53 | + return 'Write default encryption module configuration to the database'; |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | - /** |
|
| 57 | - * @param IOutput $output |
|
| 58 | - */ |
|
| 59 | - public function run(IOutput $output) { |
|
| 60 | - if (!$this->shouldRun()) { |
|
| 61 | - return; |
|
| 62 | - } |
|
| 56 | + /** |
|
| 57 | + * @param IOutput $output |
|
| 58 | + */ |
|
| 59 | + public function run(IOutput $output) { |
|
| 60 | + if (!$this->shouldRun()) { |
|
| 61 | + return; |
|
| 62 | + } |
|
| 63 | 63 | |
| 64 | - // if no config for the master key is set we set it explicitly to '0' in |
|
| 65 | - // order not to break old installations because the default changed to '1'. |
|
| 66 | - $configAlreadySet = $this->config->getAppValue('encryption', 'useMasterKey', false); |
|
| 67 | - if ($configAlreadySet === false) { |
|
| 68 | - $this->config->setAppValue('encryption', 'useMasterKey', '0'); |
|
| 69 | - } |
|
| 70 | - } |
|
| 64 | + // if no config for the master key is set we set it explicitly to '0' in |
|
| 65 | + // order not to break old installations because the default changed to '1'. |
|
| 66 | + $configAlreadySet = $this->config->getAppValue('encryption', 'useMasterKey', false); |
|
| 67 | + if ($configAlreadySet === false) { |
|
| 68 | + $this->config->setAppValue('encryption', 'useMasterKey', '0'); |
|
| 69 | + } |
|
| 70 | + } |
|
| 71 | 71 | |
| 72 | - protected function shouldRun() { |
|
| 73 | - $appVersion = $this->config->getAppValue('encryption', 'installed_version', '0.0.0'); |
|
| 74 | - return version_compare($appVersion, '2.0.0', '<'); |
|
| 75 | - } |
|
| 72 | + protected function shouldRun() { |
|
| 73 | + $appVersion = $this->config->getAppValue('encryption', 'installed_version', '0.0.0'); |
|
| 74 | + return version_compare($appVersion, '2.0.0', '<'); |
|
| 75 | + } |
|
| 76 | 76 | |
| 77 | 77 | } |