]> git.mxchange.org Git - friendica.git/blob - src/Model/ProfileField.php
Migrate PermissionSet to Depository paradigm
[friendica.git] / src / Model / ProfileField.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Model;
23
24 use Friendica\BaseModel;
25 use Friendica\Database\Database;
26 use Friendica\Security\PermissionSet\Entity\PermissionSet;
27 use Psr\Log\LoggerInterface;
28
29 /**
30  * Custom profile field model class.
31  *
32  * Custom profile fields are user-created arbitrary profile fields that can be assigned a permission set to restrict its
33  * display to specific Friendica contacts as it requires magic authentication to work.
34  *
35  * @property int    uid
36  * @property int    order
37  * @property int    psid
38  * @property string label
39  * @property string value
40  * @property string created
41  * @property string edited
42  * @property PermissionSet permissionset
43  */
44 class ProfileField extends BaseModel
45 {
46         /** @var PermissionSet */
47         private $permissionset;
48
49         /** @var \Friendica\Security\PermissionSet\Depository\PermissionSet */
50         private $permissionSetDepository;
51
52         public function __construct(Database $dba, LoggerInterface $logger,\Friendica\Security\PermissionSet\Depository\PermissionSet $permissionSetDepository, array $data = [])
53         {
54                 parent::__construct($dba, $logger, $data);
55
56                 $this->permissionSetDepository = $permissionSetDepository;
57         }
58
59         public function __get($name)
60         {
61                 $this->checkValid();
62
63                 switch ($name) {
64                         case 'permissionset':
65                                 $this->permissionset = $this->permissionset ?? $this->permissionSetDepository->selectOneById($this->psid);
66
67                                 $return = $this->permissionset;
68                                 break;
69                         default:
70                                 $return = parent::__get($name);
71                                 break;
72                 }
73
74                 return $return;
75         }
76 }