GoogleTranslate.php
[Pman.Core] / GoogleTranslate.php
index a9e22bc..057a249 100644 (file)
@@ -10,6 +10,54 @@ require_once 'Pman.php';
 class Pman_Core_GoogleTranslate extends Pman
 {
     //put your code here
+    function getAuth()
+    {
+        
+        $au = $this->getAuthUser();
+        if (!$au) {
+            $this->jerrAuth("only authenticated users");
+        }
+        
+        $this->authUser = $au;
+    }
+    function get() {
+        // for testing..
+        return $this->post();
+    }
+    
+    function post()
+    {
+        $pc = HTML_FlexyFramework::get()->Pman_Core;
+        if (empty($pc['googlekey'])) {
+            $this->jerr("Google API Key not configured");
+        }
+        
+        $param = array(
+            'key' => $pc['googlekey'],
+            'q' => rawurlencode($_REQUEST['text']),
+            'source' => $_REQUEST['src'],
+            'target' => $_REQUEST['dest']
+        );
+        
+        $url = 'https://www.googleapis.com/language/translate/v2';
+
+//        $handle = curl_init();
+//        curl_setopt($handle, CURLOPT_URL, $url);
+//        curl_setopt($handle, CURLOPT_POST, count($param));
+//        curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($param));
+//        curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
+//        curl_setopt($handle, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: GET'));
+        $response = curl_exec($handle);
+        
+//        print_r(http_build_query($param));
+        
+        $responseDecoded = json_decode($response, true);
+        curl_close($handle);
+    
+        $this->jdata($responseDecoded);
+        
+    }
     
     
 }