From: edward Date: Thu, 15 Feb 2018 03:27:44 +0000 (+0800) Subject: VerifyAccess.php X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=commitdiff_plain;h=0c2409f70776a978516bf572cf9348184758b4ca VerifyAccess.php --- diff --git a/VerifyAccess.php b/VerifyAccess.php index d4433e57..b22d919b 100644 --- a/VerifyAccess.php +++ b/VerifyAccess.php @@ -61,26 +61,11 @@ class Pman_Core_VerifyAccess extends Pman if( empty($_REQUEST['id']) || - empty($_REQUEST['verify_key']) || - !$core_ip_access->get($_REQUEST['id']) + empty($_REQUEST['authorized_key']) || + !$core_ip_access->get($_REQUEST['id']) || + $core_ip_access->authorized_key != $_REQUEST['authorized_key'] ){ - $this->jerr('broken_link'); - return; - } - - if(!empty($coba_application_signup->coba_application_id)){ - $this->jerr('already_registered'); - return; - } - - if($coba_application_signup->verify_key != $_REQUEST['verify_key']){ - $this->jerr('broken_link'); - return; - } - - if(time() > strtotime($coba_application_signup->expiry_dt)) { - $this->jerr('expired'); - return; + $this->jerr('Invalid URL'); } $this->jdata($coba_application_signup->toArray());