Configuration.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. namespace Aws\ClientSideMonitoring;
  3. class Configuration implements ConfigurationInterface
  4. {
  5. private $clientId;
  6. private $enabled;
  7. private $host;
  8. private $port;
  9. /**
  10. * Constructs a new Configuration object with the specified CSM options set.
  11. *
  12. * @param mixed $enabled
  13. * @param string $host
  14. * @param string|int $port
  15. * @param string $clientId
  16. */
  17. public function __construct($enabled, $host, $port, $clientId = '')
  18. {
  19. $this->host = $host;
  20. $this->port = filter_var($port, FILTER_VALIDATE_INT);
  21. if ($this->port === false) {
  22. throw new \InvalidArgumentException(
  23. "CSM 'port' value must be an integer!");
  24. }
  25. // Unparsable $enabled flag errors on the side of disabling CSM
  26. $this->enabled = filter_var($enabled, FILTER_VALIDATE_BOOLEAN);
  27. $this->clientId = trim($clientId);
  28. }
  29. /**
  30. * {@inheritdoc}
  31. */
  32. public function isEnabled()
  33. {
  34. return $this->enabled;
  35. }
  36. /**
  37. * {@inheritdoc}
  38. */
  39. public function getClientId()
  40. {
  41. return $this->clientId;
  42. }
  43. /**
  44. * /{@inheritdoc}
  45. */
  46. public function getHost()
  47. {
  48. return $this->host;
  49. }
  50. /**
  51. * {@inheritdoc}
  52. */
  53. public function getPort()
  54. {
  55. return $this->port;
  56. }
  57. /**
  58. * {@inheritdoc}
  59. */
  60. public function toArray()
  61. {
  62. return [
  63. 'client_id' => $this->getClientId(),
  64. 'enabled' => $this->isEnabled(),
  65. 'host' => $this->getHost(),
  66. 'port' => $this->getPort()
  67. ];
  68. }
  69. }