commit | author | age
|
8bd4d9
|
1 |
<?php |
JK |
2 |
class bot_lang_module implements BotModule { |
|
3 |
private $APPID = ''; |
|
4 |
|
|
5 |
function handle($msg, $params) { |
|
6 |
$args = trim($msg->args); |
|
7 |
|
|
8 |
if(empty($args)) { |
|
9 |
return BotMsg('Podaj tekst do przetłumaczenia!'); |
|
10 |
} |
|
11 |
|
|
12 |
$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'; |
|
13 |
$data = @file_get_contents($url, 0, stream_context_create(array( |
|
14 |
'http' => array( |
|
15 |
'method' => 'GET', |
|
16 |
), |
|
17 |
))); |
|
18 |
|
|
19 |
if(!$data) { |
|
20 |
return new BotMsg('Błąd podczas pobierania danych ze słownika. Przepraszamy.'); |
|
21 |
} |
|
22 |
|
|
23 |
$data = jsarray::parse($data); |
|
24 |
|
|
25 |
if(!$data OR count($data)==0 OR count($data[1])==0) { |
|
26 |
$data = file_get_contents('http://api.microsofttranslator.com/v2/Http.svc/Translate?appId='.urlencode($this->APPID).'&text='.urlencode($args).'&from='.$params[0].'&to='.$params[1]); |
|
27 |
|
|
28 |
if(!$data) { |
|
29 |
return new BotMsg('Błąd podczas pobierania danych ze słownika. Przepraszamy.'); |
|
30 |
} |
|
31 |
|
|
32 |
return new BotMsg('<u>Tłumaczenie (by Microsoft Translator):</u><br />'."\n".strip_tags($data)); |
|
33 |
} |
|
34 |
else |
|
35 |
{ |
|
36 |
$html = '<u>Słownik (by Google):</u>'; |
|
37 |
foreach($data[1] as $przyp) { |
|
38 |
$html .= '<br />'."\n".'<b>'.htmlspecialchars($przyp[0]).'</b>'; |
|
39 |
foreach($przyp[1] as $term) { |
|
40 |
$html .= '<br />'."\n".'- '.htmlspecialchars($term); |
|
41 |
} |
|
42 |
} |
|
43 |
|
|
44 |
return new BotMsg($html); |
|
45 |
} |
|
46 |
} |
|
47 |
|
|
48 |
function typo($msg, $params) { |
|
49 |
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" |
|
50 |
|
|
51 |
. '<u>Spróbuj:</u><br />'."\n" |
|
52 |
. $msg->command.ltrim($msg->args)); |
|
53 |
} |
|
54 |
} |
|
55 |
?> |