aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/SystemTag/SystemTag.php
blob: 1a573dabeaa24f9cb0a02df9704298b9af3b4328 (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
<?php

declare(strict_types=1);
/**
 * SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-FileCopyrightText: 2016 ownCloud, Inc.
 * SPDX-License-Identifier: AGPL-3.0-only
 */
namespace OC\SystemTag;

use OCP\SystemTag\ISystemTag;

class SystemTag implements ISystemTag {
	public function __construct(
		private string $id,
		private string $name,
		private bool $userVisible,
		private bool $userAssignable,
		private ?string $etag = null,
		private ?string $color = null,
	) {
	}

	public function getId(): string {
		return $this->id;
	}

	public function getName(): string {
		return $this->name;
	}

	public function isUserVisible(): bool {
		return $this->userVisible;
	}

	public function isUserAssignable(): bool {
		return $this->userAssignable;
	}

	public function getAccessLevel(): int {
		if (!$this->userVisible) {
			return self::ACCESS_LEVEL_INVISIBLE;
		}

		if (!$this->userAssignable) {
			return self::ACCESS_LEVEL_RESTRICTED;
		}

		return self::ACCESS_LEVEL_PUBLIC;
	}

	public function getETag(): ?string {
		return $this->etag;
	}

	public function getColor(): ?string {
		return $this->color;
	}
}