forked from ezsystems/ezpublish-kernel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
URLAliasService.php
698 lines (626 loc) · 21.8 KB
/
URLAliasService.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
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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
<?php
/**
* File containing the eZ\Publish\Core\Repository\URLAliasService class.
*
* @copyright Copyright (C) 1999-2014 eZ Systems AS. All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.txt GNU General Public License v2
* @version //autogentag//
* @package eZ\Publish\Core\Repository
*/
namespace eZ\Publish\Core\Repository;
use eZ\Publish\API\Repository\URLAliasService as URLAliasServiceInterface;
use eZ\Publish\API\Repository\Repository as RepositoryInterface;
use eZ\Publish\SPI\Persistence\Content\UrlAlias\Handler;
use eZ\Publish\API\Repository\Values\Content\Location;
use eZ\Publish\API\Repository\Values\Content\URLAlias;
use eZ\Publish\SPI\Persistence\Content\URLAlias as SPIURLAlias;
use eZ\Publish\Core\Base\Exceptions\NotFoundException;
use eZ\Publish\Core\Base\Exceptions\InvalidArgumentException;
use eZ\Publish\API\Repository\Exceptions\ForbiddenException;
use Exception;
/**
* URLAlias service
*
* @example Examples/urlalias.php
*
* @package eZ\Publish\Core\Repository
*/
class URLAliasService implements URLAliasServiceInterface
{
/**
* @var \eZ\Publish\API\Repository\Repository
*/
protected $repository;
/**
* @var \eZ\Publish\SPI\Persistence\Content\UrlAlias\Handler
*/
protected $urlAliasHandler;
/**
* @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\UrlAlias\Handler $urlAliasHandler
* @param array $settings
*/
public function __construct( RepositoryInterface $repository, Handler $urlAliasHandler, array $settings = array() )
{
$this->repository = $repository;
$this->urlAliasHandler = $urlAliasHandler;
// Union makes sure default settings are ignored if provided in argument
$this->settings = $settings + array(
"showAllTranslations" => false
);
// Get prioritized languages from language service to not have to call it several times
$this->settings['prioritizedLanguageList'] = $repository->getContentLanguageService()->getPrioritizedLanguageCodeList();
}
/**
* Create a user chosen $alias pointing to $location in $languageCode.
*
* This method runs URL filters and transformers before storing them.
* Hence the path returned in the URLAlias Value may differ from the given.
* $alwaysAvailable makes the alias available in all languages.
*
* @param \eZ\Publish\API\Repository\Values\Content\Location $location
* @param string $path
* @param boolean $forwarding if true a redirect is performed
* @param string $languageCode the languageCode for which this alias is valid
* @param boolean $alwaysAvailable
*
* @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if the path already exists for the given language
*
* @return \eZ\Publish\API\Repository\Values\Content\URLAlias
*/
public function createUrlAlias( Location $location, $path, $languageCode, $forwarding = false, $alwaysAvailable = false )
{
$path = $this->cleanUrl( $path );
$this->repository->beginTransaction();
try
{
$spiUrlAlias = $this->urlAliasHandler->createCustomUrlAlias(
$location->id,
$path,
$forwarding,
$languageCode,
$alwaysAvailable
);
$this->repository->commit();
}
catch ( ForbiddenException $e )
{
$this->repository->rollback();
throw new InvalidArgumentException(
"\$path",
$e->getMessage(),
$e
);
}
catch ( Exception $e )
{
$this->repository->rollback();
throw $e;
}
return $this->buildUrlAliasDomainObject( $spiUrlAlias, $path );
}
/**
* Create a user chosen $alias pointing to a resource in $languageCode.
*
* This method does not handle location resources - if a user enters a location target
* the createCustomUrlAlias method has to be used.
* This method runs URL filters and and transformers before storing them.
* Hence the path returned in the URLAlias Value may differ from the given.
*
* $alwaysAvailable makes the alias available in all languages.
*
* @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if the path already exists for the given
* language or if resource is not valid
*
* @param string $resource
* @param string $path
* @param string $languageCode
* @param boolean $forwarding
* @param boolean $alwaysAvailable
*
* @return \eZ\Publish\API\Repository\Values\Content\URLAlias
*/
public function createGlobalUrlAlias( $resource, $path, $languageCode, $forwarding = false, $alwaysAvailable = false )
{
if ( !preg_match( "#^([a-zA-Z0-9_]+):(.+)$#", $resource, $matches ) )
{
throw new InvalidArgumentException( "\$resource", "argument is not valid" );
}
$path = $this->cleanUrl( $path );
if ( $matches[1] === "eznode" || 0 === strpos( $resource, "module:content/view/full/" ) )
{
if ( $matches[1] === "eznode" )
{
$locationId = $matches[2];
}
else
{
$resourcePath = explode( "/", $matches[2] );
$locationId = end( $resourcePath );
}
return $this->createUrlAlias(
$this->repository->getLocationService()->loadLocation( $locationId ),
$path,
$languageCode,
$forwarding,
$alwaysAvailable
);
}
$this->repository->beginTransaction();
try
{
$spiUrlAlias = $this->urlAliasHandler->createGlobalUrlAlias(
$matches[1] . ":" . $this->cleanUrl( $matches[2] ),
$path,
$forwarding,
$languageCode,
$alwaysAvailable
);
$this->repository->commit();
}
catch ( ForbiddenException $e )
{
$this->repository->rollback();
throw new InvalidArgumentException( "\$path", $e->getMessage(), $e );
}
catch ( Exception $e )
{
$this->repository->rollback();
throw $e;
}
return $this->buildUrlAliasDomainObject( $spiUrlAlias, $path );
}
/**
* List of url aliases pointing to $location, sorted by language priority.
*
* @param \eZ\Publish\API\Repository\Values\Content\Location $location
* @param boolean $custom if true the user generated aliases are listed otherwise the autogenerated
* @param string $languageCode filters those which are valid for the given language
*
* @return \eZ\Publish\API\Repository\Values\Content\URLAlias[]
*/
public function listLocationAliases( Location $location, $custom = true, $languageCode = null )
{
$urlAliasList = array();
$spiUrlAliasList = $this->urlAliasHandler->listURLAliasesForLocation(
$location->id,
$custom
);
foreach ( $spiUrlAliasList as $spiUrlAlias )
{
if ( !$this->isUrlAliasLoadable( $spiUrlAlias, $languageCode ) )
{
continue;
}
$path = $this->extractPath( $spiUrlAlias, $languageCode );
if ( $path === false )
{
continue;
}
$urlAliasList[$spiUrlAlias->id] = $this->buildUrlAliasDomainObject( $spiUrlAlias, $path );
}
$prioritizedAliasList = array();
foreach ( $this->settings["prioritizedLanguageList"] as $languageCode )
{
foreach ( $urlAliasList as $urlAlias )
{
foreach ( $urlAlias->languageCodes as $aliasLanguageCode )
{
if ( $aliasLanguageCode === $languageCode )
{
$prioritizedAliasList[$urlAlias->id] = $urlAlias;
break;
}
}
}
}
// Add aliases not matched by prioritized language to the end of the list
return array_values( $prioritizedAliasList + $urlAliasList );
}
/**
* Determines alias language code.
*
* Method will return false if language code can't be matched against alias language codes or language settings.
*
* @param \eZ\Publish\SPI\Persistence\Content\URLAlias $spiUrlAlias
* @param string|null $languageCode
*
* @return string|boolean
*/
protected function selectAliasLanguageCode( SPIURLAlias $spiUrlAlias, $languageCode )
{
if ( isset( $languageCode ) && !in_array( $languageCode, $spiUrlAlias->languageCodes ) )
{
return false;
}
foreach ( $this->settings["prioritizedLanguageList"] as $languageCode )
{
if ( in_array( $languageCode, $spiUrlAlias->languageCodes ) )
{
return $languageCode;
}
}
if ( $spiUrlAlias->alwaysAvailable || $this->settings["showAllTranslations"] )
{
$lastLevelData = end( $spiUrlAlias->pathData );
reset( $lastLevelData["translations"] );
return key( $lastLevelData["translations"] );
}
return false;
}
/**
* Returns path extracted from normalized path data returned from persistence, using language settings.
*
* Will return false if path could not be determined.
*
* @param \eZ\Publish\SPI\Persistence\Content\URLAlias $spiUrlAlias
* @param string $languageCode
*
* @return string|boolean
*/
protected function extractPath( SPIURLAlias $spiUrlAlias, $languageCode )
{
$pathData = array();
$pathLevels = count( $spiUrlAlias->pathData );
foreach ( $spiUrlAlias->pathData as $level => $levelEntries )
{
if ( $level === $pathLevels - 1 )
{
$prioritizedLanguageCode = $this->selectAliasLanguageCode( $spiUrlAlias, $languageCode );
}
else
{
$prioritizedLanguageCode = $this->choosePrioritizedLanguageCode( $levelEntries );
}
if ( $prioritizedLanguageCode === false )
{
return false;
}
$pathData[$level] = $levelEntries["translations"][$prioritizedLanguageCode];
}
return implode( "/", $pathData );
}
/**
* Returns language code with highest priority.
*
* Will return false if language code could nto be matched with language settings in place.
*
* @param array $entries
*
* @return string|boolean
*/
protected function choosePrioritizedLanguageCode( array $entries )
{
foreach ( $this->settings["prioritizedLanguageList"] as $prioritizedLanguageCode )
{
if ( isset( $entries["translations"][$prioritizedLanguageCode] ) )
{
return $prioritizedLanguageCode;
}
}
if ( $entries["always-available"] || $this->settings["showAllTranslations"] )
{
reset( $entries["translations"] );
return key( $entries["translations"] );
}
return false;
}
/**
* Matches path string with normalized path data returned from persistence.
*
* Returns matched path string (possibly case corrected) and array of corresponding language codes or false
* if path could not be matched.
*
* @param \eZ\Publish\SPI\Persistence\Content\URLAlias $spiUrlAlias
* @param string $path
* @param string $languageCode
*
* @return array
*/
protected function matchPath( SPIURLAlias $spiUrlAlias, $path, $languageCode )
{
$matchedPathElements = array();
$matchedPathLanguageCodes = array();
$pathElements = explode( "/", $path );
$pathLevels = count( $spiUrlAlias->pathData );
foreach ( $pathElements as $level => $pathElement )
{
if ( $level === $pathLevels - 1 )
{
$matchedLanguageCode = $this->selectAliasLanguageCode( $spiUrlAlias, $languageCode );
}
else
{
$matchedLanguageCode = $this->matchLanguageCode( $spiUrlAlias->pathData[$level], $pathElement );
}
if ( $matchedLanguageCode === false )
{
return array( false, false );
}
$matchedPathLanguageCodes[] = $matchedLanguageCode;
$matchedPathElements[] = $spiUrlAlias->pathData[$level]["translations"][$matchedLanguageCode];
}
return array( implode( "/", $matchedPathElements ), $matchedPathLanguageCodes );
}
/**
* @param array $pathElementData
* @param string $pathElement
*
* @return string|boolean
*/
protected function matchLanguageCode( array $pathElementData, $pathElement )
{
foreach ( $pathElementData["translations"] as $languageCode => $translation )
{
if ( strtolower( $pathElement ) === strtolower( $translation ) )
{
return $languageCode;
}
}
return false;
}
/**
* Returns true or false depending if URL alias is loadable or not for language settings in place.
*
* @param \eZ\Publish\SPI\Persistence\Content\URLAlias $spiUrlAlias
* @param string|null $languageCode
*
* @return boolean
*/
protected function isUrlAliasLoadable( SPIURLAlias $spiUrlAlias, $languageCode )
{
if ( isset( $languageCode ) && !in_array( $languageCode, $spiUrlAlias->languageCodes ) )
{
return false;
}
if ( $this->settings["showAllTranslations"] )
{
return true;
}
foreach ( $spiUrlAlias->pathData as $levelPathData )
{
if ( $levelPathData["always-available"] )
{
continue;
}
foreach ( $levelPathData["translations"] as $translationLanguageCode => $translation )
{
if ( in_array( $translationLanguageCode, $this->settings["prioritizedLanguageList"] ) )
{
continue 2;
}
}
return false;
}
return true;
}
/**
* Returns true or false depending if URL alias is loadable or not for language settings in place.
*
* @param array $pathData
* @param array $languageCodes
*
* @return boolean
*/
protected function isPathLoadable( array $pathData, array $languageCodes )
{
if ( $this->settings["showAllTranslations"] )
{
return true;
}
foreach ( $pathData as $level => $levelPathData )
{
if ( $levelPathData["always-available"] )
{
continue;
}
if ( in_array( $languageCodes[$level], $this->settings["prioritizedLanguageList"] ) )
{
continue;
}
return false;
}
return true;
}
/**
* List global aliases
*
* @param string $languageCode filters those which are valid for the given language
* @param int $offset
* @param int $limit
*
* @return \eZ\Publish\API\Repository\Values\Content\URLAlias[]
*/
public function listGlobalAliases( $languageCode = null, $offset = 0, $limit = -1 )
{
$urlAliasList = array();
$spiUrlAliasList = $this->urlAliasHandler->listGlobalURLAliases(
$languageCode,
$offset,
$limit
);
foreach ( $spiUrlAliasList as $spiUrlAlias )
{
$path = $this->extractPath( $spiUrlAlias, $languageCode );
if ( $path === false )
{
continue;
}
$urlAliasList[] = $this->buildUrlAliasDomainObject( $spiUrlAlias, $path );
}
return $urlAliasList;
}
/**
* Removes urls aliases.
*
* This method does not remove autogenerated aliases for locations.
*
* @throws \eZ\Publish\API\Repository\Exceptions\InvalidArgumentException if alias list contains
* autogenerated alias
*
* @param \eZ\Publish\API\Repository\Values\Content\URLAlias[] $aliasList
*
* @return void
*/
public function removeAliases( array $aliasList )
{
$spiUrlAliasList = array();
foreach ( $aliasList as $alias )
{
if ( !$alias->isCustom )
{
throw new InvalidArgumentException(
"\$aliasList",
"Alias list contains autogenerated alias"
);
}
$spiUrlAliasList[] = $this->buildSPIUrlAlias( $alias );
}
$this->repository->beginTransaction();
try
{
$this->urlAliasHandler->removeURLAliases( $spiUrlAliasList );
$this->repository->commit();
}
catch ( Exception $e )
{
$this->repository->rollback();
throw $e;
}
}
/**
* Builds persistence domain object.
*
* @param \eZ\Publish\API\Repository\Values\Content\URLAlias $urlAlias
*
* @return \eZ\Publish\SPI\Persistence\Content\URLAlias
*/
protected function buildSPIUrlAlias( URLAlias $urlAlias )
{
return new SPIURLAlias(
array(
"id" => $urlAlias->id,
"type" => $urlAlias->type,
"destination" => $urlAlias->destination,
"isCustom" => $urlAlias->isCustom
)
);
}
/**
* looks up the URLAlias for the given url.
*
* @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if the path does not exist or is not valid for the given language
*
* @param string $url
* @param string $languageCode
*
* @return \eZ\Publish\API\Repository\Values\Content\URLAlias
*/
public function lookup( $url, $languageCode = null )
{
$url = $this->cleanUrl( $url );
$spiUrlAlias = $this->urlAliasHandler->lookup( $url );
list( $path, $languageCodes ) = $this->matchPath( $spiUrlAlias, $url, $languageCode );
if ( $path === false || !$this->isPathLoadable( $spiUrlAlias->pathData, $languageCodes ) )
{
throw new NotFoundException( "URLAlias", $url );
}
return $this->buildUrlAliasDomainObject( $spiUrlAlias, $path );
}
/**
* Returns the URL alias for the given location in the given language.
*
* If $languageCode is null the method returns the url alias in the most prioritized language.
*
* @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException if no url alias exist for the given language
*
* @param \eZ\Publish\API\Repository\Values\Content\Location $location
* @param string $languageCode
*
* @return \eZ\Publish\API\Repository\Values\Content\URLAlias
*/
public function reverseLookup( Location $location, $languageCode = null )
{
$urlAliases = $this->listLocationAliases( $location, false, $languageCode );
foreach ( $this->settings["prioritizedLanguageList"] as $prioritizedLanguageCode )
{
foreach ( $urlAliases as $urlAlias )
{
if ( in_array( $prioritizedLanguageCode, $urlAlias->languageCodes ) )
{
return $urlAlias;
}
}
}
foreach ( $urlAliases as $urlAlias )
{
if ( $urlAlias->alwaysAvailable )
{
return $urlAlias;
}
}
if ( !empty( $urlAliases ) && $this->settings["showAllTranslations"] )
{
return reset( $urlAliases );
}
throw new NotFoundException( "URLAlias", $location->id );
}
/**
* Loads URL alias by given $id
*
* @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException
*
* @param string $id
*
* @return \eZ\Publish\API\Repository\Values\Content\URLAlias
*/
public function load( $id )
{
$spiUrlAlias = $this->urlAliasHandler->loadUrlAlias( $id );
$path = $this->extractPath( $spiUrlAlias, null );
if ( $path === false )
{
throw new NotFoundException( "URLAlias", $id );
}
return $this->buildUrlAliasDomainObject( $spiUrlAlias, $path );
}
/**
* @param string $url
*
* @return string
*/
protected function cleanUrl( $url )
{
return trim( $url, "/ " );
}
/**
* Builds API UrlAlias object from given SPI UrlAlias object
*
* @param \eZ\Publish\SPI\Persistence\Content\URLAlias $spiUrlAlias
* @param string|null $path
*
* @return \eZ\Publish\API\Repository\Values\Content\URLAlias
*/
protected function buildUrlAliasDomainObject( SPIURLAlias $spiUrlAlias, $path )
{
return new URLAlias(
array(
"id" => $spiUrlAlias->id,
"type" => $spiUrlAlias->type,
"destination" => $spiUrlAlias->destination,
"languageCodes" => $spiUrlAlias->languageCodes,
"alwaysAvailable" => $spiUrlAlias->alwaysAvailable,
"path" => "/" . $path,
"isHistory" => $spiUrlAlias->isHistory,
"isCustom" => $spiUrlAlias->isCustom,
"forward" => $spiUrlAlias->forward
)
);
}
}