nextcloud/settings/ajax/removeuser.php

27 lines
698 B
PHP
Raw Normal View History

2011-04-17 03:04:23 +04:00
<?php
2012-07-18 19:23:40 +04:00
OC_JSON::checkSubAdminUser();
2012-07-07 17:27:04 +04:00
OCP\JSON::callCheck();
2011-04-17 03:04:23 +04:00
$username = $_POST["username"];
2011-04-17 03:04:23 +04:00
// A user shouldn't be able to delete his own account
if(OC_User::getUser() === $username) {
exit;
}
if(!OC_User::isAdminUser(OC_User::getUser()) && !OC_SubAdmin::isUserAccessible(OC_User::getUser(), $username)) {
2012-07-19 18:35:14 +04:00
$l = OC_L10N::get('core');
OC_JSON::error(array( 'data' => array( 'message' => $l->t('Authentication error') )));
2012-07-19 18:35:14 +04:00
exit();
2012-07-18 19:23:40 +04:00
}
2011-04-17 03:04:23 +04:00
// Return Success story
if( OC_User::deleteUser( $username )) {
OC_JSON::success(array("data" => array( "username" => $username )));
2011-04-17 03:04:23 +04:00
}
else{
2013-06-12 11:40:13 +04:00
$l = OC_L10N::get('core');
OC_JSON::error(array("data" => array( "message" => $l->t("Unable to delete user") )));
2011-04-17 03:04:23 +04:00
}