X-Git-Url: http://git.roojs.org/?p=Pman.Core;a=blobdiff_plain;f=GoogleTranslate.php;h=8d9c464ced5ba920a0a814abec9c43a52f6ab523;hp=8b4585e0cefda7cd5817a5d7c7b52f9c0596eddc;hb=8cd2a9237c684aa16bc21e3ac6d3793c49c65400;hpb=99f086c24379d18e9c725beb1cfc6f34471c402a diff --git a/GoogleTranslate.php b/GoogleTranslate.php index 8b4585e0..8d9c464c 100644 --- a/GoogleTranslate.php +++ b/GoogleTranslate.php @@ -20,42 +20,45 @@ class Pman_Core_GoogleTranslate extends Pman $this->authUser = $au; } - function get() { + function get($v, $opts=array()) { // for testing.. return $this->post(); } - function post() + function post($v) { $pc = HTML_FlexyFramework::get()->Pman_Core; if (empty($pc['googlekey'])) { $this->jerr("Google API Key not configured"); } - - $apiKey = $pc['googlekey']; - - $text = 'Hello world!'; + 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?key='. - $apiKey. - '&q='. - rawurlencode($text). - '&source=en&target=fr'; + $url = 'https://www.googleapis.com/language/translate/v2'; - $handle = curl_init($url); + $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); - $response = curl_exec($handle); - $responseDecoded = json_decode($response, true); + curl_setopt($handle, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: GET')); + + $response = curl_exec($handle); + +// $responseDecoded = json_decode($response); curl_close($handle); - - $this->jdata($key); + header("content-type: text/json"); + echo $response; + exit; }