}, array{}> * @throws OCSException * * 200: Installed apps returned */ public function getApps(?string $filter = null): DataResponse { $apps = (new OC_App())->listAllApps(); /** @var list $list */ $list = []; foreach ($apps as $app) { $list[] = $app['id']; } if ($filter) { switch ($filter) { case 'enabled': return new DataResponse(['apps' => \OC_App::getEnabledApps()]); break; case 'disabled': $enabled = OC_App::getEnabledApps(); return new DataResponse(['apps' => array_values(array_diff($list, $enabled))]); break; default: // Invalid filter variable throw new OCSException('', 101); } } else { return new DataResponse(['apps' => $list]); } } /** * Get the app info for an app * * @param string $app ID of the app * @return DataResponse, array{}> * @throws OCSException * * 200: App info returned */ public function getAppInfo(string $app): DataResponse { $info = $this->appManager->getAppInfo($app); if (!is_null($info)) { return new DataResponse($info); } throw new OCSException('The request app was not found', OCSController::RESPOND_NOT_FOUND); } /** * Enable an app * * @param string $app ID of the app * @return DataResponse, array{}> * @throws OCSException * * 200: App enabled successfully */ #[PasswordConfirmationRequired] public function enable(string $app): DataResponse { try { $this->appManager->enableApp($app); } catch (AppPathNotFoundException $e) { throw new OCSException('The request app was not found', OCSController::RESPOND_NOT_FOUND); } return new DataResponse(); } /** * Disable an app * * @param string $app ID of the app * @return DataResponse, array{}> * * 200: App disabled successfully */ #[PasswordConfirmationRequired] public function disable(string $app): DataResponse { $this->appManager->disableApp($app); return new DataResponse(); } }