diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2018-10-04 08:07:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-04 08:07:32 +0200 |
commit | 06303608355ea01b5675aa9220e35da1bc7ee1bf (patch) | |
tree | a44a7083a31511927a4767cfc822cf606394291b /lib | |
parent | 3c42510f02f7fc7d7261122c3c2c03d1e61797a4 (diff) | |
parent | cdb3ffb2933326771fd4e09c73688937d238e9a3 (diff) | |
download | nextcloud-server-06303608355ea01b5675aa9220e35da1bc7ee1bf.tar.gz nextcloud-server-06303608355ea01b5675aa9220e35da1bc7ee1bf.zip |
Merge pull request #11604 from nextcloud/remove-unused-code
Remove unused code in legacy classes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/legacy/json.php | 19 | ||||
-rw-r--r-- | lib/private/legacy/util.php | 85 |
2 files changed, 24 insertions, 80 deletions
diff --git a/lib/private/legacy/json.php b/lib/private/legacy/json.php index 9588834e934..4e98d6105e7 100644 --- a/lib/private/legacy/json.php +++ b/lib/private/legacy/json.php @@ -100,25 +100,6 @@ class OC_JSON{ } /** - * Check if the user is a subadmin, send json error msg if not - * @deprecated Use annotation based ACLs from the AppFramework instead - * @suppress PhanDeprecatedFunction - */ - public static function checkSubAdminUser() { - $userObject = \OC::$server->getUserSession()->getUser(); - $isSubAdmin = false; - if($userObject !== null) { - $isSubAdmin = \OC::$server->getGroupManager()->getSubAdmin()->isSubAdmin($userObject); - } - - if(!$isSubAdmin) { - $l = \OC::$server->getL10N('lib'); - self::error(array( 'data' => array( 'message' => $l->t('Authentication error'), 'error' => 'authentication_error' ))); - exit(); - } - } - - /** * Send json error msg * @deprecated Use a AppFramework JSONResponse instead * @suppress PhanDeprecatedFunction diff --git a/lib/private/legacy/util.php b/lib/private/legacy/util.php index 7916a13179a..1f3019f65dd 100644 --- a/lib/private/legacy/util.php +++ b/lib/private/legacy/util.php @@ -848,44 +848,36 @@ class OC_Util { $invalidIniSettings = []; $moduleHint = $l->t('Please ask your server administrator to install the module.'); - /** - * FIXME: The dependency check does not work properly on HHVM on the moment - * and prevents installation. Once HHVM is more compatible with our - * approach to check for these values we should re-enable those - * checks. - */ $iniWrapper = \OC::$server->getIniWrapper(); - if (!self::runningOnHhvm()) { - foreach ($dependencies['classes'] as $class => $module) { - if (!class_exists($class)) { - $missingDependencies[] = $module; - } + foreach ($dependencies['classes'] as $class => $module) { + if (!class_exists($class)) { + $missingDependencies[] = $module; } - foreach ($dependencies['functions'] as $function => $module) { - if (!function_exists($function)) { - $missingDependencies[] = $module; - } + } + foreach ($dependencies['functions'] as $function => $module) { + if (!function_exists($function)) { + $missingDependencies[] = $module; } - foreach ($dependencies['defined'] as $defined => $module) { - if (!defined($defined)) { - $missingDependencies[] = $module; - } + } + foreach ($dependencies['defined'] as $defined => $module) { + if (!defined($defined)) { + $missingDependencies[] = $module; } - foreach ($dependencies['ini'] as $setting => $expected) { - if (is_bool($expected)) { - if ($iniWrapper->getBool($setting) !== $expected) { - $invalidIniSettings[] = [$setting, $expected]; - } + } + foreach ($dependencies['ini'] as $setting => $expected) { + if (is_bool($expected)) { + if ($iniWrapper->getBool($setting) !== $expected) { + $invalidIniSettings[] = [$setting, $expected]; } - if (is_int($expected)) { - if ($iniWrapper->getNumeric($setting) !== $expected) { - $invalidIniSettings[] = [$setting, $expected]; - } + } + if (is_int($expected)) { + if ($iniWrapper->getNumeric($setting) !== $expected) { + $invalidIniSettings[] = [$setting, $expected]; } - if (is_string($expected)) { - if (strtolower($iniWrapper->getString($setting)) !== strtolower($expected)) { - $invalidIniSettings[] = [$setting, $expected]; - } + } + if (is_string($expected)) { + if (strtolower($iniWrapper->getString($setting)) !== strtolower($expected)) { + $invalidIniSettings[] = [$setting, $expected]; } } } @@ -1086,26 +1078,6 @@ class OC_Util { } /** - * Check if the user is a subadmin, redirects to home if not - * - * @return null|boolean $groups where the current user is subadmin - */ - public static function checkSubAdminUser() { - OC_Util::checkLoggedIn(); - $userObject = \OC::$server->getUserSession()->getUser(); - $isSubAdmin = false; - if($userObject !== null) { - $isSubAdmin = \OC::$server->getGroupManager()->getSubAdmin()->isSubAdmin($userObject); - } - - if (!$isSubAdmin) { - header('Location: ' . \OCP\Util::linkToAbsolute('', 'index.php')); - exit(); - } - return true; - } - - /** * Returns the URL of the default page * based on the system configuration and * the apps visible for the current user @@ -1333,15 +1305,6 @@ class OC_Util { } /** - * Checks whether server is running on HHVM - * - * @return bool True if running on HHVM, false otherwise - */ - public static function runningOnHhvm() { - return defined('HHVM_VERSION'); - } - - /** * Handles the case that there may not be a theme, then check if a "default" * theme exists and take that one * |