4 * @file mod/network.php
8 use Friendica\Content\Feature;
9 use Friendica\Content\ForumManager;
10 use Friendica\Content\Nav;
11 use Friendica\Content\Pager;
12 use Friendica\Content\Widget;
13 use Friendica\Content\Text\HTML;
14 use Friendica\Core\ACL;
15 use Friendica\Core\Addon;
16 use Friendica\Core\Config;
17 use Friendica\Core\Hook;
18 use Friendica\Core\L10n;
19 use Friendica\Core\Logger;
20 use Friendica\Core\PConfig;
21 use Friendica\Core\Protocol;
22 use Friendica\Core\Renderer;
23 use Friendica\Database\DBA;
24 use Friendica\Model\Contact;
25 use Friendica\Model\Group;
26 use Friendica\Model\Item;
27 use Friendica\Model\Profile;
28 use Friendica\Module\Login;
29 use Friendica\Util\DateTimeFormat;
30 use Friendica\Util\Proxy as ProxyUtils;
31 use Friendica\Util\Strings;
33 require_once 'include/conversation.php';
34 require_once 'include/items.php';
36 function network_init(App $a)
39 notice(L10n::t('Permission denied.') . EOL);
43 Hook::add('head', __FILE__, 'network_infinite_scroll_head');
45 $search = (!empty($_GET['search']) ? Strings::escapeHtml($_GET['search']) : '');
47 if (($search != '') && !empty($_GET['submit'])) {
48 $a->internalRedirect('search?search=' . urlencode($search));
51 if (!empty($_GET['save'])) {
52 $exists = DBA::exists('search', ['uid' => local_user(), 'term' => $search]);
54 DBA::insert('search', ['uid' => local_user(), 'term' => $search]);
57 if (!empty($_GET['remove'])) {
58 DBA::delete('search', ['uid' => local_user(), 'term' => $search]);
61 $is_a_date_query = false;
63 $group_id = (($a->argc > 1 && is_numeric($a->argv[1])) ? intval($a->argv[1]) : 0);
66 if (!empty($_GET['cid'])) {
68 $_GET['nets'] = 'all';
73 for ($x = 1; $x < $a->argc; $x ++) {
74 if (is_a_date_arg($a->argv[$x])) {
75 $is_a_date_query = true;
81 // convert query string to array. remove friendica args
83 $query_string = str_replace($a->cmd . '?', '', $a->query_string);
84 parse_str($query_string, $query_array);
85 array_shift($query_array);
87 // fetch last used network view and redirect if needed
88 if (!$is_a_date_query) {
89 $sel_nets = defaults($_GET, 'nets', false);
90 $sel_tabs = network_query_get_sel_tab($a);
91 $sel_groups = network_query_get_sel_group($a);
92 $last_sel_tabs = PConfig::get(local_user(), 'network.view', 'tab.selected');
94 $remember_tab = ($sel_tabs[0] === 'active' && is_array($last_sel_tabs) && $last_sel_tabs[0] !== 'active');
96 $net_baseurl = '/network';
99 if ($sel_groups !== false) {
100 $net_baseurl .= '/' . $sel_groups;
104 // redirect if current selected tab is '/network' and
105 // last selected tab is _not_ '/network?f=&order=comment'.
106 // and this isn't a date query
117 'f=&order=comment', //all
118 'f=&order=post', //postord
121 'f=&star=1', //starred
122 'f=&bmark=1', //bookmarked
125 $k = array_search('active', $last_sel_tabs);
128 $net_baseurl .= $tab_baseurls[$k];
130 // parse out tab queries
132 $dest_qs = $tab_args[$k];
133 parse_str($dest_qs, $dest_qa);
134 $net_args = array_merge($net_args, $dest_qa);
136 $remember_tab = false;
140 if ($sel_nets !== false) {
141 $net_args['nets'] = $sel_nets;
145 $net_args = array_merge($query_array, $net_args);
146 $net_queries = build_querystring($net_args);
148 $redir_url = ($net_queries ? $net_baseurl . '?' . $net_queries : $net_baseurl);
150 $a->internalRedirect($redir_url);
154 // If nets is set to all, unset it
155 if (!empty($_GET['nets']) && $_GET['nets'] === 'all') {
156 unset($_GET['nets']);
159 if (empty($a->page['aside'])) {
160 $a->page['aside'] = '';
163 $a->page['aside'] .= Group::sidebarWidget('network/0', 'network', 'standard', $group_id);
164 $a->page['aside'] .= ForumManager::widget(local_user(), $cid);
165 $a->page['aside'] .= posted_date_widget('network', local_user(), false);
166 $a->page['aside'] .= Widget::networks('network', defaults($_GET, 'nets', '') );
167 $a->page['aside'] .= saved_searches($search);
168 $a->page['aside'] .= Widget::fileAs('network', defaults($_GET, 'file', '') );
171 function saved_searches($search)
173 $srchurl = '/network?f='
174 . (!empty($_GET['cid']) ? '&cid=' . rawurlencode($_GET['cid']) : '')
175 . (!empty($_GET['star']) ? '&star=' . rawurlencode($_GET['star']) : '')
176 . (!empty($_GET['bmark']) ? '&bmark=' . rawurlencode($_GET['bmark']) : '')
177 . (!empty($_GET['conv']) ? '&conv=' . rawurlencode($_GET['conv']) : '')
178 . (!empty($_GET['nets']) ? '&nets=' . rawurlencode($_GET['nets']) : '')
179 . (!empty($_GET['cmin']) ? '&cmin=' . rawurlencode($_GET['cmin']) : '')
180 . (!empty($_GET['cmax']) ? '&cmax=' . rawurlencode($_GET['cmax']) : '')
181 . (!empty($_GET['file']) ? '&file=' . rawurlencode($_GET['file']) : '');
184 $terms = DBA::select('search', ['id', 'term'], ['uid' => local_user()]);
187 while ($rr = DBA::fetch($terms)) {
190 'term' => $rr['term'],
191 'encodedterm' => urlencode($rr['term']),
192 'delete' => L10n::t('Remove term'),
193 'selected' => ($search == $rr['term']),
197 $tpl = Renderer::getMarkupTemplate('saved_searches_aside.tpl');
198 $o = Renderer::replaceMacros($tpl, [
199 '$title' => L10n::t('Saved Searches'),
200 '$add' => L10n::t('add'),
201 '$searchbox' => HTML::search($search, 'netsearch-box', $srchurl),
209 * Return selected tab from query
212 * '/network' => $no_active = 'active'
213 * '/network?f=&order=comment' => $comment_active = 'active'
214 * '/network?f=&order=post' => $postord_active = 'active'
215 * '/network?f=&conv=1', => $conv_active = 'active'
216 * '/network/new', => $new_active = 'active'
217 * '/network?f=&star=1', => $starred_active = 'active'
218 * '/network?f=&bmark=1', => $bookmarked_active = 'active'
220 * @return Array ($no_active, $comment_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active);
222 function network_query_get_sel_tab(App $a)
225 $starred_active = '';
227 $bookmarked_active = '';
230 $postord_active = '';
232 if (($a->argc > 1 && $a->argv[1] === 'new') || ($a->argc > 2 && $a->argv[2] === 'new')) {
233 $new_active = 'active';
236 if (!empty($_GET['star'])) {
237 $starred_active = 'active';
240 if (!empty($_GET['bmark'])) {
241 $bookmarked_active = 'active';
244 if (!empty($_GET['conv'])) {
245 $conv_active = 'active';
248 if (($new_active == '') && ($starred_active == '') && ($bookmarked_active == '') && ($conv_active == '')) {
249 $no_active = 'active';
252 if ($no_active == 'active' && !empty($_GET['order'])) {
253 switch($_GET['order']) {
254 case 'post' : $postord_active = 'active'; $no_active=''; break;
255 case 'comment' : $all_active = 'active'; $no_active=''; break;
259 return [$no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active];
262 function network_query_get_sel_group(App $a)
266 if ($a->argc >= 2 && is_numeric($a->argv[1])) {
267 $group = $a->argv[1];
274 * @brief Sets the pager data and returns SQL
276 * @param App $a The global App
277 * @param integer $update Used for the automatic reloading
278 * @return string SQL with the appropriate LIMIT clause
280 function networkPager(App $a, Pager $pager, $update)
283 // only setup pagination on initial page view
287 // check if we serve a mobile device and get the user settings
290 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_mobile_network');
291 $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 20);
293 $itemspage_network = PConfig::get(local_user(), 'system', 'itemspage_network');
294 $itemspage_network = ((intval($itemspage_network)) ? $itemspage_network : 40);
297 // now that we have the user settings, see if the theme forces
298 // a maximum item number which is lower then the user choice
299 if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network)) {
300 $itemspage_network = $a->force_max_items;
303 $pager->setItemsPerPage($itemspage_network);
305 return sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
309 * @brief Sets items as seen
311 * @param array $condition The array with the SQL condition
313 function networkSetSeen($condition)
315 if (empty($condition)) {
319 $unseen = Item::exists($condition);
322 $r = Item::update(['unseen' => false], $condition);
327 * @brief Create the conversation HTML
329 * @param App $a The global App
330 * @param array $items Items of the conversation
331 * @param string $mode Display mode for the conversation
332 * @param integer $update Used for the automatic reloading
333 * @return string HTML of the conversation
335 function networkConversation(App $a, $items, Pager $pager, $mode, $update, $ordering = '')
337 // Set this so that the conversation function can find out contact info for our wall-wall items
338 $a->page_contact = $a->contact;
340 if (!is_array($items)) {
341 Logger::log("Expecting items to be an array. Got " . print_r($items, true));
345 $o = conversation($a, $items, $pager, $mode, $update, false, $ordering, local_user());
348 if (PConfig::get(local_user(), 'system', 'infinite_scroll')) {
349 $o .= HTML::scrollLoader();
351 $o .= $pager->renderMinimal(count($items));
358 function network_content(App $a, $update = 0, $parent = 0)
361 return Login::form();
364 /// @TODO Is this really necessary? $a is already available to hooks
365 $arr = ['query' => $a->query_string];
366 Addon::callHooks('network_content_init', $arr);
371 for ($x = 1; $x < $a->argc; $x ++) {
372 if ($a->argv[$x] === 'new') {
378 if (!empty($_GET['file'])) {
383 $o = networkFlatView($a, $update);
385 $o = networkThreadedView($a, $update, $parent);
389 info("No items found");
396 * @brief Get the network content in flat view
398 * @param Pager $pager
399 * @param App $a The global App
400 * @param integer $update Used for the automatic reloading
401 * @return string HTML of the network content in flat view
403 function networkFlatView(App $a, $update = 0)
406 // Rawmode is used for fetching new content at the end of the page
407 $rawmode = (isset($_GET['mode']) && ($_GET['mode'] == 'raw'));
409 if (isset($_GET['last_id'])) {
410 $last_id = intval($_GET['last_id']);
417 $file = defaults($_GET, 'file', '');
419 if (!$update && !$rawmode) {
420 $tabs = network_tabs($a);
423 Nav::setSelected('network');
427 'allow_location' => $a->user['allow_location'],
428 'default_location' => $a->user['default-location'],
429 'nickname' => $a->user['nickname'],
430 'lockstate' => (is_array($a->user) &&
431 (strlen($a->user['allow_cid']) || strlen($a->user['allow_gid']) ||
432 strlen($a->user['deny_cid']) || strlen($a->user['deny_gid'])) ? 'lock' : 'unlock'),
433 'default_perms' => ACL::getDefaultUserPermissions($a->user),
434 'acl' => ACL::getFullSelectorHTML($a->user, true),
436 'visitor' => 'block',
437 'profile_uid' => local_user(),
441 $o .= status_editor($a, $x);
443 if (!Config::get('theme', 'hide_eventlist')) {
444 $o .= Profile::getBirthdays();
445 $o .= Profile::getEventsReminderHTML();
449 $pager = new Pager($a->query_string);
451 /// @TODO Figure out why this variable is unused
452 $pager_sql = networkPager($a, $pager, $update);
455 $condition = ["`term` = ? AND `otype` = ? AND `type` = ? AND `uid` = ?",
456 $file, TERM_OBJ_POST, TERM_FILE, local_user()];
457 $params = ['order' => ['tid' => true], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
458 $result = DBA::select('term', ['oid'], $condition);
461 while ($term = DBA::fetch($result)) {
462 $posts[] = $term['oid'];
466 if (count($posts) == 0) {
469 $condition = ['uid' => local_user(), 'id' => $posts];
471 $condition = ['uid' => local_user()];
474 $params = ['order' => ['id' => true], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
475 $result = Item::selectForUser(local_user(), [], $condition, $params);
476 $items = Item::inArray($result);
478 $condition = ['unseen' => true, 'uid' => local_user()];
479 networkSetSeen($condition);
481 $o .= networkConversation($a, $items, $pager, 'network-new', $update);
487 * @brief Get the network content in threaded view
489 * @global Pager $pager
490 * @param App $a The global App
491 * @param integer $update Used for the automatic reloading
492 * @param integer $parent
493 * @return string HTML of the network content in flat view
495 function networkThreadedView(App $a, $update, $parent)
497 /// @TODO this will have to be converted to a static property of the converted Module\Network class
500 // Rawmode is used for fetching new content at the end of the page
501 $rawmode = (isset($_GET['mode']) AND ( $_GET['mode'] == 'raw'));
503 if (isset($_GET['last_received']) && isset($_GET['last_commented']) && isset($_GET['last_created']) && isset($_GET['last_id'])) {
504 $last_received = DateTimeFormat::utc($_GET['last_received']);
505 $last_commented = DateTimeFormat::utc($_GET['last_commented']);
506 $last_created = DateTimeFormat::utc($_GET['last_created']);
507 $last_id = intval($_GET['last_id']);
510 $last_commented = '';
515 $datequery = $datequery2 = '';
519 $default_permissions = [];
522 for ($x = 1; $x < $a->argc; $x ++) {
523 if (is_a_date_arg($a->argv[$x])) {
525 $datequery2 = Strings::escapeHtml($a->argv[$x]);
527 $datequery = Strings::escapeHtml($a->argv[$x]);
528 $_GET['order'] = 'post';
530 } elseif (intval($a->argv[$x])) {
531 $gid = intval($a->argv[$x]);
532 $default_permissions = ['allow_gid' => '<' . $gid . '>'];
539 $cid = intval(defaults($_GET, 'cid' , 0));
540 $star = intval(defaults($_GET, 'star' , 0));
541 $bmark = intval(defaults($_GET, 'bmark', 0));
542 $conv = intval(defaults($_GET, 'conv' , 0));
543 $order = Strings::escapeTags(defaults($_GET, 'order', 'comment'));
544 $nets = defaults($_GET, 'nets' , '');
547 $default_permissions = ['allow_cid' => '<' . intval($cid) . '>'];
551 $r = DBA::select('contact', ['id'], ['uid' => local_user(), 'network' => $nets], ['self' => false]);
554 while ($rr = DBA::fetch($r)) {
555 $str .= '<' . $rr['id'] . '>';
558 $default_permissions = ['allow_cid' => $str];
562 if (!$update && !$rawmode) {
563 $tabs = network_tabs($a);
566 if ($gid && ($t = Contact::getOStatusCountByGroupId($gid)) && !PConfig::get(local_user(), 'system', 'nowarn_insecure')) {
567 notice(L10n::tt("Warning: This group contains %s member from a network that doesn't allow non public messages.",
568 "Warning: This group contains %s members from a network that doesn't allow non public messages.",
570 notice(L10n::t("Messages in this group won't be send to these receivers.").EOL);
573 Nav::setSelected('network');
578 // If $cid belongs to a communitity forum or a privat goup,.add a mention to the status editor
579 $condition = ["`id` = ? AND (`forum` OR `prv`)", $cid];
580 $contact = DBA::selectFirst('contact', ['addr', 'nick'], $condition);
581 if (DBA::isResult($contact)) {
582 if ($contact['addr'] != '') {
583 $content = '!' . $contact['addr'];
585 $content = '!' . $contact['nick'] . '+' . $cid;
592 'allow_location' => $a->user['allow_location'],
593 'default_location' => $a->user['default-location'],
594 'nickname' => $a->user['nickname'],
595 'lockstate' => ($gid || $cid || $nets || (is_array($a->user) &&
596 (strlen($a->user['allow_cid']) || strlen($a->user['allow_gid']) ||
597 strlen($a->user['deny_cid']) || strlen($a->user['deny_gid']))) ? 'lock' : 'unlock'),
598 'default_perms' => ACL::getDefaultUserPermissions($a->user),
599 'acl' => ACL::getFullSelectorHTML($a->user, true, $default_permissions),
600 'bang' => (($gid || $cid || $nets) ? '!' : ''),
601 'visitor' => 'block',
602 'profile_uid' => local_user(),
603 'content' => $content,
606 $o .= status_editor($a, $x);
609 // We don't have to deal with ACLs on this page. You're looking at everything
610 // that belongs to you, hence you can see all of it. We will filter by group if
613 $sql_post_table = '';
614 $sql_options = ($star ? " AND `thread`.`starred` " : '');
615 $sql_options .= ($bmark ? sprintf(" AND `thread`.`post-type` = %d ", Item::PT_PAGE) : '');
616 $sql_extra = $sql_options;
619 $sql_table = '`thread`';
620 $sql_parent = '`iid`';
624 $sql_table = '`item`';
625 $sql_parent = '`parent`';
626 $sql_post_table = " INNER JOIN `thread` ON `thread`.`iid` = `item`.`parent`";
629 $sql_nets = (($nets) ? sprintf(" AND $sql_table.`network` = '%s' ", DBA::escape($nets)) : '');
630 $sql_tag_nets = (($nets) ? sprintf(" AND `item`.`network` = '%s' ", DBA::escape($nets)) : '');
633 $group = DBA::selectFirst('group', ['name'], ['id' => $gid, 'uid' => local_user()]);
634 if (!DBA::isResult($group)) {
638 notice(L10n::t('No such group') . EOL);
639 $a->internalRedirect('network/0');
643 $contacts = Group::expand([$gid]);
645 if ((is_array($contacts)) && count($contacts)) {
646 $contact_str_self = '';
648 $contact_str = implode(',', $contacts);
649 $self = DBA::selectFirst('contact', ['id'], ['uid' => local_user(), 'self' => true]);
650 if (DBA::isResult($self)) {
651 $contact_str_self = $self['id'];
654 $sql_post_table .= " INNER JOIN `item` AS `temp1` ON `temp1`.`id` = " . $sql_table . "." . $sql_parent;
655 $sql_extra3 .= " AND (`thread`.`contact-id` IN ($contact_str) ";
656 $sql_extra3 .= " OR (`thread`.`contact-id` = '$contact_str_self' AND `temp1`.`allow_gid` LIKE '" . Strings::protectSprintf('%<' . intval($gid) . '>%') . "' AND `temp1`.`private`))";
658 $sql_extra3 .= " AND false ";
659 info(L10n::t('Group is empty'));
662 $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), [
663 '$title' => L10n::t('Group: %s', $group['name'])
666 $fields = ['id', 'name', 'network', 'writable', 'nurl',
667 'forum', 'prv', 'contact-type', 'addr', 'thumb', 'location'];
668 $condition = ["`id` = ? AND (NOT `blocked` OR `pending`)", $cid];
669 $contact = DBA::selectFirst('contact', $fields, $condition);
670 if (DBA::isResult($contact)) {
671 $sql_extra = " AND " . $sql_table . ".`contact-id` = " . intval($cid);
675 'name' => htmlentities($contact['name']),
676 'itemurl' => defaults($contact, 'addr', $contact['nurl']),
677 'thumb' => ProxyUtils::proxifyUrl($contact['thumb'], false, ProxyUtils::SIZE_THUMB),
678 'details' => $contact['location'],
681 $entries[0]['account_type'] = Contact::getAccountType($contact);
683 $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('viewcontact_template.tpl'), [
684 'contacts' => $entries,
688 if ($contact['network'] === Protocol::OSTATUS && $contact['writable'] && !PConfig::get(local_user(),'system','nowarn_insecure')) {
689 notice(L10n::t('Private messages to this person are at risk of public disclosure.') . EOL);
692 notice(L10n::t('Invalid contact.') . EOL);
693 $a->internalRedirect('network');
698 if (!$gid && !$cid && !$update && !Config::get('theme', 'hide_eventlist')) {
699 $o .= Profile::getBirthdays();
700 $o .= Profile::getEventsReminderHTML();
704 $sql_extra3 .= Strings::protectSprintf(sprintf(" AND $sql_table.created <= '%s' ",
705 DBA::escape(DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get()))));
708 $sql_extra3 .= Strings::protectSprintf(sprintf(" AND $sql_table.created >= '%s' ",
709 DBA::escape(DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get()))));
713 $sql_extra3 .= " AND $sql_table.`mention`";
716 // Normal conversation view
717 if ($order === 'post') {
718 $ordering = '`created`';
719 $order_mode = 'created';
721 $ordering = '`commented`';
722 $order_mode = 'commented';
725 $sql_order = "$sql_table.$ordering";
727 if (!empty($_GET['offset'])) {
728 $sql_range = sprintf(" AND $sql_order <= '%s'", DBA::escape($_GET['offset']));
733 $pager = new Pager($a->query_string);
735 $pager_sql = networkPager($a, $pager, $update);
739 switch ($order_mode) {
741 if ($last_received != '') {
742 $last_date = $last_received;
743 $sql_range .= sprintf(" AND $sql_table.`received` < '%s'", DBA::escape($last_received));
745 $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
749 if ($last_commented != '') {
750 $last_date = $last_commented;
751 $sql_range .= sprintf(" AND $sql_table.`commented` < '%s'", DBA::escape($last_commented));
753 $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
757 if ($last_created != '') {
758 $last_date = $last_created;
759 $sql_range .= sprintf(" AND $sql_table.`created` < '%s'", DBA::escape($last_created));
761 $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
765 if (($last_id > 0) && ($sql_table == '`thread`')) {
766 $sql_range .= sprintf(" AND $sql_table.`iid` < '%s'", DBA::escape($last_id));
768 $pager_sql = sprintf(" LIMIT %d, %d ", $pager->getStart(), $pager->getItemsPerPage());
773 // Fetch a page full of parent items for this page
775 if (!empty($parent)) {
776 // Load only a single thread
777 $sql_extra4 = "`item`.`id` = ".intval($parent);
779 // Load all unseen items
780 $sql_extra4 = "`item`.`unseen`";
781 if (Config::get("system", "like_no_comment")) {
782 $sql_extra4 .= " AND `item`.`gravity` IN (" . GRAVITY_PARENT . "," . GRAVITY_COMMENT . ")";
784 if ($order === 'post') {
785 // Only show toplevel posts when updating posts in this order mode
786 $sql_extra4 .= " AND `item`.`id` = `item`.`parent`";
790 $r = q("SELECT `item`.`parent-uri` AS `uri`, `item`.`parent` AS `item_id`, $sql_order AS `order_date`
791 FROM `item` $sql_post_table
792 STRAIGHT_JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
793 AND (NOT `contact`.`blocked` OR `contact`.`pending`)
794 AND (`item`.`gravity` != %d
795 OR `contact`.`uid` = `item`.`uid` AND `contact`.`self`
796 OR `contact`.`rel` IN (%d, %d) AND NOT `contact`.`readonly`)
797 LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = %d
798 WHERE `item`.`uid` = %d AND `item`.`visible` AND NOT `item`.`deleted`
799 AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`)
800 AND NOT `item`.`moderated` AND $sql_extra4
801 $sql_extra3 $sql_extra $sql_range $sql_nets
802 ORDER BY `order_date` DESC LIMIT 100",
803 intval(GRAVITY_PARENT),
804 intval(Contact::SHARING),
805 intval(Contact::FRIEND),
806 intval(local_user()),
810 $r = q("SELECT `item`.`uri`, `thread`.`iid` AS `item_id`, $sql_order AS `order_date`
811 FROM `thread` $sql_post_table
812 STRAIGHT_JOIN `contact` ON `contact`.`id` = `thread`.`contact-id`
813 AND (NOT `contact`.`blocked` OR `contact`.`pending`)
814 STRAIGHT_JOIN `item` ON `item`.`id` = `thread`.`iid`
815 AND (`item`.`gravity` != %d
816 OR `contact`.`uid` = `item`.`uid` AND `contact`.`self`
817 OR `contact`.`rel` IN (%d, %d) AND NOT `contact`.`readonly`)
818 LEFT JOIN `user-item` ON `user-item`.`iid` = `item`.`id` AND `user-item`.`uid` = %d
819 WHERE `thread`.`uid` = %d AND `thread`.`visible` AND NOT `thread`.`deleted`
820 AND NOT `thread`.`moderated`
821 AND (`user-item`.`hidden` IS NULL OR NOT `user-item`.`hidden`)
822 $sql_extra2 $sql_extra3 $sql_range $sql_extra $sql_nets
823 ORDER BY `order_date` DESC $pager_sql",
824 intval(GRAVITY_PARENT),
825 intval(Contact::SHARING),
826 intval(Contact::FRIEND),
827 intval(local_user()),
832 // Only show it when unfiltered (no groups, no networks, ...)
833 if (in_array($nets, ['', Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS]) && (strlen($sql_extra . $sql_extra2 . $sql_extra3) == 0)) {
834 if (DBA::isResult($r)) {
835 $top_limit = current($r)['order_date'];
836 $bottom_limit = end($r)['order_date'];
837 if (empty($_SESSION['network_last_top_limit']) || ($_SESSION['network_last_top_limit'] < $top_limit)) {
838 $_SESSION['network_last_top_limit'] = $top_limit;
841 $top_limit = $bottom_limit = DateTimeFormat::utcNow();
844 // When checking for updates we need to fetch from the newest date to the newest date before
845 // Only do this, when the last stored date isn't too long ago (10 times the update interval)
846 $browser_update = PConfig::get(local_user(), 'system', 'update_interval', 40000) / 1000;
848 if (($browser_update > 0) && $update && !empty($_SESSION['network_last_date']) &&
849 (($bottom_limit < $_SESSION['network_last_date']) || ($top_limit == $bottom_limit)) &&
850 ((time() - $_SESSION['network_last_date_timestamp']) < ($browser_update * 10))) {
851 $bottom_limit = $_SESSION['network_last_date'];
853 $_SESSION['network_last_date'] = defaults($_SESSION, 'network_last_top_limit', $top_limit);
854 $_SESSION['network_last_date_timestamp'] = time();
856 if ($last_date > $top_limit) {
857 $top_limit = $last_date;
858 } elseif ($pager->getPage() == 1) {
859 // Highest possible top limit when we are on the first page
860 $top_limit = DateTimeFormat::utcNow();
863 $items = DBA::p("SELECT `item`.`parent-uri` AS `uri`, 0 AS `item_id`, `item`.$ordering AS `order_date`, `author`.`url` AS `author-link` FROM `item`
864 STRAIGHT_JOIN (SELECT `oid` FROM `term` WHERE `term` IN
865 (SELECT SUBSTR(`term`, 2) FROM `search` WHERE `uid` = ? AND `term` LIKE '#%') AND `otype` = ? AND `type` = ? AND `uid` = 0) AS `term`
866 ON `item`.`id` = `term`.`oid`
867 STRAIGHT_JOIN `contact` AS `author` ON `author`.`id` = `item`.`author-id`
868 WHERE `item`.`uid` = 0 AND `item`.$ordering < ? AND `item`.$ordering > ?
869 AND NOT `author`.`hidden` AND NOT `author`.`blocked`" . $sql_tag_nets,
870 local_user(), TERM_OBJ_POST, TERM_HASHTAG,
871 $top_limit, $bottom_limit);
873 $data = DBA::toArray($items);
875 if (count($data) > 0) {
876 $tag_top_limit = current($data)['order_date'];
877 if ($_SESSION['network_last_date'] < $tag_top_limit) {
878 $_SESSION['network_last_date'] = $tag_top_limit;
881 Logger::log('Tagged items: ' . count($data) . ' - ' . $bottom_limit . ' - ' . $top_limit . ' - ' . local_user().' - '.(int)$update);
883 foreach ($r as $item) {
884 $s[$item['uri']] = $item;
886 foreach ($data as $item) {
887 // Don't show hash tag posts from blocked or ignored contacts
888 $condition = ["`nurl` = ? AND `uid` = ? AND (`blocked` OR `readonly`)",
889 Strings::normaliseLink($item['author-link']), local_user()];
890 if (!DBA::exists('contact', $condition)) {
891 $s[$item['uri']] = $item;
903 if (DBA::isResult($items)) {
906 foreach ($items as $item) {
907 if ($date_offset < $item['order_date']) {
908 $date_offset = $item['order_date'];
910 if (!in_array($item['item_id'], $parents_arr) && ($item['item_id'] > 0)) {
911 $parents_arr[] = $item['item_id'];
914 $parents_str = implode(', ', $parents_arr);
917 if (!empty($_GET['offset'])) {
918 $date_offset = $_GET['offset'];
921 $query_string = $a->query_string;
922 if ($date_offset && !preg_match('/[?&].offset=/', $query_string)) {
923 $query_string .= '&offset=' . urlencode($date_offset);
926 $pager->setQueryString($query_string);
928 // We aren't going to try and figure out at the item, group, and page
929 // level which items you've seen and which you haven't. If you're looking
930 // at the top level network page just mark everything seen.
932 if (!$gid && !$cid && !$star) {
933 $condition = ['unseen' => true, 'uid' => local_user()];
934 networkSetSeen($condition);
935 } elseif ($parents_str) {
936 $condition = ["`uid` = ? AND `unseen` AND `parent` IN (" . DBA::escape($parents_str) . ")", local_user()];
937 networkSetSeen($condition);
942 $o .= networkConversation($a, $items, $pager, $mode, $update, $ordering);
948 * @brief Get the network tabs menu
950 * @param App $a The global App
951 * @return string Html of the networktab
953 function network_tabs(App $a)
956 /// @TODO fix this logic, reduce duplication
957 /// $a->page['content'] .= '<div class="tabs-wrapper">';
958 list($no_active, $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active) = network_query_get_sel_tab($a);
960 // if no tabs are selected, defaults to comments
961 if ($no_active == 'active') {
962 $all_active = 'active';
970 'label' => L10n::t('Commented Order'),
971 'url' => str_replace('/new', '', $cmd) . '?f=&order=comment' . (!empty($_GET['cid']) ? '&cid=' . $_GET['cid'] : ''),
972 'sel' => $all_active,
973 'title' => L10n::t('Sort by Comment Date'),
974 'id' => 'commented-order-tab',
978 'label' => L10n::t('Posted Order'),
979 'url' => str_replace('/new', '', $cmd) . '?f=&order=post' . (!empty($_GET['cid']) ? '&cid=' . $_GET['cid'] : ''),
980 'sel' => $postord_active,
981 'title' => L10n::t('Sort by Post Date'),
982 'id' => 'posted-order-tab',
988 'label' => L10n::t('Personal'),
989 'url' => str_replace('/new', '', $cmd) . (!empty($_GET['cid']) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&conv=1',
990 'sel' => $conv_active,
991 'title' => L10n::t('Posts that mention or involve you'),
992 'id' => 'personal-tab',
996 if (Feature::isEnabled(local_user(), 'new_tab')) {
998 'label' => L10n::t('New'),
999 'url' => 'network/new' . (!empty($_GET['cid']) ? '/?f=&cid=' . $_GET['cid'] : ''),
1000 'sel' => $new_active,
1001 'title' => L10n::t('Activity Stream - by date'),
1002 'id' => 'activitiy-by-date-tab',
1007 if (Feature::isEnabled(local_user(), 'link_tab')) {
1009 'label' => L10n::t('Shared Links'),
1010 'url' => str_replace('/new', '', $cmd) . (!empty($_GET['cid']) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&bmark=1',
1011 'sel' => $bookmarked_active,
1012 'title' => L10n::t('Interesting Links'),
1013 'id' => 'shared-links-tab',
1019 'label' => L10n::t('Starred'),
1020 'url' => str_replace('/new', '', $cmd) . (!empty($_GET['cid']) ? '/?f=&cid=' . $_GET['cid'] : '/?f=') . '&star=1',
1021 'sel' => $starred_active,
1022 'title' => L10n::t('Favourite Posts'),
1023 'id' => 'starred-posts-tab',
1027 // save selected tab, but only if not in file mode
1028 if (empty($_GET['file'])) {
1029 PConfig::set(local_user(), 'network.view', 'tab.selected', [
1030 $all_active, $postord_active, $conv_active, $new_active, $starred_active, $bookmarked_active
1034 $arr = ['tabs' => $tabs];
1035 Addon::callHooks('network_tabs', $arr);
1037 $tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
1039 return Renderer::replaceMacros($tpl, ['$tabs' => $arr['tabs']]);
1041 // --- end item filter tabs
1045 * Network hook into the HTML head to enable infinite scroll.
1047 * Since the HTML head is built after the module content has been generated, we need to retrieve the base query string
1048 * of the page to make the correct asynchronous call. This is obtained through the Pager that was instantiated in
1049 * networkThreadedView or networkFlatView.
1051 * @global Pager $pager
1053 * @param string $htmlhead The head tag HTML string
1055 function network_infinite_scroll_head(App $a, &$htmlhead)
1057 /// @TODO this will have to be converted to a static property of the converted Module\Network class
1060 if (PConfig::get(local_user(), 'system', 'infinite_scroll')
1061 && defaults($_GET, 'mode', '') != 'minimal'
1063 $tpl = Renderer::getMarkupTemplate('infinite_scroll_head.tpl');
1064 $htmlhead .= Renderer::replaceMacros($tpl, [
1065 '$pageno' => $pager->getPage(),
1066 '$reload_uri' => $pager->getBaseQueryString()