]> git.mxchange.org Git - friendica.git/blob - src/Util/Security.php
Fix permissions when viewing photos, applying same fix to items as well
[friendica.git] / src / Util / Security.php
1 <?php
2 /**
3  * @file /src/Util/Security.php
4  */
5
6 namespace Friendica\Util;
7
8 use Friendica\BaseObject;
9 use Friendica\Database\DBA;
10 use Friendica\Model\Contact;
11 use Friendica\Model\Group;
12 use Friendica\Model\User;
13
14 /**
15  * Secures that User is allow to do requests
16  */
17 class Security extends BaseObject
18 {
19         public static function canWriteToUserWall($owner)
20         {
21                 static $verified = 0;
22
23                 if (!local_user() && !remote_user()) {
24                         return false;
25                 }
26
27                 $uid = local_user();
28                 if ($uid == $owner) {
29                         return true;
30                 }
31
32                 if (local_user() && ($owner == 0)) {
33                         return true;
34                 }
35
36                 if (remote_user($owner)) {
37                         // use remembered decision and avoid a DB lookup for each and every display item
38                         // DO NOT use this function if there are going to be multiple owners
39                         // We have a contact-id for an authenticated remote user, this block determines if the contact
40                         // belongs to this page owner, and has the necessary permissions to post content
41
42                         if ($verified === 2) {
43                                 return true;
44                         } elseif ($verified === 1) {
45                                 return false;
46                         } else {
47                                 $cid = remote_user($owner);
48                                 if (!$cid) {
49                                         return false;
50                                 }
51
52                                 $r = q("SELECT `contact`.*, `user`.`page-flags` FROM `contact` INNER JOIN `user` on `user`.`uid` = `contact`.`uid`
53                                         WHERE `contact`.`uid` = %d AND `contact`.`id` = %d AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
54                                         AND `user`.`blockwall` = 0 AND `readonly` = 0  AND (`contact`.`rel` IN (%d , %d) OR `user`.`page-flags` = %d) LIMIT 1",
55                                         intval($owner),
56                                         intval($cid),
57                                         intval(Contact::SHARING),
58                                         intval(Contact::FRIEND),
59                                         intval(User::PAGE_FLAGS_COMMUNITY)
60                                 );
61
62                                 if (DBA::isResult($r)) {
63                                         $verified = 2;
64                                         return true;
65                                 } else {
66                                         $verified = 1;
67                                 }
68                         }
69                 }
70
71                 return false;
72         }
73
74         /// @TODO $groups should be array
75         public static function getPermissionsSQLByUserId($owner_id, $remote_verified = false, $groups = null)
76         {
77                 $local_user = local_user();
78                 $remote_user = remote_user($owner_id);
79
80                 /*
81                  * Construct permissions
82                  *
83                  * default permissions - anonymous user
84                  */
85                 $sql = " AND allow_cid = ''
86                          AND allow_gid = ''
87                          AND deny_cid  = ''
88                          AND deny_gid  = '' ";
89
90                 /*
91                  * Profile owner - everything is visible
92                  */
93                 if ($local_user && $local_user == $owner_id) {
94                         $sql = '';
95                 /*
96                  * Authenticated visitor. Unless pre-verified,
97                  * check that the contact belongs to this $owner_id
98                  * and load the groups the visitor belongs to.
99                  * If pre-verified, the caller is expected to have already
100                  * done this and passed the groups into this function.
101                  */
102                 } elseif ($remote_user) {
103                         $cid = \Friendica\Core\Session::getVisitorContactIDForUserID($owner_id);
104
105                         /*
106                          * Authenticated visitor. Unless pre-verified,
107                          * check that the contact belongs to this $owner_id
108                          * and load the groups the visitor belongs to.
109                          * If pre-verified, the caller is expected to have already
110                          * done this and passed the groups into this function.
111                          */
112
113                         if (!$remote_verified) {
114                                 if ($cid && DBA::exists('contact', ['id' => $cid, 'uid' => $owner_id, 'blocked' => false])) {
115                                         $remote_verified = true;
116                                         $groups = Group::getIdsByContactId($cid);
117                                 }
118                         }
119
120                         if ($remote_verified) {
121                                 $gs = '<<>>'; // should be impossible to match
122
123                                 if (is_array($groups)) {
124                                         foreach ($groups as $g) {
125                                                 $gs .= '|<' . intval($g) . '>';
126                                         }
127                                 }
128
129                                 $sql = sprintf(
130                                         " AND (NOT (deny_cid REGEXP '<%d>' OR deny_gid REGEXP '%s')
131                                           AND (allow_cid REGEXP '<%d>' OR allow_gid REGEXP '%s' OR (allow_cid = '' AND allow_gid = ''))) ",
132                                         intval($cid),
133                                         DBA::escape($gs),
134                                         intval($cid),
135                                         DBA::escape($gs)
136                                 );
137                         }
138                 }
139                 return $sql;
140         }
141 }