DataObjects/Core_domain.php
[Pman.Core] / GoogleTranslate.php
index 057a249..f8eaeaa 100644 (file)
@@ -31,31 +31,34 @@ class Pman_Core_GoogleTranslate extends Pman
         if (empty($pc['googlekey'])) {
             $this->jerr("Google API Key not configured");
         }
-        
+        if (!strlen(trim($_REQUEST['text']))) {
+            $this->jok(array("translatedText" =>""));
+        }
         $param = array(
             'key' => $pc['googlekey'],
-            'q' => rawurlencode($_REQUEST['text']),
+            'q' =>  $_REQUEST['text'],
             'source' => $_REQUEST['src'],
-            'target' => $_REQUEST['dest']
+            'target' => $_REQUEST['dest'],
+            'format' => 'text',
         );
         
         $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'));
+        $handle = curl_init();
+        curl_setopt($handle, CURLOPT_URL, $url);
+        curl_setopt($handle, CURLOPT_POST, count($param));
+        curl_setopt($handle, CURLOPT_POSTFIELDS, $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);
+
+//        $responseDecoded = json_decode($response);
         curl_close($handle);
-    
-        $this->jdata($responseDecoded);
+        
+        header("content-type: text/json");
+        echo $response;
+        exit;
         
     }