]> git.mxchange.org Git - friendica.git/blob - src/Module/Profile/Status.php
Remove direct calls to App->user
[friendica.git] / src / Module / Profile / Status.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\Module\Profile;
23
24 use Friendica\Content\Nav;
25 use Friendica\Content\Pager;
26 use Friendica\Content\Widget;
27 use Friendica\Core\ACL;
28 use Friendica\Core\Protocol;
29 use Friendica\Core\Session;
30 use Friendica\Database\DBA;
31 use Friendica\DI;
32 use Friendica\Model\Item;
33 use Friendica\Model\Post;
34 use Friendica\Model\Post\Category;
35 use Friendica\Model\Profile as ProfileModel;
36 use Friendica\Model\User;
37 use Friendica\Model\Verb;
38 use Friendica\Module\BaseProfile;
39 use Friendica\Module\Security\Login;
40 use Friendica\Network\HTTPException;
41 use Friendica\Protocol\Activity;
42 use Friendica\Util\DateTimeFormat;
43 use Friendica\Security\Security;
44 use Friendica\Util\Strings;
45 use Friendica\Util\XML;
46
47 class Status extends BaseProfile
48 {
49         public static function content(array $parameters = [])
50         {
51                 $args = DI::args();
52
53                 $a = DI::app();
54
55                 $profile = ProfileModel::load($a, $parameters['nickname']);
56
57                 if (empty($profile)) {
58                         throw new HTTPException\NotFoundException(DI::l10n()->t('User not found.'));
59                 }
60
61                 if (!$profile['net-publish']) {
62                         DI::page()['htmlhead'] .= '<meta content="noindex, noarchive" name="robots" />' . "\n";
63                 }
64
65                 DI::page()['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . DI::baseUrl() . '/dfrn_poll/' . $parameters['nickname'] . '" title="DFRN: ' . DI::l10n()->t('%s\'s timeline', $profile['name']) . '"/>' . "\n";
66                 DI::page()['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . DI::baseUrl() . '/feed/' . $parameters['nickname'] . '/" title="' . DI::l10n()->t('%s\'s posts', $profile['name']) . '"/>' . "\n";
67                 DI::page()['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . DI::baseUrl() . '/feed/' . $parameters['nickname'] . '/comments" title="' . DI::l10n()->t('%s\'s comments', $profile['name']) . '"/>' . "\n";
68                 DI::page()['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . DI::baseUrl() . '/feed/' . $parameters['nickname'] . '/activity" title="' . DI::l10n()->t('%s\'s timeline', $profile['name']) . '"/>' . "\n";
69
70                 $category = $datequery = $datequery2 = '';
71
72                 $dtFormat = DI::dtFormat();
73
74                 if ($args->getArgc() > 3) {
75                         for ($x = 3; $x < $args->getArgc(); $x++) {
76                                 if ($dtFormat->isYearMonthDay($args->get($x))) {
77                                         if ($datequery) {
78                                                 $datequery2 = Strings::escapeHtml($args->get($x));
79                                         } else {
80                                                 $datequery = Strings::escapeHtml($args->get($x));
81                                         }
82                                 } else {
83                                         $category = $args->get($x);
84                                 }
85                         }
86                 }
87
88                 if (empty($category)) {
89                         $category = $_GET['category'] ?? '';
90                 }
91
92                 $hashtags = $_GET['tag'] ?? '';
93
94                 if (DI::config()->get('system', 'block_public') && !local_user() && !Session::getRemoteContactID($profile['uid'])) {
95                         return Login::form();
96                 }
97
98                 $o = '';
99
100                 if ($profile['uid'] == local_user()) {
101                         Nav::setSelected('home');
102                 }
103
104                 $remote_contact = Session::getRemoteContactID($profile['uid']);
105                 $is_owner = local_user() == $profile['uid'];
106                 $last_updated_key = "profile:" . $profile['uid'] . ":" . local_user() . ":" . $remote_contact;
107
108                 if (!empty($profile['hidewall']) && !$is_owner && !$remote_contact) {
109                         notice(DI::l10n()->t('Access to this profile has been restricted.'));
110                         return '';
111                 }
112
113                 $o .= self::getTabsHTML($a, 'status', $is_owner, $profile['nickname'], $profile['hide-friends']);
114
115                 $o .= Widget::commonFriendsVisitor($profile['uid'], $profile['nickname']);
116
117                 $commpage = $profile['page-flags'] == User::PAGE_FLAGS_COMMUNITY;
118                 $commvisitor = $commpage && $remote_contact;
119
120                 DI::page()['aside'] .= Widget::postedByYear(DI::baseUrl() . '/profile/' . $profile['nickname'] . '/status', $profile['profile_uid'] ?? 0, true);
121                 DI::page()['aside'] .= Widget::categories(DI::baseUrl() . '/profile/' . $profile['nickname'] . '/status', XML::escape($category));
122                 DI::page()['aside'] .= Widget::tagCloud($profile['uid']);
123
124                 if (Security::canWriteToUserWall($profile['uid'])) {
125                         $x = [
126                                 'is_owner' => $is_owner,
127                                 'allow_location' => ($is_owner || $commvisitor) && $profile['allow_location'],
128                                 'default_location' => $is_owner ? $a->getUserValue('default-location') : '',
129                                 'nickname' => $profile['nickname'],
130                                 'lockstate' => ACL::getLockstateForUserId($a->getUserId()) ? 'lock' : 'unlock',
131                                 'acl' => $is_owner ? ACL::getFullSelectorHTML(DI::page(), $a->user, true) : '',
132                                 'bang' => '',
133                                 'visitor' => $is_owner || $commvisitor ? 'block' : 'none',
134                                 'profile_uid' => $profile['uid'],
135                         ];
136
137                         $o .= status_editor($a, $x);
138                 }
139
140                 // Get permissions SQL - if $remote_contact is true, our remote user has been pre-verified and we already have fetched his/her groups
141                 $condition = Item::getPermissionsConditionArrayByUserId($profile['uid']);
142
143                 $last_updated_array = Session::get('last_updated', []);
144
145                 if (!empty($category)) {
146                         $condition = DBA::mergeConditions($condition, ["`uri-id` IN (SELECT `uri-id` FROM `category-view` WHERE `name` = ? AND `type` = ? AND `uid` = ?)",
147                                 $category, Category::CATEGORY, $profile['uid']]);
148                 }
149
150                 if (!empty($hashtags)) {
151                         $condition = DBA::mergeConditions($condition, ["`uri-id` IN (SELECT `uri-id` FROM `tag-search-view` WHERE `name` = ? AND `uid` = ?)",
152                                 $hashtags, $profile['uid']]);
153                 }
154
155                 if (!empty($datequery)) {
156                         $condition = DBA::mergeConditions($condition, ["`received` <= ?", DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get())]);
157                 }
158                 if (!empty($datequery2)) {
159                         $condition = DBA::mergeConditions($condition, ["`received` >= ?", DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get())]);
160                 }
161
162                 // Does the profile page belong to a forum?
163                 // If not then we can improve the performance with an additional condition
164                 $condition2 = ['uid' => $profile['uid'], 'page-flags' => [User::PAGE_FLAGS_COMMUNITY, User::PAGE_FLAGS_PRVGROUP]];
165                 if (!DBA::exists('user', $condition2)) {
166                         $condition = DBA::mergeConditions($condition, ['contact-id' => $profile['id']]);
167                 }
168
169                 if (DI::mode()->isMobile()) {
170                         $itemspage_network = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
171                                 DI::config()->get('system', 'itemspage_network_mobile'));
172                 } else {
173                         $itemspage_network = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
174                                 DI::config()->get('system', 'itemspage_network'));
175                 }
176
177                 $condition = DBA::mergeConditions($condition, ["((`gravity` = ? AND `wall`) OR
178                         (`gravity` = ? AND `vid` = ? AND `origin`
179                         AND EXISTS(SELECT `uri-id` FROM `post` WHERE `gravity` = ? AND `network` IN (?, ?, ?, ?)
180                                 AND `uri-id` = `post-user-view`.`thr-parent-id`)))",
181                         GRAVITY_PARENT, GRAVITY_ACTIVITY, Verb::getID(Activity::ANNOUNCE), GRAVITY_PARENT,
182                         Protocol::DFRN, Protocol::ACTIVITYPUB, Protocol::DIASPORA, Protocol::OSTATUS]);
183
184                 $condition = DBA::mergeConditions($condition, ['uid' => $profile['uid'], 'network' => Protocol::FEDERATED,
185                         'visible' => true, 'deleted' => false]);
186
187                 $pager = new Pager(DI::l10n(), $args->getQueryString(), $itemspage_network);
188                 $params = ['limit' => [$pager->getStart(), $pager->getItemsPerPage()], 'order' => ['received' => true]];
189
190                 $items_stmt = Post::select(['uri-id', 'thr-parent-id', 'gravity', 'author-id', 'received'], $condition, $params);
191
192                 // Set a time stamp for this page. We will make use of it when we
193                 // search for new items (update routine)
194                 $last_updated_array[$last_updated_key] = time();
195                 Session::set('last_updated', $last_updated_array);
196
197                 if ($is_owner && !DI::config()->get('theme', 'hide_eventlist')) {
198                         $o .= ProfileModel::getBirthdays();
199                         $o .= ProfileModel::getEventsReminderHTML();
200                 }
201
202                 if ($is_owner) {
203                         $unseen = Post::exists(['wall' => true, 'unseen' => true, 'uid' => local_user()]);
204                         if ($unseen) {
205                                 Item::update(['unseen' => false], ['wall' => true, 'unseen' => true, 'uid' => local_user()]);
206                         }
207                 }
208
209                 $items = Post::toArray($items_stmt);
210
211                 if ($pager->getStart() == 0 && !empty($profile['uid'])) {
212                         $condition = ['private' => [Item::PUBLIC, Item::UNLISTED]];
213                         $remote_user = Session::getRemoteContactID($profile['uid']);
214                         if (!empty($remote_user)) {
215                                 $permissionSets = DI::permissionSet()->selectByContactId($remote_user, $profile['uid']);
216                                 if (!empty($permissionSets)) {
217                                         $condition = ['psid' => array_merge($permissionSets->column('id'),
218                                                         [DI::permissionSet()->getIdFromACL($profile['uid'], '', '', '', '')])];
219                                 }
220                         } elseif ($profile['uid'] == local_user()) {
221                                 $condition = [];
222                         }
223         
224                         $pinned_items = Post::selectPinned($profile['uid'], ['uri-id', 'pinned'], $condition);
225                         $pinned = Post::toArray($pinned_items);
226                         $items = array_merge($items, $pinned);
227                 }
228
229                 $o .= conversation($a, $items, 'profile', false, false, 'pinned_received', $profile['uid']);
230
231                 $o .= $pager->renderMinimal(count($items));
232
233                 return $o;
234         }
235 }