a stupid implementaiton of function passing into an object... rediculouse thing to do
[ga4php.git] / example / index.php
index 78caa96..b750dbc 100644 (file)
@@ -1,19 +1,42 @@
 <?php
 
 require_once("../lib/lib.php");
+require_once("tokenstore.php");
+
+$ga = new GoogleAuthenticator("myGetData", "mySetData");
+
 if(isset($_REQUEST["action"])) {
        switch($_REQUEST["action"]) {
                case "destroy":
-                       unlink("/tmp/gaexpage.db");
+                       unlink("/tmp/gadata.sqlite");
                        break;
        }
 }
 
+// create/connect a db
+global $dbobject;
+$dbobject = false;
+if(file_exists("/tmp/gadata.sqlite")) {
+       try {
+               $dbobject = new PDO("sqlite:/tmp/gadata.sqlite");
+       } catch(PDOException $exep) {
+               error_log("execpt on db open");
+       }
+} else {
+       try {
+               $dbobject = new PDO("sqlite:/tmp/gadata.sqlite");
+       } catch(PDOException $exep) {
+               error_log("execpt on db open");
+       }
+       $sql = 'CREATE TABLE "users" ("users_id" INTEGER PRIMARY KEY AUTOINCREMENT,"users_username" TEXT,"users_tokentype" TEXT,"users_tokenkey" TEXT,"users_tokencounter" integer);';
+       $dbobject->query($sql);
+}
+
 
-$ga = new GoogleAuthenticator("/tmp/gaexpage.db");
 ?>
 <html>
 <h1>Example Page for GA4PHP</h1>
+<a href="index.php">home</a><br>
 
 <?php
 if(isset($_REQUEST["action"])) {
@@ -21,20 +44,29 @@ if(isset($_REQUEST["action"])) {
                case "createuser":
                        $username = $_REQUEST["username"];
                        $pr = preg_match('/^[a-zA-Z0-9@\.]+$/',"$username");
-                       $ttype = $_REQUEST["ttype"];
                        echo "<hr>";
                        if(strlen($username)<3) {
                                echo "<font color=\"red\">Sorry, username must be at least 3 chars</font>";
                        } else if($pr<1) {
                                echo "<font color=\"red\">Sorry, username can only contain a-z, A-Z, 0-9 @ and .</font>";
                        } else {
-                               $key = $ga->setupUser($username, $ttype);
-                               $keyinhex = $ga->helperb322hex($key);
-                               $url = urlencode($ga->createURL($username, $key, $ttype));
-                               echo "QRCode for user \"$username\" is <img src=\"http://chart.apis.google.com/chart?cht=qr&chl=$url&chs=120x120\"> or type in $key (google authenticator) or $keyinhex (for most other otp's)";
+                               //$key = $ga->setUser($username, "", $ttype);
+                               //$keyinhex = $ga->helperb322hex($key);
+                               //$url = urlencode($ga->createURL($username, $key, $ttype));
+                               //echo "QRCode for user \"$username\" is <img src=\"http://chart.apis.google.com/chart?cht=qr&chl=$url&chs=120x120\"> or type in $key (google authenticator) or $keyinhex (for most other otp's)";
+                               $sql = "insert into users values (NULL, '$username', 'TOTP', 'ASDF', '0')";
+                               $dbobject->query($sql);
                        }
                        echo "<hr>";
                        break;
+               case "provisiontoken":
+                       $username = $_REQUEST["username"];
+                       $ttype = $_REQUEST["ttype"];
+                       $key = $ga->setUser($username, "", $ttype);
+                       $keyinhex = $ga->helperb322hex($key);
+                       $url = urlencode($ga->createURL($username, $key, $ttype));
+                       echo "QRCode for user \"$username\" is <img src=\"http://chart.apis.google.com/chart?cht=qr&chl=$url&chs=420x420\"> or type in $key (google authenticator) or $keyinhex (for most other otp's), $ttype";
+                       break;
                case "authuser":
                        $username = $_REQUEST["username"];
                        $code = $_REQUEST["code"];
@@ -65,6 +97,19 @@ if(isset($_REQUEST["action"])) {
 <h2>Create a User:</h2>
 <form method="post" action="index.php?action=createuser">
 Username: <input type="text" name="username"><br>
+<input type="submit" name="go" value="go"><br>
+</form>
+<hr>
+<h2>Provision Token</h2>
+<form method="post" action="index.php?action=provisiontoken">
+Username: <select name="username">
+<?php
+$res = $ga->getUserList();
+foreach($res as $row) {
+       echo "<option value=\"".$row."\">".$row."</option>";
+}
+?>
+</select><br>
 Type: <select name="ttype"><option value="HOTP">HOTP</option><option value="TOTP">TOTP</option></select><br>
 <input type="submit" name="go" value="go"><br>
 </form>