X-Git-Url: http://git.pjr.cc/?a=blobdiff_plain;f=authserver%2Fusercmd.php;h=1d4db80da87403f0c8f6c5e97097da3708f6f9d7;hb=2d6b0d3ff36c0e388ea51163cb2ebee072a03dab;hp=d19fa54838a69c5af053080f517e3aa8bcb9cad8;hpb=1e9b1b3a5c4dd1f033ae5f3145d7bb7bcd73a4d6;p=ga4php.git diff --git a/authserver/usercmd.php b/authserver/usercmd.php index d19fa54..1d4db80 100644 --- a/authserver/usercmd.php +++ b/authserver/usercmd.php @@ -37,15 +37,30 @@ if(!isset($argv[1])) { echo "\tgetusers: getusers - gets a list of users\n"; echo "\tgetotk: getotk - gets the OTKID for a key\n"; echo "\tradauth: radauth - for radius, only returns a code\n"; + echo "\tsynctoken: synctoken - resync's a hotp token based on two token codes\n"; + echo "\ttokentype: tokentype - gets the token type for a user\n"; return 0; } switch($argv[1]) { + case "tokentype": + $msg = $myAC->getUserTokenType($argv[2]); + echo "token type: $msg\n"; + break; + case "synctoken": + if($myAC->syncUserToken($argv[2], $argv[3], $argv[4])) { + echo "Token synced\n"; + } else { + echo "Token not synced\n"; + } + break; case "radauth": if($myAC->authUserToken($argv[2], $argv[3])==1) { - return 0; + syslog(LOG_WARNING, "Got good request for user, ".$argv[2]); + exit(0); } else { - return 255; + syslog(LOG_WARNING, "Got bad request for user, ".$argv[2]); + exit(255); } break; case "getotk":