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

github.com/nextcloud/twofactor_totp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2017-01-09 19:20:36 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2017-01-09 20:46:52 +0300
commit290994a0cb2105f8f22be2a16796a538dfa7f0cd (patch)
tree1a08c259e5901d64940e42b3c9ac13ed02df36f3 /lib/Provider/TotpProvider.php
parent7a6f264a02f53d7ca7bd9707859e415d129b0937 (diff)
fix DI
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Provider/TotpProvider.php')
-rw-r--r--lib/Provider/TotpProvider.php128
1 files changed, 64 insertions, 64 deletions
diff --git a/lib/Provider/TotpProvider.php b/lib/Provider/TotpProvider.php
index e4e85f6..30c3377 100644
--- a/lib/Provider/TotpProvider.php
+++ b/lib/Provider/TotpProvider.php
@@ -29,77 +29,77 @@ use OCP\Template;
class TotpProvider implements IProvider {
- /** @var ITotp */
- private $totp;
+ /** @var ITotp */
+ private $totp;
- /** @var IL10N */
- private $l10n;
+ /** @var IL10N */
+ private $l10n;
- /**
- * @param Totp $totp
- * @param IL10N $l10n
- */
- public function __construct(ITotp $totp, IL10N $l10n) {
- $this->totp = $totp;
- $this->l10n = $l10n;
- }
+ /**
+ * @param ITotp $totp
+ * @param IL10N $l10n
+ */
+ public function __construct(ITotp $totp, IL10N $l10n) {
+ $this->totp = $totp;
+ $this->l10n = $l10n;
+ }
- /**
- * Get unique identifier of this 2FA provider
- *
- * @return string
- */
- public function getId() {
- return 'totp';
- }
+ /**
+ * Get unique identifier of this 2FA provider
+ *
+ * @return string
+ */
+ public function getId() {
+ return 'totp';
+ }
- /**
- * Get the display name for selecting the 2FA provider
- *
- * @return string
- */
- public function getDisplayName() {
- return 'TOTP (Google Authenticator)';
- }
+ /**
+ * Get the display name for selecting the 2FA provider
+ *
+ * @return string
+ */
+ public function getDisplayName() {
+ return 'TOTP (Google Authenticator)';
+ }
- /**
- * Get the description for selecting the 2FA provider
- *
- * @return string
- */
- public function getDescription() {
- return $this->l10n->t('Authenticate with a TOTP app');
- }
+ /**
+ * Get the description for selecting the 2FA provider
+ *
+ * @return string
+ */
+ public function getDescription() {
+ return $this->l10n->t('Authenticate with a TOTP app');
+ }
- /**
- * Get the template for rending the 2FA provider view
- *
- * @param IUser $user
- * @return Template
- */
- public function getTemplate(IUser $user) {
- $tmpl = new Template('twofactor_totp', 'challenge');
- return $tmpl;
- }
+ /**
+ * Get the template for rending the 2FA provider view
+ *
+ * @param IUser $user
+ * @return Template
+ */
+ public function getTemplate(IUser $user) {
+ $tmpl = new Template('twofactor_totp', 'challenge');
+ return $tmpl;
+ }
- /**
- * Verify the given challenge
- *
- * @param IUser $user
- * @param string $challenge
- */
- public function verifyChallenge(IUser $user, $challenge) {
- return $this->totp->validateSecret($user, $challenge);
- }
+ /**
+ * Verify the given challenge
+ *
+ * @param IUser $user
+ * @param string $challenge
+ */
+ public function verifyChallenge(IUser $user, $challenge) {
+ return $this->totp->validateSecret($user, $challenge);
+ }
- /**
- * Decides whether 2FA is enabled for the given user
- *
- * @param IUser $user
- * @return boolean
- */
- public function isTwoFactorAuthEnabledForUser(IUser $user) {
- return $this->totp->hasSecret($user);
- }
+ /**
+ * Decides whether 2FA is enabled for the given user
+ *
+ * @param IUser $user
+ * @return boolean
+ */
+ public function isTwoFactorAuthEnabledForUser(IUser $user) {
+ return $this->totp->hasSecret($user);
+ }
}