I'm almost there,but something is missing.My PHP app:
1)User is requesting to the server
2)The server is generating a long unique string and checks if exists in the DB:If YES then generate again(until it doesn't exists),if NO then add it to the DB and finish. All logic should be executed with a single request,i.e user should not request/refresh page if generated string exist.
I am stuck in the YES part.
My code (DISCLAIMER:I do not own parts of the following code)
<?php
class genPass
{
private $db;
function __construct() {
$this->db=new mysqli('localhost', 'user', 'pass', 'db');
$this->db->set_charset("utf8");
$this->db->autocommit(FALSE);
}
function __destruct() {
$this->db->close();
}
function isUsed($uid)
{
$stmt=$this->db->query("SELECT * FROM id WHERE udid='".$uid."'")or die($this->db->error);
while($stmt->num_rows <1) {
$newnum = $this->generateStrongPassword();
$newcheck=$this->db->query("SELECT * FROM id WHERE udid='".$newnum."'")or die($this->db->error);
if ($newcheck->num_rows >= 1) {
echo $newnum . " exists! \n"; <- WHAT TO DO IF EXISTS?WHICH PART OF THE SCRIPT SHOULD I RUN AGAIN
} else {
$this->db->query("INSERT INTO id (udid) VALUES ('".$newnum."')")or die($this->db->error);
echo "$newnum - CAN ISNERT@!@!@";
break;
}
}
}
public function generateStrongPassword($length = 3, $add_dashes = false, $available_sets = 'lu')
{
$sets = array();
if(strpos($available_sets, 'l') !== false)
$sets[] = 'ab';//'abcdefghjkmnpqrstuvwxyz';
if(strpos($available_sets, 'u') !== false)
$sets[] = 'AB';//'ABCDEFGHJKMNPQRSTUVWXYZ';
if(strpos($available_sets, 'd') !== false)
$sets[] = '23456789';
if(strpos($available_sets, 's') !== false)
$sets[] = '!@#$%&*?';
$all = '';
$password = '';
foreach($sets as $set)
{
$password .= $set[array_rand(str_split($set))];
$all .= $set;
}
$all = str_split($all);
for($i = 0; $i < $length - count($sets); $i++)
$password .= $all[array_rand($all)];
$password = str_shuffle($password);
if(!$add_dashes)
return $password;
$dash_len = floor(sqrt($length));
$dash_str = '';
while(strlen($password) > $dash_len)
{
$dash_str .= substr($password, 0, $dash_len) . '-';
$password = substr($password, $dash_len);
}
$dash_str .= $password;
return $this->$dash_str;
}
}
$obj = new genPass;
$ran=$obj->generateStrongPassword();
$obj->isUsed($ran);
?>
isUsedfunction... that returns nothing? Even if it did return something, what would be the point of running a loop and checking more uids? The caller is obviously only interested in the one uid they passed in!echo "$newnum - CAN ISNERT@!@!@";,this one is the response!!!!UUID()function.