This repository has been archived by the owner on Jan 11, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
LanguageService.php
388 lines (344 loc) · 12.9 KB
/
LanguageService.php
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
<?php
/**
* File containing the eZ\Publish\Core\Repository\LanguageService class.
*
* @copyright Copyright (C) eZ Systems AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
* @version //autogentag//
* @package eZ\Publish\Core\Repository
*/
namespace eZ\Publish\Core\Repository;
use eZ\Publish\API\Repository\LanguageService as LanguageServiceInterface;
use eZ\Publish\SPI\Persistence\Content\Language\Handler;
use eZ\Publish\API\Repository\Repository as RepositoryInterface;
use eZ\Publish\API\Repository\Values\Content\LanguageCreateStruct;
use eZ\Publish\SPI\Persistence\Content\Language as SPILanguage;
use eZ\Publish\SPI\Persistence\Content\Language\CreateStruct;
use eZ\Publish\API\Repository\Values\Content\Language;
use eZ\Publish\API\Repository\Exceptions\NotFoundException as APINotFoundException;
use eZ\Publish\Core\Base\Exceptions\InvalidArgumentValue;
use eZ\Publish\Core\Base\Exceptions\InvalidArgumentException;
use eZ\Publish\Core\Base\Exceptions\UnauthorizedException;
use LogicException;
use Exception;
/**
* Language service, used for language operations
*
* @package eZ\Publish\Core\Repository
*/
class LanguageService implements LanguageServiceInterface
{
/**
* @var \eZ\Publish\API\Repository\Repository
*/
protected $repository;
/**
* @var \eZ\Publish\SPI\Persistence\Content\Language\Handler
*/
protected $languageHandler;
/**
* @var array
*/
protected $settings;
/**
* Setups service with reference to repository object that created it & corresponding handler
*
* @param \eZ\Publish\API\Repository\Repository $repository
* @param \eZ\Publish\SPI\Persistence\Content\Language\Handler $languageHandler
* @param array $settings
*/
public function __construct( RepositoryInterface $repository, Handler $languageHandler, array $settings = array() )
{
$this->repository = $repository;
$this->languageHandler = $languageHandler;
// Union makes sure default settings are ignored if provided in argument
$this->settings = $settings + array(
'languages' => array( 'eng-GB' ),
);
}
/**
* Creates the a new Language in the content repository
*
* @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException If user does not have access to content translations
* @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if the languageCode already exists
*
* @param \eZ\Publish\API\Repository\Values\Content\LanguageCreateStruct $languageCreateStruct
*
* @return \eZ\Publish\API\Repository\Values\Content\Language
*/
public function createLanguage( LanguageCreateStruct $languageCreateStruct )
{
if ( !is_string( $languageCreateStruct->name ) || empty( $languageCreateStruct->name ) )
throw new InvalidArgumentValue( "name", $languageCreateStruct->name, "LanguageCreateStruct" );
if ( !is_string( $languageCreateStruct->languageCode ) || empty( $languageCreateStruct->languageCode ) )
throw new InvalidArgumentValue( "languageCode", $languageCreateStruct->languageCode, "LanguageCreateStruct" );
if ( !is_bool( $languageCreateStruct->enabled ) )
throw new InvalidArgumentValue( "enabled", $languageCreateStruct->enabled, "LanguageCreateStruct" );
if ( $this->repository->hasAccess( 'content', 'translations' ) !== true )
throw new UnauthorizedException( 'content', 'translations' );
try
{
if ( $this->loadLanguage( $languageCreateStruct->languageCode ) !== null )
throw new InvalidArgumentException( "languageCreateStruct", "language with specified language code already exists" );
}
catch ( APINotFoundException $e )
{
// Do nothing
}
$createStruct = new CreateStruct(
array(
'languageCode' => $languageCreateStruct->languageCode,
'name' => $languageCreateStruct->name,
'isEnabled' => $languageCreateStruct->enabled
)
);
$this->repository->beginTransaction();
try
{
$createdLanguage = $this->languageHandler->create( $createStruct );
$this->repository->commit();
}
catch ( Exception $e )
{
$this->repository->rollback();
throw $e;
}
return $this->buildDomainObject( $createdLanguage );
}
/**
* Changes the name of the language in the content repository
*
* @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if languageCode argument
* is not string
* @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException If user does not have access to content translations
*
* @param \eZ\Publish\API\Repository\Values\Content\Language $language
* @param string $newName
*
* @return \eZ\Publish\API\Repository\Values\Content\Language
*/
public function updateLanguageName( Language $language, $newName )
{
if ( !is_string( $newName ) || empty( $newName ) )
throw new InvalidArgumentValue( "newName", $newName );
if ( $this->repository->hasAccess( 'content', 'translations' ) !== true )
throw new UnauthorizedException( 'content', 'translations' );
$loadedLanguage = $this->loadLanguageById( $language->id );
$updateLanguageStruct = new SPILanguage(
array(
'id' => $loadedLanguage->id,
'languageCode' => $loadedLanguage->languageCode,
'name' => $newName,
'isEnabled' => $loadedLanguage->enabled
)
);
$this->repository->beginTransaction();
try
{
$this->languageHandler->update( $updateLanguageStruct );
$this->repository->commit();
}
catch ( Exception $e )
{
$this->repository->rollback();
throw $e;
}
return $this->loadLanguageById( $loadedLanguage->id );
}
/**
* Enables a language
*
* @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException If user does not have access to content translations
*
* @param \eZ\Publish\API\Repository\Values\Content\Language $language
*
* @return \eZ\Publish\API\Repository\Values\Content\Language
*/
public function enableLanguage( Language $language )
{
if ( $this->repository->hasAccess( 'content', 'translations' ) !== true )
throw new UnauthorizedException( 'content', 'translations' );
$loadedLanguage = $this->loadLanguageById( $language->id );
$updateLanguageStruct = new SPILanguage(
array(
'id' => $loadedLanguage->id,
'languageCode' => $loadedLanguage->languageCode,
'name' => $loadedLanguage->name,
'isEnabled' => true
)
);
$this->repository->beginTransaction();
try
{
$this->languageHandler->update( $updateLanguageStruct );
$this->repository->commit();
}
catch ( Exception $e )
{
$this->repository->rollback();
throw $e;
}
return $this->loadLanguageById( $loadedLanguage->id );
}
/**
* Disables a language
*
* @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException If user does not have access to content translations
*
* @param \eZ\Publish\API\Repository\Values\Content\Language $language
*
* @return \eZ\Publish\API\Repository\Values\Content\Language
*/
public function disableLanguage( Language $language )
{
if ( $this->repository->hasAccess( 'content', 'translations' ) !== true )
throw new UnauthorizedException( 'content', 'translations' );
$loadedLanguage = $this->loadLanguageById( $language->id );
$updateLanguageStruct = new SPILanguage(
array(
'id' => $loadedLanguage->id,
'languageCode' => $loadedLanguage->languageCode,
'name' => $loadedLanguage->name,
'isEnabled' => false
)
);
$this->repository->beginTransaction();
try
{
$this->languageHandler->update( $updateLanguageStruct );
$this->repository->commit();
}
catch ( Exception $e )
{
$this->repository->rollback();
throw $e;
}
return $this->loadLanguageById( $loadedLanguage->id );
}
/**
* Loads a Language from its language code ($languageCode)
*
* @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if languageCode argument
* is not string
* @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if language could not be found
*
* @param string $languageCode
*
* @return \eZ\Publish\API\Repository\Values\Content\Language
*/
public function loadLanguage( $languageCode )
{
if ( !is_string( $languageCode ) || empty( $languageCode ) )
throw new InvalidArgumentException( "languageCode", "language code has an invalid value" );
$language = $this->languageHandler->loadByLanguageCode( $languageCode );
return $this->buildDomainObject( $language );
}
/**
* Loads all Languages
*
* @return \eZ\Publish\API\Repository\Values\Content\Language[]
*/
public function loadLanguages()
{
$languages = $this->languageHandler->loadAll();
$returnArray = array();
foreach ( $languages as $language )
{
$returnArray[] = $this->buildDomainObject( $language );
}
return $returnArray;
}
/**
* Loads a Language by its id ($languageId)
*
* @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if language could not be found
*
* @param mixed $languageId
*
* @return \eZ\Publish\API\Repository\Values\Content\Language
*/
public function loadLanguageById( $languageId )
{
$language = $this->languageHandler->load( $languageId );
return $this->buildDomainObject( $language );
}
/**
* Deletes a language from content repository
*
* @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException
* if language can not be deleted
* because it is still assigned to some content / type / (...).
* @throws \eZ\Publish\API\Repository\Exceptions\UnauthorizedException If user does not have access to content translations
*
* @param \eZ\Publish\API\Repository\Values\Content\Language $language
*/
public function deleteLanguage( Language $language )
{
if ( $this->repository->hasAccess( 'content', 'translations' ) !== true )
throw new UnauthorizedException( 'content', 'translations' );
$loadedLanguage = $this->loadLanguageById( $language->id );
$this->repository->beginTransaction();
try
{
$this->languageHandler->delete( $loadedLanguage->id );
$this->repository->commit();
}
catch ( LogicException $e )
{
$this->repository->rollback();
throw new InvalidArgumentException( "language", $e->getMessage(), $e );
}
catch ( Exception $e )
{
$this->repository->rollback();
throw $e;
}
}
/**
* Returns a configured default language code
*
* @return string
*/
public function getDefaultLanguageCode()
{
return $this->settings['languages'][0];
}
/**
* Returns a configured list of prioritized languageCodes
*
* @access private This is currently only for internal use in Services
*
* @return string[]
*/
public function getPrioritizedLanguageCodeList()
{
return $this->settings['languages'];
}
/**
* Instantiates an object to be used for creating languages
*
* @return \eZ\Publish\API\Repository\Values\Content\LanguageCreateStruct
*/
public function newLanguageCreateStruct()
{
return new LanguageCreateStruct();
}
/**
* Builds Language domain object from ValueObject returned by Persistence API
*
* @param \eZ\Publish\SPI\Persistence\Content\Language $spiLanguage
*
* @return \eZ\Publish\API\Repository\Values\Content\Language
*/
protected function buildDomainObject( SPILanguage $spiLanguage )
{
return new Language(
array(
'id' => $spiLanguage->id,
'languageCode' => $spiLanguage->languageCode,
'name' => $spiLanguage->name,
'enabled' => $spiLanguage->isEnabled
)
);
}
}