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
|
<?php
/**
* API module for TTMServer
*
* @file
* @author Niklas Laxström
* @license GPL-2.0-or-later
*/
/**
* API module for TTMServer
*
* @ingroup API TranslateAPI TTMServer
* @since 2012-01-26
*/
class ApiTTMServer extends ApiBase {
public function execute() {
global $wgTranslateTranslationServices;
if ( !$this->getAvailableTranslationServices() ) {
$this->dieWithError( 'apierror-translate-notranslationservices' );
}
$params = $this->extractRequestParams();
$config = $wgTranslateTranslationServices[$params['service']];
$server = TTMServer::factory( $config );
'@phan-var ReadableTTMServer $server';
$suggestions = $server->query(
$params['sourcelanguage'],
$params['targetlanguage'],
$params['text']
);
$result = $this->getResult();
foreach ( $suggestions as $sug ) {
$sug['location'] = $server->expandLocation( $sug );
unset( $sug['wiki'] );
$result->addValue( $this->getModuleName(), null, $sug );
}
$result->addIndexedTagName( $this->getModuleName(), 'suggestion' );
}
protected function getAvailableTranslationServices() {
global $wgTranslateTranslationServices;
$good = [];
foreach ( $wgTranslateTranslationServices as $id => $config ) {
$public = $config['public'] ?? false;
if ( $config['type'] === 'ttmserver' && $public ) {
$good[] = $id;
}
}
return $good;
}
public function getAllowedParams() {
global $wgTranslateTranslationDefaultService;
$available = $this->getAvailableTranslationServices();
$ret = [
'service' => [
ApiBase::PARAM_TYPE => $available,
],
'sourcelanguage' => [
ApiBase::PARAM_TYPE => 'string',
ApiBase::PARAM_REQUIRED => true,
],
'targetlanguage' => [
ApiBase::PARAM_TYPE => 'string',
ApiBase::PARAM_REQUIRED => true,
],
'text' => [
ApiBase::PARAM_TYPE => 'string',
ApiBase::PARAM_REQUIRED => true,
],
];
if ( $available ) {
// Don't add this if no services are available, it makes
// ApiStructureTest unhappy
$ret['service'][ApiBase::PARAM_DFLT] = $wgTranslateTranslationDefaultService;
}
return $ret;
}
protected function getExamplesMessages() {
return [
'action=ttmserver&sourcelanguage=en&targetlanguage=fi&text=Help'
=> 'apihelp-ttmserver-example-1',
];
}
}
|