summaryrefslogtreecommitdiff
path: root/classes/auth
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2012-09-03 22:32:24 +0400
committerAndrew Dolgov <[email protected]>2012-09-03 22:32:24 +0400
commit02cd6de12835fb470537b65d0b8adae925dd8bcb (patch)
tree28c76b47cceb84e7b6427feb59a8575cf68f6436 /classes/auth
parent4e70344bbf4d7e2d0a9e5a87c6c10973b519cafa (diff)
api: add workaround to disable OTP
Diffstat (limited to 'classes/auth')
-rw-r--r--classes/auth/internal.php74
1 files changed, 38 insertions, 36 deletions
diff --git a/classes/auth/internal.php b/classes/auth/internal.php
index da2d3668f..0254d60e0 100644
--- a/classes/auth/internal.php
+++ b/classes/auth/internal.php
@@ -9,43 +9,45 @@ class Auth_Internal extends Auth_Base {
$otp = db_escape_string($_REQUEST["otp"]);
if (get_schema_version($this->link) > 96) {
- $result = db_query($this->link, "SELECT otp_enabled,salt FROM ttrss_users WHERE
- login = '$login'");
-
- if (db_num_rows($result) > 0) {
- require_once "lib/otphp/vendor/base32.php";
- require_once "lib/otphp/lib/otp.php";
- require_once "lib/otphp/lib/totp.php";
-
- $base32 = new Base32();
-
- $otp_enabled = sql_bool_to_bool(db_fetch_result($result, 0, "otp_enabled"));
- $secret = $base32->encode(sha1(db_fetch_result($result, 0, "salt")));
-
- $topt = new \OTPHP\TOTP($secret);
- $otp_check = $topt->now();
-
- if ($otp_enabled) {
- if ($otp) {
- if ($otp != $otp_check) {
- return false;
+ if (!defined('AUTH_DISABLE_OTP') || !AUTH_DISABLE_OTP) {
+ $result = db_query($this->link, "SELECT otp_enabled,salt FROM ttrss_users WHERE
+ login = '$login'");
+
+ if (db_num_rows($result) > 0) {
+ require_once "lib/otphp/vendor/base32.php";
+ require_once "lib/otphp/lib/otp.php";
+ require_once "lib/otphp/lib/totp.php";
+
+ $base32 = new Base32();
+
+ $otp_enabled = sql_bool_to_bool(db_fetch_result($result, 0, "otp_enabled"));
+ $secret = $base32->encode(sha1(db_fetch_result($result, 0, "salt")));
+
+ $topt = new \OTPHP\TOTP($secret);
+ $otp_check = $topt->now();
+
+ if ($otp_enabled) {
+ if ($otp) {
+ if ($otp != $otp_check) {
+ return false;
+ }
+ } else {
+ ?><html>
+ <head><title>Tiny Tiny RSS</title></head>
+ <body>
+ <form method="POST">
+ <input type="hidden" name="login_action" value="do_login">
+ <input type="hidden" name="login" value="<?php echo htmlspecialchars($login) ?>">
+ <input type="hidden" name="password" value="<?php echo htmlspecialchars($password) ?>">
+
+ <label><?php echo __("Please enter your one time password:") ?></label>
+ <input type="password" size="6" name="otp"/>
+ <input type="submit" value="Continue"/>
+ </form>
+ </form>
+ <?php
+ exit;
}
- } else {
- ?><html>
- <head><title>Tiny Tiny RSS</title></head>
- <body>
- <form method="POST">
- <input type="hidden" name="login_action" value="do_login">
- <input type="hidden" name="login" value="<?php echo htmlspecialchars($login) ?>">
- <input type="hidden" name="password" value="<?php echo htmlspecialchars($password) ?>">
-
- <label><?php echo __("Please enter your one time password:") ?></label>
- <input type="password" size="6" name="otp"/>
- <input type="submit" value="Continue"/>
- </form>
- </form>
- <?php
- exit;
}
}
}