]> git.mxchange.org Git - friendica.git/blob - src/Model/ProfileField.php
Fill "last-item" with an empty date when bo date had been provided
[friendica.git] / src / Model / ProfileField.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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;
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\Repository\PermissionSet */
50         private $permissionSetRepository;
51
52         public function __construct(Database $dba, LoggerInterface $logger, \Friendica\Repository\PermissionSet $permissionSetRepository, array $data = [])
53         {
54                 parent::__construct($dba, $logger, $data);
55
56                 $this->permissionSetRepository = $permissionSetRepository;
57         }
58
59         public function __get($name)
60         {
61                 $this->checkValid();
62
63                 switch ($name) {
64                         case 'permissionset':
65                                 $this->permissionset =
66                                         $this->permissionset ??
67                                                 $this->permissionSetRepository->selectFirst(['id' => $this->psid, 'uid' => $this->uid]);
68
69                                 $return = $this->permissionset;
70                                 break;
71                         default:
72                                 $return = parent::__get($name);
73                                 break;
74                 }
75
76                 return $return;
77         }
78 }