VerifyAccess.php
[Pman.Core] / VerifyAccess.php
index 0486eb3..5544432 100644 (file)
@@ -30,25 +30,45 @@ class Pman_Core_VerifyAccess extends Pman
         
         $ff = HTML_FlexyFramework::get();
         
+        if(empty($ff->Pman['ip_management']) || empty($ff->Pman['XMPP']) || empty($ff->Pman['XMPP']['to'])) {
+            $this->jerr('[System Error] This site does not using IP management');
+        }
+        
+        $ff->Pman['XMPP']['to'] = 'edward@roojs.com'; // testing...
+        
         $core_person = DB_DataObject::factory('core_person');
         
+        if(!$core_person->get('email', $ff->Pman['XMPP']['to'])) {
+            $this->jerr('[System Error] Please setup the XMPP correctly');
+        }
         
-        $ff->Pman['XMPP']['to'] = 'edward@roojs.com'; // testing...
+        return;
+        
+    }
+    
+    function post()
+    {
+        if(!empty($_REQUEST['_to_data'])){
+            $this->toData();
+        }
+        
+        
+    }
+    
+    function toData()
+    {
+        $core_ip_access = DB_DataObject::factory('core_ip_access');
         
         if(
-                empty($id) ||
-                empty($key) ||
-                empty($ff->Pman['ip_management']) || 
-                empty($ff->Pman['XMPP']) ||
-                empty($ff->Pman['XMPP']['to']) ||
-                !$core_person->get('email', $ff->Pman['XMPP']['to']) ||
-                !$core_ip_access->get($id) ||
-                $core_ip_access->authorized_key != $key
-        ) {
+                empty($_REQUEST['id']) || 
+                empty($_REQUEST['authorized_key']) ||
+                !$core_ip_access->get($_REQUEST['id']) ||
+                $core_ip_access->authorized_key != $_REQUEST['authorized_key']
+        ){                
             $this->jerr('Invalid URL');
         }
         
-        return;
+        $this->jdata($core_ip_access->toArray());
         
     }