summaryrefslogtreecommitdiff
blob: f559bac7b5ade2ae663e82b598a8f3b47df3d421 (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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<?php
/**
 * Contains a class for querying external translation service.
 *
 * @file
 * @author Niklas Laxström
 * @author Ulrich Strauss
 * @license GPL-2.0-or-later
 */

/**
 * Implements support for Microsoft translation api v2.
 * @see https://msdn.microsoft.com/en-us/library/ff512421.aspx
 * @ingroup TranslationWebService
 * @since 2013-01-01
 */
class MicrosoftWebService extends TranslationWebService {
	public function getType() {
		return 'mt';
	}

	protected function mapCode( $code ) {
		$map = [
			'zh-hant' => 'zh-CHT',
			'zh-hans' => 'zh-CHS',
		];

		return isset( $map[$code] ) ? $map[$code] : $code;
	}

	protected function getMSTokens( $clientID, $clientSecret ) {
		$authUrl = "https://datamarket.accesscontrol.windows.net/v2/OAuth2-13/";

		$params = [
			'grant_type' => "client_credentials",
			'scope' => "http://api.microsofttranslator.com",
			'client_id' => $clientID,
			'client_secret' => $clientSecret
		];

		$params = wfArrayToCgi( $params );

		$options['method']   = 'POST';
		$options['timeout']  = $this->config['timeout'];
		$options['postData'] = $params;

		$req = MWHttpRequest::factory( $authUrl, $options );

		$status = $req->execute();

		if ( !$status->isOK() ) {
			$error = $req->getContent();
			// Most likely a timeout or other general error
			throw new TranslationWebServiceException(
				'Http::get failed: ' . $authUrl . serialize( $error ) . serialize( $status )
			);
		}
		$ret = $req->getContent();

		$response = json_decode( $ret, true );
		if ( isset( $response['error'] ) ) {
			throw new TranslationWebServiceException( $response['error_description'] );
		}

		return $response['access_token'];
	}

	protected function doPairs() {
		if ( !isset( $this->config['clientId'] ) || !isset( $this->config['clientSecret'] ) ) {
			throw new TranslationWebServiceConfigurationException( 'clientId or clientSecret is not set' );
		}

		$clientID = $this->config['clientId'];
		$clientSecret = $this->config['clientSecret'];

		// get access token from service
		$accessToken = $this->getMSTokens( $clientID, $clientSecret );

		$options = [];
		$options['method']  = 'GET';
		$options['timeout'] = $this->config['timeout'];

		$url = 'http://api.microsofttranslator.com/V2/Http.svc/GetLanguagesForTranslate?';

		$req = MWHttpRequest::factory( $url, $options );
		$req->setHeader( 'Authorization', "Bearer $accessToken" );

		$status = $req->execute();
		if ( !$status->isOK() ) {
			$error = $req->getContent();
			// Most likely a timeout or other general error
			throw new TranslationWebServiceException(
				'Http::get failed:' . serialize( $error ) . serialize( $status )
			);
		}
		$xml = simplexml_load_string( $req->getContent() );

		$languages = [];
		foreach ( $xml->string as $language ) {
			$languages[] = (string)$language;
		}

		// Let's make a cartesian product, assuming we can translate from any language to any language
		$pairs = [];
		foreach ( $languages as $from ) {
			foreach ( $languages as $to ) {
				$pairs[$from][$to] = true;
			}
		}

		return $pairs;
	}

	protected function getQuery( $text, $from, $to ) {
		if ( !isset( $this->config['clientId'] ) || !isset( $this->config['clientSecret'] ) ) {
			throw new TranslationWebServiceConfigurationException(
				'clientId or clientSecret is not set'
			);
		}

		$text = trim( $text );
		$text = $this->wrapUntranslatable( $text );

		// get access token from service
		$accessToken = $this->getMSTokens(
			$this->config['clientId'],
			$this->config['clientSecret']
		);

		$params = [
			'text' => $text,
			'from' => $from,
			'to' => $to,
		];
		$headers = [
			'Authorization' => 'Bearer ' . $accessToken,
		];

		return TranslationQuery::factory( $this->config['url'] )
			->timeout( $this->config['timeout'] )
			->queryParameters( $params )
			->queryHeaders( $headers );
	}

	protected function parseResponse( TranslationQueryResponse $reply ) {
		$body = $reply->getBody();

		$text = preg_replace( '~<string.*>(.*)</string>~s', '\\1', $body );
		$text = Sanitizer::decodeCharReferences( $text );
		$text = $this->unwrapUntranslatable( $text );

		return $text;
	}

	/// Override from parent
	protected function wrapUntranslatable( $text ) {
		$pattern = '~%[^% ]+%|\$\d|{VAR:[^}]+}|{?{(PLURAL|GRAMMAR|GENDER):[^|]+\||%(\d\$)?[sd]~';
		$wrap = '<span translate="no">\0</span>';
		return preg_replace( $pattern, $wrap, $text );
	}

	/// Override from parent
	protected function unwrapUntranslatable( $text ) {
		$pattern = '~<span translate="no">(.*?)</span>~';
		return preg_replace( $pattern, '\1', $text );
	}
}