shareManager = $shareManager; $this->l = $l; } /** * @param \OCP\AppFramework\Controller $controller * @param string $methodName * * @throws OCSNotFoundException */ public function beforeController($controller, $methodName) { if ($controller instanceof Share20OCS) { if (!$this->shareManager->shareApiEnabled()) { throw new OCSNotFoundException($this->l->t('Share API is disabled')); } } } /** * @param \OCP\AppFramework\Controller $controller * @param string $methodName * @param Response $response * @return Response */ public function afterController($controller, $methodName, Response $response) { if ($controller instanceof Share20OCS) { /** @var Share20OCS $controller */ $controller->cleanup(); } return $response; } }