]> git.mxchange.org Git - friendica.git/blob - src/Model/ProfileField.php
Add feedback and tests
[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\Depository\PermissionSet as PermissionSetDepository;
27 use Friendica\Security\PermissionSet\Entity\PermissionSet;
28 use Psr\Log\LoggerInterface;
29
30 /**
31  * Custom profile field model class.
32  *
33  * Custom profile fields are user-created arbitrary profile fields that can be assigned a permission set to restrict its
34  * display to specific Friendica contacts as it requires magic authentication to work.
35  *
36  * @property int    uid
37  * @property int    order
38  * @property int    psid
39  * @property string label
40  * @property string value
41  * @property string created
42  * @property string edited
43  * @property PermissionSet permissionset
44  */
45 class ProfileField extends BaseModel
46 {
47         /** @var PermissionSet */
48         private $permissionset;
49
50         /** @var PermissionSetDepository */
51         private $permissionSetDepository;
52
53         public function __construct(Database $dba, LoggerInterface $logger, PermissionSetDepository $permissionSetDepository, array $data = [])
54         {
55                 parent::__construct($dba, $logger, $data);
56
57                 $this->permissionSetDepository = $permissionSetDepository;
58         }
59
60         public function __get($name)
61         {
62                 $this->checkValid();
63
64                 switch ($name) {
65                         case 'permissionset':
66                                 $this->permissionset = $this->permissionset ?? $this->permissionSetDepository->selectOneForUser($this->uid, $this->psid);
67
68                                 $return = $this->permissionset;
69                                 break;
70                         default:
71                                 $return = parent::__get($name);
72                                 break;
73                 }
74
75                 return $return;
76         }
77 }