blob: 9a4a87dfc87cfd9a2adab743e1a0fca59acf3db8 (
plain)
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
106
|
<?php
/**
* Contains a class for querying external translation service.
*
* @file
* @author Niklas Laxström
* @copyright Copyright © 2010-2013 Niklas Laxström
* @license GPL-2.0+
*/
/**
* Implements support for Yandex translation api v1.
* @see http://api.yandex.com/translate/
* @ingroup TranslationWebService
* @since 2013-01-01
*/
class YandexWebService extends TranslationWebService {
protected function mapCode( $code ) {
if ( $code === 'be-tarask' ) {
$code = 'be';
}
return $code;
}
protected function doPairs() {
if ( !isset( $this->config['key'] ) ) {
throw new TranslationWebServiceException( 'API key is not set' );
}
$pairs = array();
$params = array(
'key' => $this->config['key'],
);
$url = $this->config['pairs'] . '?' . wfArrayToCgi( $params );
$json = Http::get( $url, $this->config['timeout'] );
$response = FormatJson::decode( $json );
if ( !is_object( $response ) ) {
$exception = 'Malformed reply from remote server: ' . strval( $json );
throw new TranslationWebServiceException( $exception );
}
foreach ( $response->dirs as $pair ) {
list( $source, $target ) = explode( '-', $pair );
$pairs[$source][$target] = true;
}
return $pairs;
}
protected function doRequest( $text, $from, $to ) {
if ( !isset( $this->config['key'] ) ) {
throw new TranslationWebServiceException( 'API key is not set' );
}
# http://api.yandex.com/translate/doc/dg/reference/translate.xml
if ( strlen( $text ) > 10000 ) {
throw new TranslationWebServiceException( 'Source text too long' );
}
$service = $this->service;
$text = trim( $text );
$text = $this->wrapUntranslatable( $text );
$options = array();
$options['timeout'] = $this->config['timeout'];
$options['method'] = 'POST';
$options['postData'] = array(
'key' => $this->config['key'],
'text' => $text,
'lang' => "$from-$to",
);
$url = $this->config['url'];
$req = MWHttpRequest::factory( $url, $options );
wfProfileIn( 'TranslateWebServiceRequest-' . $service );
$status = $req->execute();
wfProfileOut( 'TranslateWebServiceRequest-' . $service );
if ( !$status->isOK() ) {
$error = $req->getContent();
// Most likely a timeout or other general error
throw new TranslationWebServiceException( "Http::get failed:\n" .
"* " . serialize( $error ) . "\n" .
"* " . serialize( $status )
);
}
$response = FormatJson::decode( $req->getContent() );
if ( !is_object( $response ) ) {
throw new TranslationWebServiceException( serialize( $req->getContent() ) );
} elseif ( $response->code !== 200 ) {
$exception = "(HTTP {$response->code}) with ($service ($from|$to)): " .
$response->message;
throw new TranslationWebServiceException( $exception );
}
$sug = Sanitizer::decodeCharReferences( $response->text[0] );
$sug = $this->unwrapUntranslatable( $sug );
return trim( $sug );
}
}
|