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