aboutsummaryrefslogtreecommitdiffstats
path: root/.github
Commit message (Expand)AuthorAgeFilesLines
* SONAR-13921 Delete upgrade plugin github actionMalena Ebert2020-10-121-46/+0
* Revert "Update dogfood.yml"Malena Ebert2020-10-011-3/+0
* Update dogfood.ymlMalena Ebert2020-09-281-0/+3
* Use v2 of the github action release processMalena Ebert2020-09-181-7/+22
* set timeout for release action to 60 minutes Tobias Trabelsi2020-07-091-0/+1
* Feature/me/update usage of release gha (#2798)Malena Ebert2020-05-181-0/+3
* Revert "Add 8.3 sync github action"Jeremy Davis2020-05-071-30/+0
* Add 8.3 sync github actionJeremy Davis2020-05-061-0/+30
* SONAR-12884 Re-organize code, improve generated Jira ticket, update commit me...Wouter Admiraal2020-04-161-4/+10
* Add default reviewer for upgrade plugins PRWouter Admiraal2020-03-261-5/+2
* SONAR-13155 schedule listing of available dependency upgradesSimon Brandhof2020-03-251-0/+37
* Migrate release procedure to GH actionsWouter Admiraal2020-03-201-0/+40
* BUILD-797 Prevent double trigger of dogfood merge taskJeremy Davis2020-03-131-3/+0
* BUILD-756 Migrate dogfood merge task to GH actionsWouter Admiraal2020-03-051-0/+29
* BUILD-758 Migrate nightly build task to GH actionsWouter Admiraal2020-02-261-0/+29
* BUILD-757 Sync private and public reposWouter Admiraal2020-02-262-0/+60
* SONAR-12665 add Bot updating bundled plugins to latest releaseSébastien Lesaint2019-12-041-0/+43
ble28'>backport/46140/stable28 Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/lib/private/Accounts/AccountProperty.php
blob: 1a21baf96981ae3b9514b53d4dbaa7c5f1be28c1 (plain)
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
<?php

declare(strict_types=1);

/**
 * @copyright Copyright (c) 2018 Julius Härtl <jus@bitgrid.net>
 *
 * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
 * @author Julius Härtl <jus@bitgrid.net>
 * @author Vincent Petry <vincent@nextcloud.com>
 *
 * @license GNU AGPL version 3 or any later version
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 *
 */
namespace OC\Accounts;

use OCP\Accounts\IAccountManager;
use OCP\Accounts\IAccountProperty;

class AccountProperty implements IAccountProperty {

	/** @var string */
	private $name;
	/** @var string */
	private $value;
	/** @var string */
	private $scope;
	/** @var string */
	private $verified;
	/** @var string */
	private $verificationData;

	public function __construct(string $name, string $value, string $scope, string $verified, string $verificationData) {
		$this->name = $name;
		$this->value = $value;
		$this->setScope($scope);
		$this->verified = $verified;
		$this->verificationData = $verificationData;
	}

	public function jsonSerialize() {
		return [
			'name' => $this->getName(),
			'value' => $this->getValue(),
			'scope' => $this->getScope(),
			'verified' => $this->getVerified(),
			'verificationData' => $this->getVerificationData(),
		];
	}

	/**
	 * Set the value of a property
	 *
	 * @since 15.0.0
	 *
	 * @param string $value
	 * @return IAccountProperty
	 */
	public function setValue(string $value): IAccountProperty {
		$this->value = $value;
		return $this;
	}

	/**
	 * Set the scope of a property
	 *
	 * @since 15.0.0
	 *
	 * @param string $scope
	 * @return IAccountProperty
	 */
	public function setScope(string $scope): IAccountProperty {
		$newScope = $this->mapScopeToV2($scope);
		if (!in_array($newScope, [
			IAccountManager::SCOPE_LOCAL,
			IAccountManager::SCOPE_FEDERATED,
			IAccountManager::SCOPE_PRIVATE,
			IAccountManager::SCOPE_PUBLISHED
		])) {
			throw new \InvalidArgumentException('Invalid scope');
		}
		$this->scope = $newScope;
		return $this;
	}

	/**
	 * Set the verification status of a property
	 *
	 * @since 15.0.0
	 *
	 * @param string $verified
	 * @return IAccountProperty
	 */
	public function setVerified(string $verified): IAccountProperty {
		$this->verified = $verified;
		return $this;
	}

	/**
	 * Get the name of a property
	 *
	 * @since 15.0.0
	 *
	 * @return string
	 */
	public function getName(): string {
		return $this->name;
	}

	/**
	 * Get the value of a property
	 *
	 * @since 15.0.0
	 *
	 * @return string
	 */
	public function getValue(): string {
		return $this->value;
	}

	/**
	 * Get the scope of a property
	 *
	 * @since 15.0.0
	 *
	 * @return string
	 */
	public function getScope(): string {
		return $this->scope;
	}

	public static function mapScopeToV2(string $scope): string {
		if (strpos($scope, 'v2-') === 0) {
			return $scope;
		}

		switch ($scope) {
			case IAccountManager::VISIBILITY_PRIVATE:
				return IAccountManager::SCOPE_LOCAL;
			case IAccountManager::VISIBILITY_CONTACTS_ONLY:
				return IAccountManager::SCOPE_FEDERATED;
			case IAccountManager::VISIBILITY_PUBLIC:
				return IAccountManager::SCOPE_PUBLISHED;
			default:
				return $scope;
		}
	}

	/**
	 * Get the verification status of a property
	 *
	 * @since 15.0.0
	 *
	 * @return string
	 */
	public function getVerified(): string {
		return $this->verified;
	}

	public function setVerificationData(string $verificationData): IAccountProperty {
		$this->verificationData = $verificationData;
		return $this;
	}

	public function getVerificationData(): string {
		return $this->verificationData;
	}
}