GoogleTranslate.php
[Pman.Core] / GoogleTranslate.php
index 3c17245..4a47f3f 100644 (file)
@@ -31,7 +31,9 @@ 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']),
@@ -42,19 +44,27 @@ class Pman_Core_GoogleTranslate extends Pman
         $url = 'https://www.googleapis.com/language/translate/v2';
 
         $handle = curl_init();
-        curl_setopt($handle,CURLOPT_URL, $url);
+        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);
+
+        $responseDecoded = json_decode($response);
+        curl_close($handle);
         
-        print_r(http_build_query($param));
+        if(!empty($responseDecoded->error)){
+            $this->jerr($responseDecoded->error->message);
+        }
+//        print_r($responseDecoded);
+        if(empty($responseDecoded->data->translations[0]->translatedText)){
+            $this->jerr('does not have translated text.', print_r($responseDecoded, true));
+        }
         
-        $responseDecoded = json_decode($response, true);
-        curl_close($handle);
-    
-        $this->jdata($responseDecoded);
+        $responseDecoded->data->translations[0]->translatedText = rawurldecode($responseDecoded->data->translations[0]->translatedText);
+        $this->jok($responseDecoded->data->translations[0]);
         
     }