Jacek Kowalski
2012-07-09 ea578859df0ca7589895faf2e4df3a8ee01dad61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<?php
require_once(dirname(__FILE__).'/msapi_config.php');
 
class msapi extends msapi_config {
    public $url;
    
    function __construct($url) {
        $this->url = $url;
    }
    
    function execute($params) {
        if(!is_array($params)) {
            throw new Exception('Przekazany parametr nie jest tablicą');
        }
        
        foreach($params as $name => &$param) {
            if(substr($name, 0, 1)!='$' && is_string($param)) {
                $param = '\''.strtr($param, array('\'' => '\'\'')).'\'';
            }
        }
        unset($param);
        $params['$format'] = 'json';
        
        $context = stream_context_create(array(
            'http' => array(
                'request_fulluri' => TRUE,
                'header' => 'Authorization: Basic '.base64_encode(':'.$this->accountKey)
            ),
        ));
        
        $content = file_get_contents($this->url.'?'.http_build_query($params, '', '&'), FALSE, $context);
        if(!$content) {
            return FALSE;
        }
        
        $content = json_decode($content, TRUE);
        if(!$content) {
            return FALSE;
        }
        
        return $content;
    }
}
 
class bot_lang_module implements BotModule {
    function handle($msg, $params) {
        $args = trim($msg->args);
        
        if(empty($args)) {
            return BotMsg('Podaj tekst do przetłumaczenia!');
        }
        
        $url = 'http://translate.google.com/translate_a/t?client=t&text='.urlencode($args).'&sl='.$params[0].'&tl='.$params[1].'&hl=pl&ie=utf-8&oe=utf-8';
        $data = @file_get_contents($url, 0, stream_context_create(array(
            'http' => array(
                'method' => 'GET',
            ),
        )));
        
        if(!$data) {
            return new BotMsg('Błąd podczas pobierania danych ze słownika. Przepraszamy.');
        }
        
        $data = jsarray::parse($data);
        
        if(!$data OR count($data)==0 OR count($data[1])==0) {
            $api = new msapi('https://api.datamarket.azure.com/Bing/MicrosoftTranslator/Translate');
            $data = $api->execute(array(
                'From' => $params[0],
                'To' => $params[1],
                'Text' => $args,
                '$skip' => 0,
                '$top' => 1
            ));
            
            if(!$data || !isset($data['d']['results'][0]['Text'])) {
                return new BotMsg('Błąd podczas pobierania danych z tłumacza. Przepraszamy.');
            }
            
            $data = $data['d']['results'][0]['Text'];
            
            return new BotMsg('<u>Tłumaczenie (by Microsoft Translator):</u><br />'."\n".htmlspecialchars($data));
        }
        else
        {
            $html = '<u>Słownik (by Google):</u>';
            foreach($data[1] as $przyp) {
                $html .= '<br />'."\n".'<b>'.htmlspecialchars($przyp[0]).'</b>';
                foreach($przyp[1] as $term) {
                    $html .= '<br />'."\n".'- '.htmlspecialchars($term);
                }
            }
            
            return new BotMsg($html);
        }
    }
    
    function typo($msg, $params) {
        return new BotMsg('Wybrana komenda nie istnieje. Prawdopodobnie chodziło ci o jedną z komend językowych, których nazwy zapisywane są <b>bez</b> spacji pomiędzy spacji pomiędzy kodami języków (angpol, a nie: ang pol).<br /><br />'."\n\n"
        
        . '<u>Spróbuj:</u><br />'."\n"
        . $msg->command.ltrim($msg->args));
    }
}
?>