EnforcementState.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright 2018 Christoph Wurst <christoph@winzerhof-wurst.at>
  5. *
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. *
  8. * @license GNU AGPL version 3 or any later version
  9. *
  10. * This program is free software: you can redistribute it and/or modify
  11. * it under the terms of the GNU Affero General Public License as
  12. * published by the Free Software Foundation, either version 3 of the
  13. * License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU Affero General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU Affero General Public License
  21. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. *
  23. */
  24. namespace OC\Authentication\TwoFactorAuth;
  25. use JsonSerializable;
  26. class EnforcementState implements JsonSerializable {
  27. /** @var bool */
  28. private $enforced;
  29. /** @var array */
  30. private $enforcedGroups;
  31. /** @var array */
  32. private $excludedGroups;
  33. /**
  34. * EnforcementState constructor.
  35. *
  36. * @param bool $enforced
  37. * @param string[] $enforcedGroups
  38. * @param string[] $excludedGroups
  39. */
  40. public function __construct(bool $enforced,
  41. array $enforcedGroups = [],
  42. array $excludedGroups = []) {
  43. $this->enforced = $enforced;
  44. $this->enforcedGroups = $enforcedGroups;
  45. $this->excludedGroups = $excludedGroups;
  46. }
  47. /**
  48. * @return bool
  49. */
  50. public function isEnforced(): bool {
  51. return $this->enforced;
  52. }
  53. /**
  54. * @return string[]
  55. */
  56. public function getEnforcedGroups(): array {
  57. return $this->enforcedGroups;
  58. }
  59. /**
  60. * @return string[]
  61. */
  62. public function getExcludedGroups(): array {
  63. return $this->excludedGroups;
  64. }
  65. public function jsonSerialize(): array {
  66. return [
  67. 'enforced' => $this->enforced,
  68. 'enforcedGroups' => $this->enforcedGroups,
  69. 'excludedGroups' => $this->excludedGroups,
  70. ];
  71. }
  72. }