Alias.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Routing;
  11. use Symfony\Component\Routing\Exception\InvalidArgumentException;
  12. class Alias
  13. {
  14. private $id;
  15. private $deprecation = [];
  16. public function __construct(string $id)
  17. {
  18. $this->id = $id;
  19. }
  20. /**
  21. * @return static
  22. */
  23. public function withId(string $id): self
  24. {
  25. $new = clone $this;
  26. $new->id = $id;
  27. return $new;
  28. }
  29. /**
  30. * Returns the target name of this alias.
  31. *
  32. * @return string The target name
  33. */
  34. public function getId(): string
  35. {
  36. return $this->id;
  37. }
  38. /**
  39. * Whether this alias is deprecated, that means it should not be referenced anymore.
  40. *
  41. * @param string $package The name of the composer package that is triggering the deprecation
  42. * @param string $version The version of the package that introduced the deprecation
  43. * @param string $message The deprecation message to use
  44. *
  45. * @return $this
  46. *
  47. * @throws InvalidArgumentException when the message template is invalid
  48. */
  49. public function setDeprecated(string $package, string $version, string $message): self
  50. {
  51. if ('' !== $message) {
  52. if (preg_match('#[\r\n]|\*/#', $message)) {
  53. throw new InvalidArgumentException('Invalid characters found in deprecation template.');
  54. }
  55. if (!str_contains($message, '%alias_id%')) {
  56. throw new InvalidArgumentException('The deprecation template must contain the "%alias_id%" placeholder.');
  57. }
  58. }
  59. $this->deprecation = [
  60. 'package' => $package,
  61. 'version' => $version,
  62. 'message' => $message ?: 'The "%alias_id%" route alias is deprecated. You should stop using it, as it will be removed in the future.',
  63. ];
  64. return $this;
  65. }
  66. public function isDeprecated(): bool
  67. {
  68. return (bool) $this->deprecation;
  69. }
  70. /**
  71. * @param string $name Route name relying on this alias
  72. */
  73. public function getDeprecation(string $name): array
  74. {
  75. return [
  76. 'package' => $this->deprecation['package'],
  77. 'version' => $this->deprecation['version'],
  78. 'message' => str_replace('%alias_id%', $name, $this->deprecation['message']),
  79. ];
  80. }
  81. }