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' =>  $_REQUEST['text'],
40             'source' => $_REQUEST['src'],
41             'target' => $_REQUEST['dest'],
42             'format' => 'text',
43         );
44         
45         
46         $url = 'https://www.googleapis.com/language/translate/v2';
47
48         $handle = curl_init();
49         curl_setopt($handle, CURLOPT_URL, $url);
50         curl_setopt($handle, CURLOPT_POST, count($param));
51         curl_setopt($handle, CURLOPT_POSTFIELDS, $param);
52         curl_setopt($handle, CURLOPT_RETURNTRANSFER, true);
53         curl_setopt($handle, CURLOPT_HTTPHEADER, array('X-HTTP-Method-Override: GET'));
54
55         $response = curl_exec($handle);
56
57 //        $responseDecoded = json_decode($response);
58         curl_close($handle);
59         
60         header("content-type: text/json");
61         echo $response;
62         exit;
63         if(!empty($responseDecoded->error)){
64             $this->jerr($responseDecoded->error->message);
65         }
66 //        print_r($responseDecoded);
67         if(empty($responseDecoded->data->translations[0]->translatedText)){
68             $this->jerr('does not have translated text.', print_r($responseDecoded, true));
69         }
70 //        var_dump($responseDecoded->data->translations[0]->translatedText);
71         $responseDecoded->data->translations[0]->translatedText = rawurldecode(str_replace(' ', '', $responseDecoded->data->translations[0]->translatedText));
72         $this->jok($responseDecoded->data->translations[0]);
73         
74     }
75     
76     
77 }