You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
2.3 KiB

3 years ago
  1. <?php
  2. declare(strict_types=1);
  3. /**
  4. * @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>
  5. *
  6. * @author Christoph Wurst <christoph@winzerhof-wurst.at>
  7. * @author Julius Härtl <jus@bitgrid.net>
  8. *
  9. * @license GNU AGPL version 3 or any later version
  10. *
  11. * This program is free software: you can redistribute it and/or modify
  12. * it under the terms of the GNU Affero General Public License as
  13. * published by the Free Software Foundation, either version 3 of the
  14. * License, or (at your option) any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU Affero General Public License for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public License
  22. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. *
  24. */
  25. namespace OC\Accounts;
  26. use OCP\Accounts\IAccount;
  27. use OCP\Accounts\IAccountProperty;
  28. use OCP\Accounts\PropertyDoesNotExistException;
  29. use OCP\IUser;
  30. class Account implements IAccount {
  31. /** @var IAccountProperty[] */
  32. private $properties = [];
  33. /** @var IUser */
  34. private $user;
  35. public function __construct(IUser $user) {
  36. $this->user = $user;
  37. }
  38. public function setProperty(string $property, string $value, string $scope, string $verified): IAccount {
  39. $this->properties[$property] = new AccountProperty($property, $value, $scope, $verified);
  40. return $this;
  41. }
  42. public function getProperty(string $property): IAccountProperty {
  43. if (!array_key_exists($property, $this->properties)) {
  44. throw new PropertyDoesNotExistException($property);
  45. }
  46. return $this->properties[$property];
  47. }
  48. public function getProperties(): array {
  49. return $this->properties;
  50. }
  51. public function getFilteredProperties(string $scope = null, string $verified = null): array {
  52. return \array_filter($this->properties, function (IAccountProperty $obj) use ($scope, $verified) {
  53. if ($scope !== null && $scope !== $obj->getScope()) {
  54. return false;
  55. }
  56. if ($verified !== null && $verified !== $obj->getVerified()) {
  57. return false;
  58. }
  59. return true;
  60. });
  61. }
  62. public function jsonSerialize() {
  63. return $this->properties;
  64. }
  65. public function getUser(): IUser {
  66. return $this->user;
  67. }
  68. }