diff options
author | Joas Schilling <coding@schilljs.com> | 2021-03-31 08:45:32 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-03-31 08:45:32 +0200 |
commit | 2f99ae1120f9fff544befbd4169660b817bb7227 (patch) | |
tree | 1f9b63b57583efeef1bc0b3f09c496d153ead22f /apps/provisioning_api | |
parent | b67ac4ec9bc0b8ab82765f11267e7c9cbd6988a6 (diff) | |
download | nextcloud-server-2f99ae1120f9fff544befbd4169660b817bb7227.tar.gz nextcloud-server-2f99ae1120f9fff544befbd4169660b817bb7227.zip |
Also check the default phone region when the number has no country code
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/provisioning_api')
-rw-r--r-- | apps/provisioning_api/lib/Controller/UsersController.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/apps/provisioning_api/lib/Controller/UsersController.php b/apps/provisioning_api/lib/Controller/UsersController.php index 0019472c884..5961a3cca05 100644 --- a/apps/provisioning_api/lib/Controller/UsersController.php +++ b/apps/provisioning_api/lib/Controller/UsersController.php @@ -234,6 +234,7 @@ class UsersController extends AUserData { /** @var IUser $user */ $user = $this->userSession->getUser(); $knownTo = $user->getUID(); + $defaultPhoneRegion = $this->config->getSystemValueString('default_phone_region'); $normalizedNumberToKey = []; foreach ($search as $key => $phoneNumbers) { @@ -246,6 +247,20 @@ class UsersController extends AUserData { } } catch (NumberParseException $e) { } + + if ($defaultPhoneRegion !== '' && $defaultPhoneRegion !== $location && strpos($phone, '0') === 0) { + // If the number has a leading zero (no country code), + // we also check the default phone region of the instance, + // when it's different to the user's given region. + try { + $phoneNumber = $phoneUtil->parse($phone, $defaultPhoneRegion); + if ($phoneNumber instanceof PhoneNumber && $phoneUtil->isValidNumber($phoneNumber)) { + $normalizedNumber = $phoneUtil->format($phoneNumber, PhoneNumberFormat::E164); + $normalizedNumberToKey[$normalizedNumber] = (string) $key; + } + } catch (NumberParseException $e) { + } + } } } |