summaryrefslogtreecommitdiffstats
path: root/apps/provisioning_api/lib
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2019-06-14 17:07:40 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2019-06-19 17:02:28 +0200
commit5b754a6353d31f0548860f1b17b7c9db0f2ee791 (patch)
tree0be6f0dc16dab6157703a23408a55e84675d3063 /apps/provisioning_api/lib
parentb25838e1572bddb55f512a3137b3651f9fa9d578 (diff)
downloadnextcloud-server-5b754a6353d31f0548860f1b17b7c9db0f2ee791.tar.gz
nextcloud-server-5b754a6353d31f0548860f1b17b7c9db0f2ee791.zip
extends Provisioning API with optional userid and required email
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Diffstat (limited to 'apps/provisioning_api/lib')
-rw-r--r--apps/provisioning_api/lib/Controller/UsersController.php26
1 files changed, 24 insertions, 2 deletions
diff --git a/apps/provisioning_api/lib/Controller/UsersController.php b/apps/provisioning_api/lib/Controller/UsersController.php
index b993188c97e..dfc9d188b5c 100644
--- a/apps/provisioning_api/lib/Controller/UsersController.php
+++ b/apps/provisioning_api/lib/Controller/UsersController.php
@@ -46,7 +46,6 @@ use OCP\IGroup;
use OCP\IGroupManager;
use OCP\ILogger;
use OCP\IRequest;
-use OCP\IUser;
use OCP\IUserManager;
use OCP\IUserSession;
use OCP\L10N\IFactory;
@@ -197,6 +196,21 @@ class UsersController extends AUserData {
}
/**
+ * @throws OCSException
+ */
+ private function createNewUserId(): string {
+ $attempts = 0;
+ do {
+ $uidCandidate = $this->secureRandom->generate(10, ISecureRandom::CHAR_HUMAN_READABLE);
+ if (!$this->userManager->userExists($uidCandidate)) {
+ return $uidCandidate;
+ }
+ $attempts++;
+ } while ($attempts < 10);
+ throw new OCSException('Could not create non-existing user id', 111);
+ }
+
+ /**
* @PasswordConfirmationRequired
* @NoAdminRequired
*
@@ -223,6 +237,10 @@ class UsersController extends AUserData {
$isAdmin = $this->groupManager->isAdmin($user->getUID());
$subAdminManager = $this->groupManager->getSubAdmin();
+ if(empty($userid) && (bool)$this->config->getAppValue('settings', 'newUser.generateUserID', false)) {
+ $userid = $this->createNewUserId();
+ }
+
if ($this->userManager->userExists($userid)) {
$this->logger->error('Failed addUser attempt: User already exists.', ['app' => 'ocs_api']);
throw new OCSException('User already exists', 102);
@@ -275,6 +293,10 @@ class UsersController extends AUserData {
$generatePasswordResetToken = true;
}
+ if ($email === '' && (bool)$this->config->getAppValue('settings', 'newUser.requireEmail', false)) {
+ throw new OCSException('Required email address was not provided', 110);
+ }
+
try {
$newUser = $this->userManager->createUser($userid, $password);
$this->logger->info('Successful addUser call with userid: ' . $userid, ['app' => 'ocs_api']);
@@ -315,7 +337,7 @@ class UsersController extends AUserData {
}
}
- return new DataResponse();
+ return new DataResponse(['UserID' => $userid]);
} catch (HintException $e ) {
$this->logger->logException($e, [