Starting with Nextcloud 14, the server knows the enabled/disabled state of 2fa providers. While it will query that information if it's unknown (on first use), it won't notice any changes. Thus, providers have to propagate that information themselves. Ref https://github.com/nextcloud/twofactor_totp/pull/263 Ref https://github.com/nextcloud/twofactor_u2f/pull/210 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>pull/10465/head
parent
b5c5faebfc
commit
f8fe7488a5
@ -0,0 +1,46 @@ |
||||
<?php |
||||
|
||||
declare(strict_types=1); |
||||
|
||||
/** |
||||
* @author Christoph Wurst <christoph@winzerhof-wurst.at> |
||||
* |
||||
* @license GNU AGPL version 3 or any later version |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU Affero General Public License as |
||||
* published by the Free Software Foundation, either version 3 of the |
||||
* License, or (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU Affero General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Affero General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
||||
|
||||
namespace OCA\TwoFactorBackupCodes\Event; |
||||
|
||||
use OCP\IUser; |
||||
use Symfony\Component\EventDispatcher\Event; |
||||
|
||||
class CodesGenerated extends Event { |
||||
|
||||
/** @var IUser */ |
||||
private $user; |
||||
|
||||
public function __construct(IUser $user) { |
||||
$this->user = $user; |
||||
} |
||||
|
||||
/** |
||||
* @return IUser |
||||
*/ |
||||
public function getUser(): IUser { |
||||
return $this->user; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,66 @@ |
||||
<?php |
||||
|
||||
declare(strict_types=1); |
||||
|
||||
/** |
||||
* @author Christoph Wurst <christoph@winzerhof-wurst.at> |
||||
* |
||||
* @license GNU AGPL version 3 or any later version |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU Affero General Public License as |
||||
* published by the Free Software Foundation, either version 3 of the |
||||
* License, or (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU Affero General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Affero General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
||||
|
||||
namespace OCA\TwoFactorBackupCodes\Listener; |
||||
|
||||
use BadMethodCallException; |
||||
use OCA\TwoFactorBackupCodes\Event\CodesGenerated; |
||||
use OCP\Activity\IManager; |
||||
use OCP\ILogger; |
||||
use Symfony\Component\EventDispatcher\Event; |
||||
|
||||
class ActivityPublisher implements IListener { |
||||
|
||||
/** @var IManager */ |
||||
private $activityManager; |
||||
|
||||
/** @var ILogger */ |
||||
private $logger; |
||||
|
||||
public function __construct(IManager $activityManager, ILogger $logger) { |
||||
$this->activityManager = $activityManager; |
||||
$this->logger = $logger; |
||||
} |
||||
|
||||
/** |
||||
* Push an event to the user's activity stream |
||||
*/ |
||||
public function handle(Event $event) { |
||||
if ($event instanceof CodesGenerated) { |
||||
$activity = $this->activityManager->generateEvent(); |
||||
$activity->setApp('twofactor_backupcodes') |
||||
->setType('security') |
||||
->setAuthor($event->getUser()->getUID()) |
||||
->setAffectedUser($event->getUser()->getUID()) |
||||
->setSubject('codes_generated'); |
||||
try { |
||||
$this->activityManager->publish($activity); |
||||
} catch (BadMethodCallException $e) { |
||||
$this->logger->warning('could not publish backup code creation activity', ['app' => 'twofactor_backupcodes']); |
||||
$this->logger->logException($e, ['app' => 'twofactor_backupcodes']); |
||||
} |
||||
} |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,33 @@ |
||||
<?php |
||||
|
||||
declare(strict_types=1); |
||||
|
||||
/** |
||||
* @author Christoph Wurst <christoph@winzerhof-wurst.at> |
||||
* |
||||
* @license GNU AGPL version 3 or any later version |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU Affero General Public License as |
||||
* published by the Free Software Foundation, either version 3 of the |
||||
* License, or (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU Affero General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Affero General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
||||
|
||||
namespace OCA\TwoFactorBackupCodes\Listener; |
||||
|
||||
use Symfony\Component\EventDispatcher\Event; |
||||
|
||||
interface IListener { |
||||
|
||||
public function handle(Event $event); |
||||
|
||||
} |
||||
@ -0,0 +1,50 @@ |
||||
<?php |
||||
|
||||
declare(strict_types=1); |
||||
|
||||
/** |
||||
* @author Christoph Wurst <christoph@winzerhof-wurst.at> |
||||
* |
||||
* @license GNU AGPL version 3 or any later version |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU Affero General Public License as |
||||
* published by the Free Software Foundation, either version 3 of the |
||||
* License, or (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU Affero General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Affero General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
||||
|
||||
namespace OCA\TwoFactorBackupCodes\Listener; |
||||
|
||||
use OCA\TwoFactorBackupCodes\Event\CodesGenerated; |
||||
use OCA\TwoFactorBackupCodes\Provider\BackupCodesProvider; |
||||
use OCP\Authentication\TwoFactorAuth\IRegistry; |
||||
use Symfony\Component\EventDispatcher\Event; |
||||
|
||||
class RegistryUpdater implements IListener { |
||||
|
||||
/** @var IRegistry */ |
||||
private $registry; |
||||
|
||||
/** @var BackupCodesProvider */ |
||||
private $provider; |
||||
|
||||
public function __construct(IRegistry $registry, BackupCodesProvider $provider) { |
||||
$this->registry = $registry; |
||||
$this->provider = $provider; |
||||
} |
||||
|
||||
public function handle(Event $event) { |
||||
if ($event instanceof CodesGenerated) { |
||||
$this->registry->enableProviderFor($this->provider, $event->getUser()); |
||||
} |
||||
} |
||||
} |
||||
@ -0,0 +1,40 @@ |
||||
<?php |
||||
|
||||
declare(strict_types=1); |
||||
|
||||
/** |
||||
* @author Christoph Wurst <christoph@winzerhof-wurst.at> |
||||
* |
||||
* @license GNU AGPL version 3 or any later version |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU Affero General Public License as |
||||
* published by the Free Software Foundation, either version 3 of the |
||||
* License, or (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU Affero General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Affero General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
||||
|
||||
namespace OCA\TwoFactorBackupCodes\Tests\Unit\Event; |
||||
|
||||
use OCA\TwoFactorBackupCodes\Event\CodesGenerated; |
||||
use OCP\IUser; |
||||
use Test\TestCase; |
||||
|
||||
class CodesGeneratedTest extends TestCase { |
||||
|
||||
public function testCodeGeneratedEvent() { |
||||
$user = $this->createMock(IUser::class); |
||||
|
||||
$event = new CodesGenerated($user); |
||||
|
||||
$this->assertSame($user, $event->getUser()); |
||||
} |
||||
} |
||||
@ -0,0 +1,97 @@ |
||||
<?php |
||||
|
||||
declare(strict_types=1); |
||||
|
||||
/** |
||||
* @author Christoph Wurst <christoph@winzerhof-wurst.at> |
||||
* |
||||
* @license GNU AGPL version 3 or any later version |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU Affero General Public License as |
||||
* published by the Free Software Foundation, either version 3 of the |
||||
* License, or (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU Affero General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Affero General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
||||
|
||||
namespace OCA\TwoFactorBackupCodes\Tests\Unit\Listener; |
||||
|
||||
use OCA\TwoFactorBackupCodes\Event\CodesGenerated; |
||||
use OCA\TwoFactorBackupCodes\Listener\ActivityPublisher; |
||||
use OCP\Activity\IEvent; |
||||
use OCP\Activity\IManager; |
||||
use OCP\ILogger; |
||||
use OCP\IUser; |
||||
use PHPUnit_Framework_MockObject_MockObject; |
||||
use Symfony\Component\EventDispatcher\Event; |
||||
use Test\TestCase; |
||||
|
||||
class ActivityPublisherTest extends TestCase { |
||||
|
||||
/** @var IManager|PHPUnit_Framework_MockObject_MockObject */ |
||||
private $activityManager; |
||||
|
||||
/** @var ILogger */ |
||||
|
||||
private $logger; |
||||
|
||||
/** @var ActivityPublisher */ |
||||
private $listener; |
||||
|
||||
protected function setUp() { |
||||
parent::setUp(); |
||||
|
||||
$this->activityManager = $this->createMock(IManager::class); |
||||
$this->logger = $this->createMock(ILogger::class); |
||||
|
||||
$this->listener = new ActivityPublisher($this->activityManager, $this->logger); |
||||
} |
||||
|
||||
public function testHandleGenericEvent() { |
||||
$event = $this->createMock(Event::class); |
||||
$this->activityManager->expects($this->never()) |
||||
->method('publish'); |
||||
|
||||
$this->listener->handle($event); |
||||
} |
||||
|
||||
public function testHandleCodesGeneratedEvent() { |
||||
$user = $this->createMock(IUser::class); |
||||
$user->method('getUID')->willReturn('fritz'); |
||||
$event = new CodesGenerated($user); |
||||
$activityEvent = $this->createMock(IEvent::class); |
||||
$this->activityManager->expects($this->once()) |
||||
->method('generateEvent') |
||||
->will($this->returnValue($activityEvent)); |
||||
$activityEvent->expects($this->once()) |
||||
->method('setApp') |
||||
->with('twofactor_backupcodes') |
||||
->will($this->returnSelf()); |
||||
$activityEvent->expects($this->once()) |
||||
->method('setType') |
||||
->with('security') |
||||
->will($this->returnSelf()); |
||||
$activityEvent->expects($this->once()) |
||||
->method('setAuthor') |
||||
->with('fritz') |
||||
->will($this->returnSelf()); |
||||
$activityEvent->expects($this->once()) |
||||
->method('setAffectedUser') |
||||
->with('fritz') |
||||
->will($this->returnSelf()); |
||||
$this->activityManager->expects($this->once()) |
||||
->method('publish') |
||||
->will($this->returnValue($activityEvent)); |
||||
|
||||
$this->listener->handle($event); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,75 @@ |
||||
<?php |
||||
|
||||
declare(strict_types=1); |
||||
|
||||
/** |
||||
* @author Christoph Wurst <christoph@winzerhof-wurst.at> |
||||
* |
||||
* @license GNU AGPL version 3 or any later version |
||||
* |
||||
* This program is free software: you can redistribute it and/or modify |
||||
* it under the terms of the GNU Affero General Public License as |
||||
* published by the Free Software Foundation, either version 3 of the |
||||
* License, or (at your option) any later version. |
||||
* |
||||
* This program is distributed in the hope that it will be useful, |
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU Affero General Public License for more details. |
||||
* |
||||
* You should have received a copy of the GNU Affero General Public License |
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
||||
* |
||||
*/ |
||||
|
||||
namespace OCA\TwoFactorBackupCodes\Tests\Unit\Listener; |
||||
|
||||
use OCA\TwoFactorBackupCodes\Event\CodesGenerated; |
||||
use OCA\TwoFactorBackupCodes\Listener\RegistryUpdater; |
||||
use OCA\TwoFactorBackupCodes\Provider\BackupCodesProvider; |
||||
use OCP\Authentication\TwoFactorAuth\IRegistry; |
||||
use OCP\IUser; |
||||
use Symfony\Component\EventDispatcher\Event; |
||||
use Test\TestCase; |
||||
|
||||
class RegistryUpdaterTest extends TestCase { |
||||
|
||||
/** @var IRegistry */ |
||||
private $registry; |
||||
|
||||
/** @var BackupCodesProvider */ |
||||
private $provider; |
||||
|
||||
/** @var RegistryUpdater */ |
||||
private $listener; |
||||
|
||||
protected function setUp() { |
||||
parent::setUp(); |
||||
|
||||
$this->registry = $this->createMock(IRegistry::class); |
||||
$this->provider = $this->createMock(BackupCodesProvider::class); |
||||
|
||||
$this->listener = new RegistryUpdater($this->registry, $this->provider); |
||||
} |
||||
|
||||
public function testHandleGenericEvent() { |
||||
$event = $this->createMock(Event::class); |
||||
$this->registry->expects($this->never()) |
||||
->method('enableProviderFor'); |
||||
|
||||
$this->listener->handle($event); |
||||
} |
||||
|
||||
public function testHandleCodesGeneratedEvent() { |
||||
$user = $this->createMock(IUser::class); |
||||
$event = new CodesGenerated($user); |
||||
$this->registry->expects($this->once()) |
||||
->method('enableProviderFor') |
||||
->with( |
||||
$this->provider, |
||||
$user |
||||
); |
||||
|
||||
$this->listener->handle($event); |
||||
} |
||||
} |
||||
Loading…
Reference in new issue