-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathLoco.php
More file actions
473 lines (414 loc) · 14.9 KB
/
Loco.php
File metadata and controls
473 lines (414 loc) · 14.9 KB
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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
<?php
namespace Happyr\TranslationBundle\Service;
use Happyr\TranslationBundle\Exception\HappyrTranslationException;
use Happyr\TranslationBundle\Exception\HttpException;
use Happyr\TranslationBundle\Http\RequestManager;
use Happyr\TranslationBundle\Model\Message;
use Happyr\TranslationBundle\Translation\FilesystemUpdater;
use Symfony\Component\Filesystem\Exception\FileNotFoundException;
use Symfony\Component\Translation\TranslatorInterface;
/**
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
*/
class Loco implements TranslationServiceInterface
{
const BASE_URL = 'https://localise.biz/api/';
/**
* @var RequestManager
*/
private $requestManager;
/**
* @var array projects
*/
private $projects;
/**
* @var FilesystemUpdater filesystemService
*/
private $filesystemService;
/**
* @var TranslatorInterface filesystemService
*/
private $translator;
/**
* @param TranslatorInterface $translator
* @param RequestManager $requestManager
* @param FilesystemUpdater $fs
* @param array $projects
*/
public function __construct(RequestManager $requestManager, FilesystemUpdater $fs, TranslatorInterface $translator, array $projects)
{
$this->translator = $translator;
$this->requestManager = $requestManager;
$this->projects = $projects;
$this->filesystemService = $fs;
}
/**
* @param $key
* @param $method
* @param $resource
* @param null $body
* @param string $type
* @param array $extraQuery
* @return array
* @throws HttpException
*/
protected function makeApiRequest($key, $method, $resource, $body = null, $type = 'form', $extraQuery = array())
{
$headers = array();
if ($body !== null) {
if ($type === 'form') {
if (is_array($body)) {
$body = http_build_query($body);
}
$headers['Content-Type'] = 'application/x-www-form-urlencoded';
} elseif ($type === 'json') {
$body = json_encode($body);
$headers['Content-Type'] = 'application/json';
}
}
$query = array_merge($extraQuery, ['key' => $key]);
$url = self::BASE_URL . $resource . '?' . http_build_query($query);
return $this->requestManager->send($method, $url, $body, $headers);
}
/**
* Fetch a translation form Loco.
*
* @param Message $message
*/
public function fetchTranslation(Message $message, $updateFs = false)
{
$project = $this->getProject($message);
try {
$resource = sprintf('translations/%s/%s', $message->getId(), $message->getLocale());
$response = $this->makeApiRequest($project['api_key'], 'GET', $resource);
} catch (HttpException $e) {
if ($e->getCode() === 404) {
//Message does not exist
return;
}
throw $e;
}
$logoTranslation = $response['translation'];
$messageTranslation = $message->getTranslation();
$message->setTranslation($logoTranslation);
// update filesystem
if ($updateFs && $logoTranslation !== $messageTranslation) {
$this->filesystemService->updateMessageCatalog([$message]);
}
return $logoTranslation;
}
/**
* Update the translation in Loco.
*
* @param Message $message
*/
public function updateTranslation(Message $message)
{
$project = $this->getProject($message);
try {
$resource = sprintf('translations/%s/%s', $message->getId(), $message->getLocale());
$this->makeApiRequest($project['api_key'], 'POST', $resource, $message->getTranslation());
} catch (HttpException $e) {
if ($e->getCode() === 404) {
//Asset does not exist
if ($this->createAsset($message)) {
//Try again
return $this->updateTranslation($message);
}
return false;
}
throw $e;
}
$this->filesystemService->updateMessageCatalog([$message]);
return true;
}
/**
* If there is something wrong with the translation, please flag it.
*
* @param Message $message
* @param int $type 0: Fuzzy, 1: Incorrect, 2: Provisional, 3: Unapproved, 4: Incomplete
*
* @return bool
*/
public function flagTranslation(Message $message, $type = 0)
{
$project = $this->getProject($message);
$flags = ['fuzzy', 'incorrect', 'provisional', 'unapproved', 'incomplete'];
try {
$resource = sprintf('translations/%s/%s/flag', $message->getId(), $message->getLocale());
$this->makeApiRequest($project['api_key'], 'POST', $resource, ['flag' => $flags[$type]]);
} catch (HttpException $e) {
if ($e->getCode() === 404) {
//Message does not exist
return false;
}
throw $e;
}
return true;
}
/**
* Create a new asset in Loco.
*
* @param Message $message
*
* @return bool
*/
public function createAsset(Message $message)
{
$project = $this->getProject($message);
try {
$response = $this->makeApiRequest($project['api_key'], 'POST', 'assets', [
'id' => $message->getId(),
'name' => $message->getId(),
'type' => 'text',
// Tell Loco not to translate the asset
'default' => 'untranslated',
]);
if ($message->hasParameters()) {
// Send those parameter as a note to Loco
$notes = '';
foreach ($message->getParameters() as $key => $value) {
if (!is_array($value)) {
$notes .= 'Parameter: ' . $key . ' (i.e. : ' . $value . ")\n";
} else {
foreach ($value as $k => $v) {
$notes .= 'Parameter: ' . $k . ' (i.e. : ' . $v . ")\n";
}
}
}
$resource = sprintf('assets/%s.json', $message->getId());
$this->makeApiRequest($project['api_key'], 'PATCH', $resource, ['notes' => $notes], 'json');
}
} catch (HttpException $e) {
if ($e->getCode() === 409) {
//conflict.. ignore
return false;
}
throw $e;
}
// if this project has multiple domains. Make sure to tag it
if (!empty($project['domains'])) {
$this->addTagToAsset($project, $response['id'], $message->getDomain());
}
return true;
}
/**
* @param Message $message
*
* @return array
*/
protected function getProject(Message $message)
{
if (isset($this->projects[$message->getDomain()])) {
return $this->projects[$message->getDomain()];
}
// Return the first project that has the correct domain and locale
foreach ($this->projects as $project) {
if (in_array($message->getDomain(), $project['domains'])) {
if (in_array($message->getLocale(), $project['locales'])) {
return $project;
}
}
}
}
/**
* @param $project
* @param $messageId
* @param $domain
*/
protected function addTagToAsset($project, $messageId, $domain)
{
$resource = sprintf('assets/%s/tags', $messageId);
$this->makeApiRequest($project['api_key'], 'POST', $resource, ['name' => $domain]);
}
/**
* Download all the translations from Loco. This will replace all the local files.
* This is a quick method of getting all the latest translations and assets.
*/
public function downloadAllTranslations()
{
$data = [];
foreach ($this->projects as $name => $config) {
if (empty($config['domains'])) {
$this->getUrls($data, $config, $name, false);
} else {
foreach ($config['domains'] as $domain) {
$this->getUrls($data, $config, $domain, true);
}
}
}
$this->requestManager->downloadFiles($this->filesystemService, $data);
}
/**
* Upload all the translations from the symfony project into Loco. This will override
* every changed strings in loco
*/
public function uploadAllTranslations()
{
foreach ($this->projects as $name => $config) {
if (empty($config['domains'])) {
$this->doUploadDomains($config, $name, false);
} else {
foreach ($config['domains'] as $domain) {
$this->doUploadDomains($config, $domain, true);
}
}
}
}
/**
* @param array $config
* @param $domain
* @param $useDomainAsFilter
*/
protected function doUploadDomains(array &$config, $domain, $useDomainAsFilter)
{
$query = $this->getExportQueryParams($config['api_key']);
if ($useDomainAsFilter) {
$query['filter'] = $domain;
}
foreach ($config['locales'] as $locale) {
$extension = $this->filesystemService->getFileExtension();
$file = $this->filesystemService->getTargetDir();
$file .= sprintf('/%s.%s.%s', $domain, $locale, $extension);
if (is_file($file)) {
$query = [
'index' => 'id',
'tag' => $domain,
'locale'=> $locale
];
$resource = sprintf('import/%s', $extension);
$response = $this->makeApiRequest($config['api_key'], 'POST', $resource, file_get_contents($file), 'form', $query);
$this->flatten($response);
} else {
throw new FileNotFoundException(sprintf("Can't find %s file, perhaps you should generate the translations file ?", $file));
}
}
}
/**
* Synchronize all the translations with Loco. This will keep placeholders. This function is slower
* than just to download the translations.
*/
public function synchronizeAllTranslations()
{
foreach ($this->projects as $name => $config) {
if (empty($config['domains'])) {
$this->doSynchronizeDomain($config, $name, false);
} else {
foreach ($config['domains'] as $domain) {
$this->doSynchronizeDomain($config, $domain, true);
}
}
}
}
/**
* @param array $config
* @param $domain
* @param $useDomainAsFilter
*/
protected function doSynchronizeDomain(array &$config, $domain, $useDomainAsFilter)
{
$query = $this->getExportQueryParams($config['api_key']);
if ($useDomainAsFilter) {
$query['filter'] = $domain;
}
foreach ($config['locales'] as $locale) {
$resource = sprintf('export/locale/%s.%s', $locale, 'json');
$response = $this->makeApiRequest($config['api_key'], 'GET', $resource, ['query' => $query]);
$this->flatten($response);
$messages = array();
foreach ($response as $id => $translation) {
$messages[] = new Message([
'count' => 1,
'domain' => $domain,
'id' => $id,
'locale' => $locale,
'state' => 1,
'translation' => $translation,
]);
}
$this->filesystemService->updateMessageCatalog($messages);
}
}
/**
* Flattens an nested array of translations.
*
* The scheme used is:
* 'key' => array('key2' => array('key3' => 'value'))
* Becomes:
* 'key.key2.key3' => 'value'
*
* This function takes an array by reference and will modify it
*
* @param array &$messages The array that will be flattened
* @param array $subnode Current subnode being parsed, used internally for recursive calls
* @param string $path Current path being parsed, used internally for recursive calls
*/
private function flatten(array &$messages, array $subnode = null, $path = null)
{
if (null === $subnode) {
$subnode = &$messages;
}
foreach ($subnode as $key => $value) {
if (is_array($value)) {
$nodePath = $path ? $path . '.' . $key : $key;
$this->flatten($messages, $value, $nodePath);
if (null === $path) {
unset($messages[$key]);
}
} elseif (null !== $path) {
$messages[$path . '.' . $key] = $value;
}
}
}
/**
* @param array $data
* @param array $config
* @param string $domain
* @param bool $useDomainAsFilter
*/
protected function getUrls(array &$data, array $config, $domain, $useDomainAsFilter)
{
$query = $this->getExportQueryParams($config['api_key']);
if ($useDomainAsFilter) {
$query['filter'] = $domain;
}
foreach ($config['locales'] as $locale) {
// Build url
$url = sprintf('%sexport/locale/%s.%s?%s', self::BASE_URL, $locale, $this->filesystemService->getFileExtension(), http_build_query($query));
$fileName = sprintf('%s.%s.%s', $domain, $locale, $this->filesystemService->getFileExtension());
$data[$url] = $fileName;
if (!empty($config['tags'])) {
$query_tags = $this->getExportQueryParams($config['api_key'], $config['tags']);
// Build url
$url = sprintf('%sexport/locale/%s.%s?%s', self::BASE_URL, $locale, $this->filesystemService->getFileExtension(), http_build_query($query_tags));
$fileName = sprintf('%s.%s.%s', $domain.'-'.(implode($config['tags'], '-')), $locale, $this->filesystemService->getFileExtension());
$data[$url] = $fileName;
}
}
}
/**
* @param array $config
*
* @return array
*/
private function getExportQueryParams($key, $tags=null)
{
$data = array(
'index' => 'id',
'status' => 'translated',
'key' => $key,
);
if ($tags !== null) {
$data['filter'] = implode($tags, ',');
}
switch ($this->filesystemService->getFileExtension()) {
case 'php':
$data['format'] = 'zend'; // 'Zend' will give us a flat array
break;
case 'xlf':
default:
$data['format'] = 'symfony';
}
return $data;
}
}