returns an array of Shopping List objects, either for the buyer or for lists with the "supposed" flag = "Y
when I manually add a token to $ _GET, I return with an empty array. [{},{}]
but if I var_dump ($ shopper_list), I get two different lists of users .. it should be only one, since one login should equal one token:
[{},{}]
array(2) {
[0]=>
object(UserShoppingList)
["sign_in_token":protected]=>
NULL
["Shopper":protected]=>
NULL
["ID":protected]=>
string(1) "4"
["SHOPPING_LIST_NAME":protected]=>
string(18) "kj shopping list"
["SUGGESTION":protected]=>
string(1) "N"
["SEQUENCE":protected]=>
NULL
["ShoppingListItem":protected]=>
NULL
["api_url":protected]=>
NULL
["table":"Base":private]=>
string(23) "jfw_shopping_list_names"
["procedure":"Base":private]=>
NULL
["procedure_args":"Base":private]=>
NULL
["keys":"Base":private]=>
array(1) {
["ID"]=>
NULL
}
["alias_db_to_php":"Base":private]=>
array(0) {
}
["alias_php_to_db":"Base":private]=>
array(0) {
}
}
[1]=>
object(UserShoppingList)
["sign_in_token":protected]=>
NULL
["Shopper":protected]=>
NULL
["ID":protected]=>
string(1) "2"
["SHOPPING_LIST_NAME":protected]=>
string(20) "bonner shopping list"
["SUGGESTION":protected]=>
string(1) "N"
["SEQUENCE":protected]=>
NULL
["ShoppingListItem":protected]=>
NULL
["api_url":protected]=>
NULL
["table":"Base":private]=>
string(23) "jfw_shopping_list_names"
["procedure":"Base":private]=>
NULL
["procedure_args":"Base":private]=>
NULL
["keys":"Base":private]=>
array(1) {
["ID"]=>
NULL
}
["alias_db_to_php":"Base":private]=>
array(0) {
}
["alias_php_to_db":"Base":private]=>
array(0) {
}
}
}
My php page (get_shopping_lists.php) looks like this:
if(!isset($_GET['token']) && !isset($_GET['suggested_only'])) {
die('Must pass-in either a \'token\' or \'suggested_only\' flag');
}
if(isset($_GET['token'])) {
$shopper = new Shopper($_GET['token'])
or die('Could not instantiate a new Shopper from the \'token\' passed-in');
$shopper_lists = $shopper->get_lists(true);
echo json_encode($shopper_lists);
}
if(isset($_GET['suggested_only']) && $_GET['suggested_only'] == 'true') {
}
, ( youd "get_lists" Shopper), , "" = 'Y, , , . - .
:
class Shopper extends Base {
protected $shopper_id;
protected $email;
protected $user_name;
protected $temp_token;
protected $sign_in_token;
protected $UserShoppingList;
function __construct($email = null) {
if (strpos($email, '@') === false) {
$this->sign_in_token = $email;
} else {
$this->email = $email;
}
}
public function activate($temp_token) {
global $db;
$this->set_temp_token($temp_token);
$vars = array();
$vars[] = array(':i_temp_token', $this->get_temp_token());
return $db->get_function_as_proc('custom.japi_shopper_identity.Activate_User(:i_temp_token)', $vars) == 'Y';
}
public function create($password) {
global $db;
if (!$this->get_email() || !$this->get_username()) {
return false;
}
$vars = array();
$vars[] = array(':email', $this->get_email());
$vars[] = array(':username', $this->get_username());
$vars[] = array(':password', $password);
$id = $db->get_function_as_proc('custom.japi_shopper_identity.create_user(:email, :username, :password)', $vars);
$this->set_id($id);
return true;
}
public function get_email() {
return $this->email;
}
private function get_id() {
if (isset($this->shopper_id)) {
return $this->shopper_id;
} else if ($this->get_email()) {
global $db;
$vars = array();
$vars[] = array(':i_email_id', $this->get_email());
$id = array_pop(array_pop($db->get_function('custom.japi_shopper_identity.get_id_by_email(:i_email_id)', $vars)));
$this->set_id($id);
$this->shopper_id = $id;
return $this->shopper_id;
} else if ($this->get_sign_in_token()) {
return false;
}
}
public function get_lists($clobber = false) {
global $pd;
if ($this->UserShoppingList != null && !$clobber) {
return $this->UserShoppingList;
} else if ($this->get_sign_in_token()) {
global $db;
$pd->print_object($this, 'User - has token?');
$pd->print_object(strtolower($this->get_sign_in_token()), 'token?');
$vars = array();
$vars[] = array(':i_sign_in_token', strtolower($this->get_sign_in_token()));
$pd->print_object($this->get_sign_in_token(), 'About to seek lists using token');
$rows = $db->get_function('custom.japi_shopper_identity.get_lists_for_shopper(:i_sign_in_token)', $vars);
$pd->print_object($rows, 'Rows returned by get_lists using token '.$this->get_sign_in_token());
$this->UserShoppingList = array_to_objects($rows, 'UserShoppingList');
return $this->UserShoppingList;
} else {
return false;
}
}
public function get_sign_in_token() {
if ($this->sign_in_token != null) {
return $this->sign_in_token;
} else {
return false;
}
}
public function get_temp_token() {
if ($this->temp_token != null) {
return $this->temp_token;
} else {
return false;
}
}
public function get_username() {
return $this->user_name;
}
public function json($obj = null, $return_json = false) {
if ($obj == null) {
$obj = $this;
}
return parent::json($obj, $return_json);
}
public function login($password) {
global $db;
if (!$this->get_email()) {
return false;
}
$vars = array();
$vars[] = array(':i_email_id', $this->get_email());
$vars[] = array(':i_password', $password);
$token = $db->get_function_as_proc('custom.japi_shopper_identity.Login_by_Email(:i_email_id, :i_password)', $vars);
if ($token == null) {
return false;
} else {
$this->set_sign_in_token($token);
return $this->get_sign_in_token();
}
}
public function password_reset($tmp_token, $password) {
global $db;
if (strlen($password) < 8) {
return false;
}
$vars = array();
$vars[] = array(':temp_token', $tmp_token);
$vars[] = array(':new_password', $password);
return $db->get_function_as_proc('custom.japi_shopper_identity.password_reset(:temp_token, :new_password)', $vars) == 'Y';
}
public function request_activation() {
global $db;
$vars = array();
$vars[] = array(':i_shopper_id', $this->get_id());
$temp_token = $db->get_function_as_proc('custom.japi_shopper_identity.activate_user_request(:i_shopper_id)', $vars);
if ($temp_token == null) {
return false;
} else {
$this->send_activation_email();
return $temp_token;
}
}
public function request_password_reset() {
global $db, $pd;
if (!$this->get_id()) {
return false;
}
$vars = array();
$vars[] = array(':shopper_id', $this->get_id());
$temp_token = $db->get_function_as_proc('custom.japi_shopper_identity.password_reset_request(:shopper_id)', $vars);
if ($temp_token == null) {
return false;
} else {
$this->set_temp_token($temp_token);
$pd->print_object('About to send the e-mail');
$this->send_password_email();
$pd->print_object('Sent the email');
return $this->get_temp_token();
}
}
private function send_activation_email() {
if (!$this->get_email() || !$this->get_temp_token()) {
return false;
}
$fancy = '
<div style="text-align: center;"><img src="logo.jpg" /></div>
<h2>Welcome to com!</h2>
<p>To complete your registration, <a href="todo: ">click here</a> or copy and paste the URL into your browser:</p>
URL?token='.$this->get_temp_token().'
Thanks!
';
$plain = 'Welcome to com!
To complete your registration, please activate your account by going to the URL below:
URL?token='.$this->get_temp_token().'
Thanks!
';
return email_customer($this->get_email(), 'Welcome to com!', $fancy, $plain);
}
private function send_password_email() {
global $pd;
$pd->print_object('In send_password_email');
$pd->print_object($this->get_email(), 'E-mail');
$pd->print_object($this->get_temp_token(), 'Token');
if (!$this->get_email() || !$this->get_temp_token()) {
return false;
}
$pd->print_object($this->get_email(), 'Have all the data I need');
$fancy = '
<div style="text-align: center;"><img src="logo.jpg" /></div>
<h2>Welcome to com!</h2>
<p>To reset your password, <a href="todo: ">click here</a> or copy and paste the URL into your browser:</p>
<p>URL?token='.$this->get_temp_token().'</p>
<p>Thanks!</p>
';
$plain = 'Welcome to com!
To reset your password by going to the URL below:
URL?token='.$this->get_temp_token().'
Thanks!
';
$pd->print_object('About to actually e-mail');
return email_customer($this->get_email(), "Reset your com password", $fancy, $plain);
}
public function set_email($email) {
return $this->email = $email;
}
public function set_id($email) {
return $this->shopper_id;
}
public function set_sign_in_token($token) {
return $this->sign_in_token = $token;
}
public function set_temp_token($token) {
return $this->temp_token = $token;
}
public function set_username($username) {
return $this->user_name = $username;
}
}
, , , .
(oracle11g) DB:
ID SHOPPING_LIST_NAME S SEQUENCE
------- -------------------------------------------------- - --------
3 793d7384fa4fa247d6fae07db104147d0a2dad6e N
1 test amnaik shopping list N
4 kj shopping list N
5 kj shopping list from 1384201636 N
6 kj shopping list from 1384201659 N
7 kj shopping list from 1384202055 N
8 kj shopping list from 1384202089 N
2 bonner shopping list N
8 rows selected.
SHOPPING_LIST_ID SHOPPER_ID ITM_CD QUANTITY CHANGE_DA CHANGE_US A O
---------------- ---------- --------- -------- --------- --------- - -
1 2 ABI85MT06 4 28-OCT-13 CUSTOM N N
1 1 STZ28AC1 3 11-NOV-13 CUSTOM Y N
1 1 ABI85MT06 3 11-NOV-13 CUSTOM Y N
1 1 XYZ 1 Y N
2 1 XYZ 1 Y N
4 67 MND44SA01 1 Y N
4 67 MND44SA02 1 Y N
2 67 MND44SA02 1 Y N
1 1 ABCDEF 1 Y N
9 rows selected.
, . .