Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/twofactor_gateway.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2018-08-22 11:21:36 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2018-08-22 11:21:36 +0300
commit743c69e9a9dad819445020c96c1b8fc0102a3d6e (patch)
tree9259008ea7cbe3ea28d0e0d724277f9e2971f308 /lib/Provider/AProvider.php
parentc15e1e879e9854c5feaae71a8681878a099ed408 (diff)
Split settings to work with all three gateway types independently
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Provider/AProvider.php')
-rw-r--r--lib/Provider/AProvider.php11
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/Provider/AProvider.php b/lib/Provider/AProvider.php
index a69cb75..628e63e 100644
--- a/lib/Provider/AProvider.php
+++ b/lib/Provider/AProvider.php
@@ -23,6 +23,7 @@ declare(strict_types=1);
namespace OCA\TwoFactorGateway\Provider;
+use OCA\TwoFactorGateway\PhoneNumberMask;
use OCA\TwoFactorGateway\Service\Gateway\IGateway;
use OCA\TwoFactorGateway\Service\StateStorage;
use OCP\Authentication\TwoFactorAuth\IProvider;
@@ -40,7 +41,7 @@ abstract class AProvider implements IProvider {
const STATE_ENABLED = 3;
/** @var string */
- protected $gatewayId;
+ protected $gatewayName;
/** @var IGateway */
protected $gateway;
@@ -68,7 +69,7 @@ abstract class AProvider implements IProvider {
ISecureRandom $secureRandom,
IL10N $l10n) {
$this->gateway = $gateway;
- $this->gatewayId = $gatewayId;
+ $this->gatewayName = $gatewayId;
$this->stateStorage = $stateStorage;
$this->session = $session;
$this->secureRandom = $secureRandom;
@@ -79,7 +80,7 @@ abstract class AProvider implements IProvider {
* Get unique identifier of this 2FA provider
*/
public function getId(): string {
- return "gateway_$this->gatewayId";
+ return "gateway_$this->gatewayName";
}
private function getSecret(): string {
@@ -100,7 +101,7 @@ abstract class AProvider implements IProvider {
$secret = $this->getSecret();
try {
- $identifier = $this->stateStorage->get($user)->getIdentifier();
+ $identifier = $this->stateStorage->get($user, $this->gatewayName)->getIdentifier();
$this->gateway->send(
$user,
$identifier,
@@ -135,7 +136,7 @@ abstract class AProvider implements IProvider {
* Decides whether 2FA is enabled for the given user
*/
public function isTwoFactorAuthEnabledForUser(IUser $user): bool {
- return $this->stateStorage->get($user)->getState() === self::STATE_ENABLED;
+ return $this->stateStorage->get($user, $this->gatewayName)->getState() === self::STATE_ENABLED;
}
}