GoogleTranslate.php
[Pman.Core] / GoogleTranslate.php
1 <?php
2
3 /**
4  * Description of GoogleTranslate
5  *
6  * @author chris
7  */
8
9 require_once 'Pman.php';
10 class Pman_Core_GoogleTranslate extends Pman
11 {
12     //put your code here
13     function getAuth()
14     {
15         
16         $au = $this->getAuthUser();
17         if (!$au) {
18             $this->jerrAuth("only authenticated users");
19         }
20         
21         $this->authUser = $au;
22     }
23     function get() {
24         // for testing..
25         return $this->post();
26     }
27     
28     function post()
29     {
30         $pc = HTML_FlexyFramework::get()->Pman_Core;
31         if (empty($pc['googlekey'])) {
32             $this->jerr("Google API Key not configured");
33         }
34         if (!strlen(trim($_REQUEST['text']))) {
35             $this->jok(array("translatedText" =>""));
36         }
37         $param = array(
38             'key' => $pc['googlekey'],
39             'q' => rawurlencode($_REQUEST['text']),
40             'source' => $_REQUEST['src'],
41             'target' => $_REQUEST['dest']
42         );
43         
44         $url = 'https://www.googleapis.com/language/translate/v2';
45
46         $handle = curl_init();
47         curl_setopt($handle, CURLOPT_URL, $url);
48         curl_setopt($handle, CURLOPT_POST, count($param));
49         curl_setopt($handle, CURLOPT_POSTFIELDS, http_build_query($param));
50         curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
51         curl_setopt($handle, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: GET'));
52
53         $response = curl_exec($handle);
54
55         $responseDecoded = json_decode($response);
56         curl_close($handle);
57         
58         if(!empty($responseDecoded->error)){
59             $this->jerr($responseDecoded->error->message);
60         }
61 //        print_r($responseDecoded);
62         if(empty($responseDecoded->data->translations[0]->translatedText)){
63             $this->jerr('does not have translated text.', print_r($responseDecoded, true));
64         }
65         var_dump($responseDecoded->data->translations[0]->translatedText);
66         $responseDecoded->data->translations[0]->translatedText = rawurldecode(str_replace(' ', '', $responseDecoded->data->translations[0]->translatedText));
67         $this->jok($responseDecoded->data->translations[0]);
68         
69     }
70     
71     
72 }