2012-06-15 02:46:58 +02:00
|
|
|
<?php
|
2017-11-21 13:20:22 +01:00
|
|
|
/**
|
2020-02-09 16:18:46 +01:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2017-11-21 13:20:22 +01:00
|
|
|
*/
|
2018-01-25 03:08:45 +01:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-11-21 13:20:22 +01:00
|
|
|
use Friendica\Content\ForumManager;
|
2018-01-15 20:51:56 +01:00
|
|
|
use Friendica\Content\Nav;
|
2018-10-24 08:15:24 +02:00
|
|
|
use Friendica\Content\Pager;
|
2018-01-15 15:50:06 +01:00
|
|
|
use Friendica\Content\Widget;
|
2018-11-06 03:06:26 +01:00
|
|
|
use Friendica\Content\Text\HTML;
|
2018-03-03 00:41:24 +01:00
|
|
|
use Friendica\Core\ACL;
|
2018-10-24 08:15:24 +02:00
|
|
|
use Friendica\Core\Hook;
|
2018-10-29 22:20:46 +01:00
|
|
|
use Friendica\Core\Logger;
|
2018-10-31 15:35:50 +01:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 23:28:01 +01:00
|
|
|
use Friendica\DI;
|
2017-12-07 15:04:24 +01:00
|
|
|
use Friendica\Model\Contact;
|
2017-12-09 19:45:17 +01:00
|
|
|
use Friendica\Model\Group;
|
2018-02-06 13:40:22 +01:00
|
|
|
use Friendica\Model\Item;
|
2020-05-03 17:13:40 +02:00
|
|
|
use Friendica\Model\Post\Category;
|
2018-01-15 03:22:39 +01:00
|
|
|
use Friendica\Model\Profile;
|
2020-10-05 18:48:28 +02:00
|
|
|
use Friendica\Model\User;
|
2020-08-13 22:07:13 +02:00
|
|
|
use Friendica\Module\Contact as ModuleContact;
|
2019-12-27 22:19:28 +01:00
|
|
|
use Friendica\Module\Security\Login;
|
2018-01-27 03:38:34 +01:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2018-11-08 16:14:37 +01:00
|
|
|
use Friendica\Util\Strings;
|
2017-09-13 08:43:43 +02:00
|
|
|
|
2018-01-21 16:26:05 +01:00
|
|
|
function network_init(App $a)
|
|
|
|
{
|
2017-09-13 08:43:43 +02:00
|
|
|
if (!local_user()) {
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2012-06-15 02:46:58 +02:00
|
|
|
return;
|
|
|
|
}
|
2013-01-13 17:13:01 +01:00
|
|
|
|
2012-06-15 02:46:58 +02:00
|
|
|
$is_a_date_query = false;
|
2017-11-26 17:17:32 +01:00
|
|
|
|
|
|
|
$group_id = (($a->argc > 1 && is_numeric($a->argv[1])) ? intval($a->argv[1]) : 0);
|
|
|
|
|
2017-12-01 14:32:21 +01:00
|
|
|
$cid = 0;
|
2020-05-17 17:01:27 +02:00
|
|
|
if (!empty($_GET['contactid'])) {
|
|
|
|
$cid = $_GET['contactid'];
|
2018-11-30 11:43:07 +01:00
|
|
|
$_GET['nets'] = '';
|
2017-11-26 17:17:32 +01:00
|
|
|
$group_id = 0;
|
2016-12-22 11:37:23 +01:00
|
|
|
}
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2016-12-22 11:37:23 +01:00
|
|
|
if ($a->argc > 1) {
|
|
|
|
for ($x = 1; $x < $a->argc; $x ++) {
|
2020-01-15 05:06:30 +01:00
|
|
|
if (DI::dtFormat()->isYearMonthDay($a->argv[$x])) {
|
2012-06-15 02:46:58 +02:00
|
|
|
$is_a_date_query = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-01-13 17:13:01 +01:00
|
|
|
|
2014-11-10 15:07:35 +01:00
|
|
|
// convert query string to array. remove friendica args
|
2018-01-15 14:05:12 +01:00
|
|
|
$query_array = [];
|
2019-12-16 01:30:34 +01:00
|
|
|
parse_str(parse_url(DI::args()->getQueryString(), PHP_URL_QUERY), $query_array);
|
2013-01-13 17:13:01 +01:00
|
|
|
|
2012-09-30 01:56:50 +02:00
|
|
|
// fetch last used network view and redirect if needed
|
2017-09-13 08:43:43 +02:00
|
|
|
if (!$is_a_date_query) {
|
2019-10-15 15:01:17 +02:00
|
|
|
$sel_nets = $_GET['nets'] ?? '';
|
2012-09-30 01:56:50 +02:00
|
|
|
$sel_tabs = network_query_get_sel_tab($a);
|
|
|
|
$sel_groups = network_query_get_sel_group($a);
|
2020-01-18 16:50:57 +01:00
|
|
|
$last_sel_tabs = DI::pConfig()->get(local_user(), 'network.view', 'tab.selected');
|
2012-09-30 01:56:50 +02:00
|
|
|
|
|
|
|
$remember_tab = ($sel_tabs[0] === 'active' && is_array($last_sel_tabs) && $last_sel_tabs[0] !== 'active');
|
|
|
|
|
|
|
|
$net_baseurl = '/network';
|
2018-01-15 14:05:12 +01:00
|
|
|
$net_args = [];
|
2012-09-30 01:56:50 +02:00
|
|
|
|
2018-01-21 16:49:05 +01:00
|
|
|
if ($sel_groups !== false) {
|
2012-09-30 01:56:50 +02:00
|
|
|
$net_baseurl .= '/' . $sel_groups;
|
|
|
|
}
|
2015-08-11 20:16:53 +02:00
|
|
|
|
2017-04-04 07:35:04 +02:00
|
|
|
if ($remember_tab) {
|
2012-09-30 01:56:50 +02:00
|
|
|
// redirect if current selected tab is '/network' and
|
2019-11-02 13:54:26 +01:00
|
|
|
// last selected tab is _not_ '/network?order=activity'.
|
2012-09-30 01:56:50 +02:00
|
|
|
// and this isn't a date query
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$tab_args = [
|
2019-11-02 13:54:26 +01:00
|
|
|
'order=activity', //all
|
2019-11-02 13:59:57 +01:00
|
|
|
'order=post', //postord
|
|
|
|
'conv=1', //conv
|
|
|
|
'star=1', //starred
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2012-09-30 01:56:50 +02:00
|
|
|
|
|
|
|
$k = array_search('active', $last_sel_tabs);
|
|
|
|
|
2017-04-04 07:35:04 +02:00
|
|
|
if ($k != 3) {
|
|
|
|
// parse out tab queries
|
2018-01-15 14:05:12 +01:00
|
|
|
$dest_qa = [];
|
2017-04-04 07:35:04 +02:00
|
|
|
$dest_qs = $tab_args[$k];
|
|
|
|
parse_str($dest_qs, $dest_qa);
|
|
|
|
$net_args = array_merge($net_args, $dest_qa);
|
|
|
|
} else {
|
|
|
|
$remember_tab = false;
|
|
|
|
}
|
2012-09-30 01:56:50 +02:00
|
|
|
}
|
|
|
|
|
2018-11-30 11:43:07 +01:00
|
|
|
if ($sel_nets) {
|
2014-11-10 15:37:52 +01:00
|
|
|
$net_args['nets'] = $sel_nets;
|
|
|
|
}
|
2015-08-11 20:16:53 +02:00
|
|
|
|
2018-01-21 16:49:05 +01:00
|
|
|
if ($remember_tab) {
|
2014-03-09 09:19:14 +01:00
|
|
|
$net_args = array_merge($query_array, $net_args);
|
2019-05-27 23:18:42 +02:00
|
|
|
$net_queries = http_build_query($net_args);
|
2015-08-11 20:16:53 +02:00
|
|
|
|
2018-01-21 16:48:15 +01:00
|
|
|
$redir_url = ($net_queries ? $net_baseurl . '?' . $net_queries : $net_baseurl);
|
2015-08-11 20:16:53 +02:00
|
|
|
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect($redir_url);
|
2012-09-30 01:56:50 +02:00
|
|
|
}
|
|
|
|
}
|
2015-08-11 20:16:53 +02:00
|
|
|
|
2019-12-30 20:02:09 +01:00
|
|
|
if (empty(DI::page()['aside'])) {
|
|
|
|
DI::page()['aside'] = '';
|
2017-03-30 21:36:34 +02:00
|
|
|
}
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2020-10-05 22:34:57 +02:00
|
|
|
if (!empty($a->argv[1]) && in_array($a->argv[1], ['person', 'organisation', 'news', 'community'])) {
|
2020-10-05 18:48:28 +02:00
|
|
|
$accounttype = $a->argv[1];
|
|
|
|
} else {
|
|
|
|
$accounttype = '';
|
|
|
|
}
|
|
|
|
|
|
|
|
DI::page()['aside'] .= Widget::accounts('network', $accounttype);
|
2019-12-30 20:02:09 +01:00
|
|
|
DI::page()['aside'] .= Group::sidebarWidget('network/0', 'network', 'standard', $group_id);
|
|
|
|
DI::page()['aside'] .= ForumManager::widget(local_user(), $cid);
|
|
|
|
DI::page()['aside'] .= Widget::postedByYear('network', local_user(), false);
|
|
|
|
DI::page()['aside'] .= Widget::networks('network', $_GET['nets'] ?? '');
|
|
|
|
DI::page()['aside'] .= Widget\SavedSearches::getHTML(DI::args()->getQueryString());
|
|
|
|
DI::page()['aside'] .= Widget::fileAs('network', $_GET['file'] ?? '');
|
2012-06-15 02:46:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return selected tab from query
|
2014-03-09 09:19:14 +01:00
|
|
|
*
|
2012-06-15 02:46:58 +02:00
|
|
|
* urls -> returns
|
2019-11-02 13:59:57 +01:00
|
|
|
* '/network' => $no_active = 'active'
|
|
|
|
* '/network?order=activity' => $activity_active = 'active'
|
|
|
|
* '/network?order=post' => $postord_active = 'active'
|
2019-05-27 23:19:38 +02:00
|
|
|
* '/network?conv=1', => $conv_active = 'active'
|
|
|
|
* '/network?star=1', => $starred_active = 'active'
|
2014-03-09 09:19:14 +01:00
|
|
|
*
|
2019-01-07 07:07:42 +01:00
|
|
|
* @param App $a
|
2020-07-13 04:41:12 +02:00
|
|
|
* @return array ($no_active, $activity_active, $postord_active, $conv_active, $starred_active);
|
2012-06-15 02:46:58 +02:00
|
|
|
*/
|
2018-01-21 16:26:05 +01:00
|
|
|
function network_query_get_sel_tab(App $a)
|
|
|
|
{
|
|
|
|
$no_active = '';
|
2012-06-15 02:46:58 +02:00
|
|
|
$starred_active = '';
|
|
|
|
$all_active = '';
|
|
|
|
$conv_active = '';
|
2019-11-02 13:54:26 +01:00
|
|
|
$postord_active = '';
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
if (!empty($_GET['star'])) {
|
2012-06-15 02:46:58 +02:00
|
|
|
$starred_active = 'active';
|
|
|
|
}
|
2013-10-15 00:49:13 +02:00
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
if (!empty($_GET['conv'])) {
|
2012-06-15 02:46:58 +02:00
|
|
|
$conv_active = 'active';
|
|
|
|
}
|
|
|
|
|
2020-07-13 04:41:12 +02:00
|
|
|
if (($starred_active == '') && ($conv_active == '')) {
|
2018-01-21 16:26:05 +01:00
|
|
|
$no_active = 'active';
|
2012-06-15 02:46:58 +02:00
|
|
|
}
|
|
|
|
|
2018-11-30 15:06:22 +01:00
|
|
|
if ($no_active == 'active' && !empty($_GET['order'])) {
|
2018-01-21 16:26:05 +01:00
|
|
|
switch($_GET['order']) {
|
2019-11-02 13:59:57 +01:00
|
|
|
case 'post' : $postord_active = 'active'; $no_active=''; break;
|
2019-11-02 13:54:26 +01:00
|
|
|
case 'activity' : $all_active = 'active'; $no_active=''; break;
|
2012-06-15 02:46:58 +02:00
|
|
|
}
|
|
|
|
}
|
2013-10-15 00:49:13 +02:00
|
|
|
|
2020-07-13 04:41:12 +02:00
|
|
|
return [$no_active, $all_active, $postord_active, $conv_active, $starred_active];
|
2012-06-15 02:46:58 +02:00
|
|
|
}
|
|
|
|
|
2018-01-21 16:26:05 +01:00
|
|
|
function network_query_get_sel_group(App $a)
|
|
|
|
{
|
2012-09-30 01:56:50 +02:00
|
|
|
$group = false;
|
|
|
|
|
2017-09-13 08:43:43 +02:00
|
|
|
if ($a->argc >= 2 && is_numeric($a->argv[1])) {
|
2012-09-30 01:56:50 +02:00
|
|
|
$group = $a->argv[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $group;
|
|
|
|
}
|
|
|
|
|
2017-09-14 08:10:33 +02:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Sets the pager data and returns SQL
|
2017-09-14 08:10:33 +02:00
|
|
|
*
|
2019-01-07 07:07:42 +01:00
|
|
|
* @param App $a The global App
|
|
|
|
* @param Pager $pager
|
2017-09-14 08:10:33 +02:00
|
|
|
* @return string SQL with the appropriate LIMIT clause
|
2019-01-07 07:07:42 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-09-14 08:10:33 +02:00
|
|
|
*/
|
2020-08-13 22:07:13 +02:00
|
|
|
function networkPager(App $a, Pager $pager)
|
2018-01-21 16:26:05 +01:00
|
|
|
{
|
2019-12-16 01:12:07 +01:00
|
|
|
if (DI::mode()->isMobile()) {
|
2020-02-16 19:04:26 +01:00
|
|
|
$itemspage_network = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
|
|
|
|
DI::config()->get('system', 'itemspage_network_mobile'));
|
2017-09-13 08:43:43 +02:00
|
|
|
} else {
|
2020-02-16 19:04:26 +01:00
|
|
|
$itemspage_network = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
|
|
|
|
DI::config()->get('system', 'itemspage_network'));
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// now that we have the user settings, see if the theme forces
|
|
|
|
// a maximum item number which is lower then the user choice
|
|
|
|
if (($a->force_max_items > 0) && ($a->force_max_items < $itemspage_network)) {
|
|
|
|
$itemspage_network = $a->force_max_items;
|
|
|
|
}
|
|
|
|
|
2018-10-24 08:15:24 +02:00
|
|
|
$pager->setItemsPerPage($itemspage_network);
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
|
|
|
|
2017-09-14 08:10:33 +02:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Sets items as seen
|
2017-09-14 08:10:33 +02:00
|
|
|
*
|
|
|
|
* @param array $condition The array with the SQL condition
|
2019-01-07 07:07:42 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-09-14 08:10:33 +02:00
|
|
|
*/
|
2018-01-21 16:26:05 +01:00
|
|
|
function networkSetSeen($condition)
|
|
|
|
{
|
2017-09-13 08:43:43 +02:00
|
|
|
if (empty($condition)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-08-15 06:41:49 +02:00
|
|
|
$unseen = Item::exists($condition);
|
2017-09-13 08:43:43 +02:00
|
|
|
|
|
|
|
if ($unseen) {
|
2019-01-07 07:23:49 +01:00
|
|
|
Item::update(['unseen' => false], $condition);
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-14 08:10:33 +02:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Create the conversation HTML
|
2017-09-14 08:10:33 +02:00
|
|
|
*
|
2018-10-24 08:15:24 +02:00
|
|
|
* @param App $a The global App
|
|
|
|
* @param array $items Items of the conversation
|
2019-01-07 07:07:42 +01:00
|
|
|
* @param Pager $pager
|
2018-10-24 08:15:24 +02:00
|
|
|
* @param string $mode Display mode for the conversation
|
2017-09-14 08:10:33 +02:00
|
|
|
* @param integer $update Used for the automatic reloading
|
2019-01-07 07:07:42 +01:00
|
|
|
* @param string $ordering
|
2017-09-14 08:10:33 +02:00
|
|
|
* @return string HTML of the conversation
|
2019-01-07 16:24:06 +01:00
|
|
|
* @throws ImagickException
|
2019-01-07 07:07:42 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2017-09-14 08:10:33 +02:00
|
|
|
*/
|
2018-10-24 08:15:24 +02:00
|
|
|
function networkConversation(App $a, $items, Pager $pager, $mode, $update, $ordering = '')
|
2018-01-21 16:26:05 +01:00
|
|
|
{
|
2017-09-13 08:43:43 +02:00
|
|
|
// Set this so that the conversation function can find out contact info for our wall-wall items
|
|
|
|
$a->page_contact = $a->contact;
|
|
|
|
|
2018-11-17 17:24:30 +01:00
|
|
|
if (!is_array($items)) {
|
2020-07-21 16:13:19 +02:00
|
|
|
Logger::info('Expecting items to be an array.', ['items' => $items]);
|
2018-11-17 13:22:32 +01:00
|
|
|
$items = [];
|
|
|
|
}
|
|
|
|
|
2020-02-14 05:40:00 +01:00
|
|
|
$o = conversation($a, $items, $mode, $update, false, $ordering, local_user());
|
2017-09-13 08:43:43 +02:00
|
|
|
|
|
|
|
if (!$update) {
|
2020-01-18 16:50:57 +01:00
|
|
|
if (DI::pConfig()->get(local_user(), 'system', 'infinite_scroll')) {
|
2018-11-06 03:06:26 +01:00
|
|
|
$o .= HTML::scrollLoader();
|
2017-09-13 08:43:43 +02:00
|
|
|
} else {
|
2018-10-24 08:15:24 +02:00
|
|
|
$o .= $pager->renderMinimal(count($items));
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
|
|
|
}
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2017-09-13 08:43:43 +02:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2018-02-27 22:10:05 +01:00
|
|
|
function network_content(App $a, $update = 0, $parent = 0)
|
2018-01-21 16:26:05 +01:00
|
|
|
{
|
2017-09-13 08:43:43 +02:00
|
|
|
if (!local_user()) {
|
2017-12-17 17:40:59 +01:00
|
|
|
return Login::form();
|
2012-06-15 02:46:58 +02:00
|
|
|
}
|
|
|
|
|
2017-09-13 08:43:43 +02:00
|
|
|
/// @TODO Is this really necessary? $a is already available to hooks
|
2019-12-16 01:30:34 +01:00
|
|
|
$arr = ['query' => DI::args()->getQueryString()];
|
2018-12-26 07:06:24 +01:00
|
|
|
Hook::callAll('network_content_init', $arr);
|
2017-09-13 08:43:43 +02:00
|
|
|
|
2020-09-27 00:44:34 +02:00
|
|
|
if (DI::pConfig()->get(local_user(), 'system', 'infinite_scroll') && ($_GET['mode'] ?? '') != 'minimal') {
|
|
|
|
$tpl = Renderer::getMarkupTemplate('infinite_scroll_head.tpl');
|
|
|
|
$o = Renderer::replaceMacros($tpl, ['$reload_uri' => DI::args()->getQueryString()]);
|
2020-09-27 00:52:01 +02:00
|
|
|
} else {
|
|
|
|
$o = '';
|
2020-09-27 00:44:34 +02:00
|
|
|
}
|
|
|
|
|
2020-10-05 18:48:28 +02:00
|
|
|
switch ($a->argv[1] ?? '') {
|
|
|
|
case 'person':
|
|
|
|
$account = User::ACCOUNT_TYPE_PERSON;
|
|
|
|
break;
|
|
|
|
case 'organisation':
|
|
|
|
$account = User::ACCOUNT_TYPE_ORGANISATION;
|
|
|
|
break;
|
|
|
|
case 'news':
|
|
|
|
$account = User::ACCOUNT_TYPE_NEWS;
|
|
|
|
break;
|
|
|
|
case 'community':
|
|
|
|
$account = User::ACCOUNT_TYPE_COMMUNITY;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$account = null;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-07-13 04:41:12 +02:00
|
|
|
if (!empty($_GET['file'])) {
|
2020-10-05 18:48:28 +02:00
|
|
|
$o .= networkFlatView($a, $update, $account);
|
2017-09-13 08:43:43 +02:00
|
|
|
} else {
|
2020-10-05 18:48:28 +02:00
|
|
|
$o .= networkThreadedView($a, $update, $parent, $account);
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
|
|
|
|
2020-08-14 10:09:36 +02:00
|
|
|
if (!$update && ($o === '')) {
|
2020-07-23 08:32:31 +02:00
|
|
|
notice(DI::l10n()->t("No items found"));
|
2018-11-17 13:22:32 +01:00
|
|
|
}
|
|
|
|
|
2017-09-13 08:43:43 +02:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Get the network content in flat view
|
2017-09-13 08:43:43 +02:00
|
|
|
*
|
2018-10-24 08:15:24 +02:00
|
|
|
* @param App $a The global App
|
2017-09-13 08:43:43 +02:00
|
|
|
* @param integer $update Used for the automatic reloading
|
|
|
|
* @return string HTML of the network content in flat view
|
2019-01-07 16:24:06 +01:00
|
|
|
* @throws ImagickException
|
2019-01-07 07:07:42 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @global Pager $pager
|
2017-09-13 08:43:43 +02:00
|
|
|
*/
|
2020-10-05 18:48:28 +02:00
|
|
|
function networkFlatView(App $a, $update, $account)
|
2018-01-21 16:26:05 +01:00
|
|
|
{
|
2018-10-24 08:15:24 +02:00
|
|
|
global $pager;
|
2017-09-13 08:43:43 +02:00
|
|
|
// Rawmode is used for fetching new content at the end of the page
|
2018-07-01 09:57:59 +02:00
|
|
|
$rawmode = (isset($_GET['mode']) && ($_GET['mode'] == 'raw'));
|
2017-09-13 08:43:43 +02:00
|
|
|
|
|
|
|
$o = '';
|
|
|
|
|
2019-10-15 15:01:17 +02:00
|
|
|
$file = $_GET['file'] ?? '';
|
2017-09-13 08:43:43 +02:00
|
|
|
|
|
|
|
if (!$update && !$rawmode) {
|
|
|
|
$tabs = network_tabs($a);
|
|
|
|
$o .= $tabs;
|
|
|
|
|
2018-01-15 20:51:56 +01:00
|
|
|
Nav::setSelected('network');
|
2017-09-13 08:43:43 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$x = [
|
2017-09-13 08:43:43 +02:00
|
|
|
'is_owner' => true,
|
|
|
|
'allow_location' => $a->user['allow_location'],
|
|
|
|
'default_location' => $a->user['default-location'],
|
|
|
|
'nickname' => $a->user['nickname'],
|
2018-08-18 08:20:50 +02:00
|
|
|
'lockstate' => (is_array($a->user) &&
|
|
|
|
(strlen($a->user['allow_cid']) || strlen($a->user['allow_gid']) ||
|
|
|
|
strlen($a->user['deny_cid']) || strlen($a->user['deny_gid'])) ? 'lock' : 'unlock'),
|
2018-03-03 00:41:24 +01:00
|
|
|
'default_perms' => ACL::getDefaultUserPermissions($a->user),
|
2019-12-30 20:02:09 +01:00
|
|
|
'acl' => ACL::getFullSelectorHTML(DI::page(), $a->user, true),
|
2018-01-21 16:26:05 +01:00
|
|
|
'bang' => '',
|
2017-09-13 08:43:43 +02:00
|
|
|
'visitor' => 'block',
|
|
|
|
'profile_uid' => local_user(),
|
|
|
|
'content' => '',
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2017-09-13 08:43:43 +02:00
|
|
|
|
2018-01-04 01:29:52 +01:00
|
|
|
$o .= status_editor($a, $x);
|
2017-09-13 08:43:43 +02:00
|
|
|
|
2020-01-19 21:21:13 +01:00
|
|
|
if (!DI::config()->get('theme', 'hide_eventlist')) {
|
2018-01-15 03:22:39 +01:00
|
|
|
$o .= Profile::getBirthdays();
|
2018-02-28 02:47:18 +01:00
|
|
|
$o .= Profile::getEventsReminderHTML();
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-16 17:53:52 +01:00
|
|
|
$pager = new Pager(DI::l10n(), DI::args()->getQueryString());
|
2018-10-24 08:15:24 +02:00
|
|
|
|
2020-08-13 22:07:13 +02:00
|
|
|
networkPager($a, $pager);
|
2019-03-10 00:36:11 +01:00
|
|
|
|
2017-09-13 08:43:43 +02:00
|
|
|
if (strlen($file)) {
|
2020-05-03 17:13:40 +02:00
|
|
|
$item_params = ['order' => ['uri-id' => true]];
|
|
|
|
$term_condition = ['name' => $file, 'type' => Category::FILE, 'uid' => local_user()];
|
2020-05-09 20:47:56 +02:00
|
|
|
$term_params = ['order' => ['uri-id' => true], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
|
2020-05-03 17:13:40 +02:00
|
|
|
$result = DBA::select('category-view', ['uri-id'], $term_condition, $term_params);
|
2018-06-16 00:30:49 +02:00
|
|
|
|
|
|
|
$posts = [];
|
2018-07-20 14:19:26 +02:00
|
|
|
while ($term = DBA::fetch($result)) {
|
2020-05-03 17:13:40 +02:00
|
|
|
$posts[] = $term['uri-id'];
|
2018-06-16 00:30:49 +02:00
|
|
|
}
|
2018-08-17 05:19:42 +02:00
|
|
|
DBA::close($result);
|
2018-06-16 00:30:49 +02:00
|
|
|
|
2018-11-17 17:27:12 +01:00
|
|
|
if (count($posts) == 0) {
|
2018-11-17 13:22:32 +01:00
|
|
|
return '';
|
|
|
|
}
|
2020-05-03 17:13:40 +02:00
|
|
|
$item_condition = ['uid' => local_user(), 'uri-id' => $posts];
|
2017-09-13 08:43:43 +02:00
|
|
|
} else {
|
2020-05-03 17:13:40 +02:00
|
|
|
$item_params = ['order' => ['id' => true]];
|
2019-03-10 00:36:11 +01:00
|
|
|
$item_condition = ['uid' => local_user()];
|
|
|
|
$item_params['limit'] = [$pager->getStart(), $pager->getItemsPerPage()];
|
|
|
|
|
|
|
|
networkSetSeen(['unseen' => true, 'uid' => local_user()]);
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
|
|
|
|
2020-10-05 18:48:28 +02:00
|
|
|
if (!empty($account)) {
|
|
|
|
$item_condition['contact-type'] = $account;
|
|
|
|
}
|
|
|
|
|
2019-03-10 00:36:11 +01:00
|
|
|
$result = Item::selectForUser(local_user(), [], $item_condition, $item_params);
|
2018-06-24 12:48:29 +02:00
|
|
|
$items = Item::inArray($result);
|
2018-10-24 08:15:24 +02:00
|
|
|
$o .= networkConversation($a, $items, $pager, 'network-new', $update);
|
2017-09-13 08:43:43 +02:00
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Get the network content in threaded view
|
2017-09-13 08:43:43 +02:00
|
|
|
*
|
2018-10-24 08:15:24 +02:00
|
|
|
* @param App $a The global App
|
|
|
|
* @param integer $update Used for the automatic reloading
|
|
|
|
* @param integer $parent
|
2017-09-13 08:43:43 +02:00
|
|
|
* @return string HTML of the network content in flat view
|
2019-01-07 16:24:06 +01:00
|
|
|
* @throws ImagickException
|
2019-01-07 07:07:42 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @global Pager $pager
|
2017-09-13 08:43:43 +02:00
|
|
|
*/
|
2020-10-05 18:48:28 +02:00
|
|
|
function networkThreadedView(App $a, $update, $parent, $account)
|
2018-01-21 16:26:05 +01:00
|
|
|
{
|
2018-10-24 08:15:24 +02:00
|
|
|
/// @TODO this will have to be converted to a static property of the converted Module\Network class
|
|
|
|
global $pager;
|
|
|
|
|
2016-01-10 09:19:00 +01:00
|
|
|
// Rawmode is used for fetching new content at the end of the page
|
2020-08-13 22:07:13 +02:00
|
|
|
$rawmode = (isset($_GET['mode']) AND ($_GET['mode'] == 'raw'));
|
2016-01-10 09:19:00 +01:00
|
|
|
|
2020-08-13 22:07:13 +02:00
|
|
|
$last_received = isset($_GET['last_received']) ? DateTimeFormat::utc($_GET['last_received']) : '';
|
|
|
|
$last_commented = isset($_GET['last_commented']) ? DateTimeFormat::utc($_GET['last_commented']) : '';
|
|
|
|
$last_created = isset($_GET['last_created']) ? DateTimeFormat::utc($_GET['last_created']) : '';
|
|
|
|
$last_uriid = isset($_GET['last_uriid']) ? intval($_GET['last_uriid']) : 0;
|
2017-07-31 08:04:37 +02:00
|
|
|
|
2012-06-15 02:46:58 +02:00
|
|
|
$datequery = $datequery2 = '';
|
|
|
|
|
2018-01-11 09:26:30 +01:00
|
|
|
$gid = 0;
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2018-08-15 00:43:27 +02:00
|
|
|
$default_permissions = [];
|
|
|
|
|
2017-09-13 08:43:43 +02:00
|
|
|
if ($a->argc > 1) {
|
|
|
|
for ($x = 1; $x < $a->argc; $x ++) {
|
2020-01-15 05:06:30 +01:00
|
|
|
if (DI::dtFormat()->isYearMonthDay($a->argv[$x])) {
|
2017-09-13 08:43:43 +02:00
|
|
|
if ($datequery) {
|
2018-11-09 19:27:58 +01:00
|
|
|
$datequery2 = Strings::escapeHtml($a->argv[$x]);
|
2017-09-13 08:43:43 +02:00
|
|
|
} else {
|
2018-11-09 19:27:58 +01:00
|
|
|
$datequery = Strings::escapeHtml($a->argv[$x]);
|
2019-11-02 13:54:26 +01:00
|
|
|
$_GET['order'] = 'post';
|
2012-06-15 02:46:58 +02:00
|
|
|
}
|
2017-09-13 08:43:43 +02:00
|
|
|
} elseif (intval($a->argv[$x])) {
|
2018-01-11 09:26:30 +01:00
|
|
|
$gid = intval($a->argv[$x]);
|
2019-02-11 10:00:42 +01:00
|
|
|
$default_permissions['allow_gid'] = [$gid];
|
2012-06-15 02:46:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$o = '';
|
|
|
|
|
2020-05-17 17:01:27 +02:00
|
|
|
$cid = intval($_GET['contactid'] ?? 0);
|
|
|
|
$star = intval($_GET['star'] ?? 0);
|
|
|
|
$conv = intval($_GET['conv'] ?? 0);
|
2019-11-02 13:54:26 +01:00
|
|
|
$order = Strings::escapeTags(($_GET['order'] ?? '') ?: 'activity');
|
2020-05-17 17:01:27 +02:00
|
|
|
$nets = $_GET['nets'] ?? '';
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2019-03-02 15:28:37 +01:00
|
|
|
$allowedCids = [];
|
2017-09-13 08:43:43 +02:00
|
|
|
if ($cid) {
|
2019-03-02 15:28:37 +01:00
|
|
|
$allowedCids[] = (int) $cid;
|
|
|
|
} elseif ($nets) {
|
|
|
|
$condition = [
|
|
|
|
'uid' => local_user(),
|
|
|
|
'network' => $nets,
|
|
|
|
'self' => false,
|
|
|
|
'blocked' => false,
|
|
|
|
'pending' => false,
|
|
|
|
'archive' => false,
|
|
|
|
'rel' => [Contact::SHARING, Contact::FRIEND],
|
|
|
|
];
|
|
|
|
$contactStmt = DBA::select('contact', ['id'], $condition);
|
|
|
|
while ($contact = DBA::fetch($contactStmt)) {
|
|
|
|
$allowedCids[] = (int) $contact['id'];
|
|
|
|
}
|
|
|
|
DBA::close($contactStmt);
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2019-03-02 15:28:37 +01:00
|
|
|
if (count($allowedCids)) {
|
|
|
|
$default_permissions['allow_cid'] = $allowedCids;
|
2012-06-15 02:46:58 +02:00
|
|
|
}
|
|
|
|
|
2017-09-13 08:43:43 +02:00
|
|
|
if (!$update && !$rawmode) {
|
2016-06-24 00:33:31 +02:00
|
|
|
$tabs = network_tabs($a);
|
|
|
|
$o .= $tabs;
|
|
|
|
|
2018-01-15 20:51:56 +01:00
|
|
|
Nav::setSelected('network');
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2018-01-21 16:48:15 +01:00
|
|
|
$content = '';
|
2015-04-10 00:42:03 +02:00
|
|
|
|
|
|
|
if ($cid) {
|
2015-10-30 12:47:48 +01:00
|
|
|
// If $cid belongs to a communitity forum or a privat goup,.add a mention to the status editor
|
2018-01-10 04:20:33 +01:00
|
|
|
$condition = ["`id` = ? AND (`forum` OR `prv`)", $cid];
|
2020-08-13 22:07:13 +02:00
|
|
|
$contact = DBA::selectFirst('contact', ['addr'], $condition);
|
|
|
|
if (!empty($contact['addr'])) {
|
|
|
|
$content = '!' . $contact['addr'];
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
2015-04-10 00:42:03 +02:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$x = [
|
2012-06-15 02:46:58 +02:00
|
|
|
'is_owner' => true,
|
|
|
|
'allow_location' => $a->user['allow_location'],
|
|
|
|
'default_location' => $a->user['default-location'],
|
|
|
|
'nickname' => $a->user['nickname'],
|
2018-08-18 08:20:50 +02:00
|
|
|
'lockstate' => ($gid || $cid || $nets || (is_array($a->user) &&
|
|
|
|
(strlen($a->user['allow_cid']) || strlen($a->user['allow_gid']) ||
|
|
|
|
strlen($a->user['deny_cid']) || strlen($a->user['deny_gid']))) ? 'lock' : 'unlock'),
|
2018-03-03 00:41:24 +01:00
|
|
|
'default_perms' => ACL::getDefaultUserPermissions($a->user),
|
2019-12-30 20:02:09 +01:00
|
|
|
'acl' => ACL::getFullSelectorHTML(DI::page(), $a->user, true, $default_permissions),
|
2018-01-21 16:26:05 +01:00
|
|
|
'bang' => (($gid || $cid || $nets) ? '!' : ''),
|
2012-06-15 02:46:58 +02:00
|
|
|
'visitor' => 'block',
|
2013-01-26 20:52:21 +01:00
|
|
|
'profile_uid' => local_user(),
|
2015-04-10 00:42:03 +02:00
|
|
|
'content' => $content,
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2018-01-04 01:29:52 +01:00
|
|
|
$o .= status_editor($a, $x);
|
2012-06-15 02:46:58 +02:00
|
|
|
}
|
|
|
|
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionFields = ['uid' => local_user()];
|
|
|
|
$conditionStrings = [];
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2020-10-05 18:48:28 +02:00
|
|
|
if (!empty($account)) {
|
|
|
|
$conditionFields['contact-type'] = $account;
|
|
|
|
}
|
|
|
|
|
2020-08-15 13:31:34 +02:00
|
|
|
if ($star) {
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionFields['starred'] = true;
|
2020-08-15 13:31:34 +02:00
|
|
|
}
|
|
|
|
if ($conv) {
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionFields['mention'] = true;
|
2020-08-15 13:31:34 +02:00
|
|
|
}
|
|
|
|
if ($nets) {
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionFields['network'] = $nets;
|
2020-08-15 13:31:34 +02:00
|
|
|
}
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2020-08-13 22:07:13 +02:00
|
|
|
if ($datequery) {
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionStrings = DBA::mergeConditions($conditionStrings, ["`received` <= ? ", DateTimeFormat::convert($datequery, 'UTC', date_default_timezone_get())]);
|
2020-08-13 22:07:13 +02:00
|
|
|
}
|
|
|
|
if ($datequery2) {
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionStrings = DBA::mergeConditions($conditionStrings, ["`received` >= ? ", DateTimeFormat::convert($datequery2, 'UTC', date_default_timezone_get())]);
|
2014-03-09 09:19:14 +01:00
|
|
|
}
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2018-01-11 09:26:30 +01:00
|
|
|
if ($gid) {
|
2018-07-20 14:19:26 +02:00
|
|
|
$group = DBA::selectFirst('group', ['name'], ['id' => $gid, 'uid' => local_user()]);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($group)) {
|
2018-01-11 09:26:30 +01:00
|
|
|
if ($update) {
|
2018-12-26 06:40:12 +01:00
|
|
|
exit();
|
2018-01-11 09:26:30 +01:00
|
|
|
}
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('No such group'));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('network/0');
|
2012-06-15 02:46:58 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionStrings = DBA::mergeConditions($conditionStrings, ["`contact-id` IN (SELECT `contact-id` FROM `group_member` WHERE `gid` = ?)", $gid]);
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$o = Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), [
|
2020-01-18 20:52:34 +01:00
|
|
|
'$title' => DI::l10n()->t('Group: %s', $group['name'])
|
2018-01-15 14:05:12 +01:00
|
|
|
]) . $o;
|
2017-09-13 08:43:43 +02:00
|
|
|
} elseif ($cid) {
|
2020-08-13 22:07:13 +02:00
|
|
|
$contact = Contact::getById($cid);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($contact)) {
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionFields['contact-id'] = $cid;
|
2016-10-01 22:03:27 +02:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$o = Renderer::replaceMacros(Renderer::getMarkupTemplate('viewcontact_template.tpl'), [
|
2020-08-13 22:07:13 +02:00
|
|
|
'contacts' => [ModuleContact::getContactTemplateVars($contact)],
|
2015-11-30 01:24:22 +01:00
|
|
|
'id' => 'network',
|
2018-01-15 14:05:12 +01:00
|
|
|
]) . $o;
|
2017-09-13 08:43:43 +02:00
|
|
|
} else {
|
2020-07-23 08:25:01 +02:00
|
|
|
notice(DI::l10n()->t('Invalid contact.'));
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('network');
|
2012-06-15 02:46:58 +02:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
2020-08-13 22:07:13 +02:00
|
|
|
} elseif (!$update && !DI::config()->get('theme', 'hide_eventlist')) {
|
2018-01-15 03:22:39 +01:00
|
|
|
$o .= Profile::getBirthdays();
|
2018-02-28 02:47:18 +01:00
|
|
|
$o .= Profile::getEventsReminderHTML();
|
2012-06-15 02:46:58 +02:00
|
|
|
}
|
|
|
|
|
2017-09-13 08:43:43 +02:00
|
|
|
// Normal conversation view
|
2019-11-02 13:54:26 +01:00
|
|
|
if ($order === 'post') {
|
2019-07-07 23:30:33 +02:00
|
|
|
$ordering = '`received`';
|
|
|
|
$order_mode = 'received';
|
2016-07-26 22:10:13 +02:00
|
|
|
} else {
|
2018-01-21 16:48:15 +01:00
|
|
|
$ordering = '`commented`';
|
2018-02-28 21:21:31 +01:00
|
|
|
$order_mode = 'commented';
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
2019-11-02 12:17:47 +01:00
|
|
|
|
2020-02-16 17:53:52 +01:00
|
|
|
$pager = new Pager(DI::l10n(), DI::args()->getQueryString());
|
2018-10-24 08:15:24 +02:00
|
|
|
|
2020-08-13 22:07:13 +02:00
|
|
|
networkPager($a, $pager);
|
2017-09-13 11:20:08 +02:00
|
|
|
|
2020-08-13 22:07:13 +02:00
|
|
|
if (DI::pConfig()->get(local_user(), 'system', 'infinite_scroll')) {
|
|
|
|
$pager->setPage(1);
|
|
|
|
}
|
2018-01-07 23:07:16 +01:00
|
|
|
|
2020-08-13 22:07:13 +02:00
|
|
|
// Currently only the order modes "received" and "commented" are in use
|
2017-09-13 08:43:43 +02:00
|
|
|
switch ($order_mode) {
|
|
|
|
case 'received':
|
|
|
|
if ($last_received != '') {
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionStrings = DBA::mergeConditions($conditionStrings, ["`received` < ?", $last_received]);
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'commented':
|
|
|
|
if ($last_commented != '') {
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionStrings = DBA::mergeConditions($conditionStrings, ["`commented` < ?", $last_commented]);
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'created':
|
|
|
|
if ($last_created != '') {
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionStrings = DBA::mergeConditions($conditionStrings, ["`created` < ?", $last_created]);
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
|
|
|
break;
|
2020-08-13 22:07:13 +02:00
|
|
|
case 'uriid':
|
|
|
|
if ($last_uriid > 0) {
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionStrings = DBA::mergeConditions($conditionStrings, ["`uri-id` < ?", $last_uriid]);
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2017-09-13 08:43:43 +02:00
|
|
|
// Fetch a page full of parent items for this page
|
|
|
|
if ($update) {
|
2018-02-27 22:10:05 +01:00
|
|
|
if (!empty($parent)) {
|
2018-02-28 00:25:29 +01:00
|
|
|
// Load only a single thread
|
2020-08-17 21:59:16 +02:00
|
|
|
$conditionFields['parent'] = $parent;
|
2020-08-15 08:04:09 +02:00
|
|
|
} elseif ($order === 'post') {
|
|
|
|
// Only load new toplevel posts
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionFields['unseen'] = true;
|
|
|
|
$conditionFields['gravity'] = GRAVITY_PARENT;
|
2013-12-10 00:13:19 +01:00
|
|
|
} else {
|
2018-02-28 00:25:29 +01:00
|
|
|
// Load all unseen items
|
2020-08-15 18:56:53 +02:00
|
|
|
$conditionFields['unseen'] = true;
|
2018-02-28 00:25:29 +01:00
|
|
|
}
|
|
|
|
|
2020-08-15 13:31:34 +02:00
|
|
|
$params = ['order' => [$order_mode => true], 'limit' => 100];
|
2020-08-15 13:54:37 +02:00
|
|
|
$table = 'network-item-view';
|
2017-09-13 08:43:43 +02:00
|
|
|
} else {
|
2020-08-15 13:31:34 +02:00
|
|
|
$params = ['order' => [$order_mode => true], 'limit' => [$pager->getStart(), $pager->getItemsPerPage()]];
|
2020-08-15 13:54:37 +02:00
|
|
|
$table = 'network-thread-view';
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
2020-08-15 18:56:53 +02:00
|
|
|
$r = DBA::selectToArray($table, [], DBA::mergeConditions($conditionFields, $conditionStrings), $params);
|
2013-10-15 00:49:13 +02:00
|
|
|
|
2020-08-13 22:07:13 +02:00
|
|
|
return $o . network_display_post($a, $pager, (!$gid && !$cid && !$star), $update, $ordering, $r);
|
|
|
|
}
|
2017-09-13 08:43:43 +02:00
|
|
|
|
2020-08-13 22:07:13 +02:00
|
|
|
function network_display_post($a, $pager, $mark_all, $update, $ordering, $items)
|
|
|
|
{
|
|
|
|
$parents_str = '';
|
2017-07-31 08:04:37 +02:00
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($items)) {
|
2018-02-25 22:33:15 +01:00
|
|
|
$parents_arr = [];
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2018-02-25 22:33:15 +01:00
|
|
|
foreach ($items as $item) {
|
2020-08-15 14:06:18 +02:00
|
|
|
if (!in_array($item['parent'], $parents_arr) && ($item['parent'] > 0)) {
|
|
|
|
$parents_arr[] = $item['parent'];
|
2013-12-08 14:49:24 +01:00
|
|
|
}
|
2012-06-15 02:46:58 +02:00
|
|
|
}
|
2018-02-25 22:33:15 +01:00
|
|
|
$parents_str = implode(', ', $parents_arr);
|
2017-09-13 08:43:43 +02:00
|
|
|
}
|
2012-09-30 01:56:50 +02:00
|
|
|
|
2020-09-09 06:15:25 +02:00
|
|
|
$pager->setQueryString(DI::args()->getQueryString());
|
2017-09-13 08:43:43 +02:00
|
|
|
|
2012-06-15 02:46:58 +02:00
|
|
|
// We aren't going to try and figure out at the item, group, and page
|
|
|
|
// level which items you've seen and which you haven't. If you're looking
|
2014-03-09 09:19:14 +01:00
|
|
|
// at the top level network page just mark everything seen.
|
2013-01-13 17:13:01 +01:00
|
|
|
|
2020-08-13 22:07:13 +02:00
|
|
|
if ($mark_all) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$condition = ['unseen' => true, 'uid' => local_user()];
|
2017-10-07 23:51:03 +02:00
|
|
|
networkSetSeen($condition);
|
2017-09-13 08:43:43 +02:00
|
|
|
} elseif ($parents_str) {
|
2018-07-21 15:10:13 +02:00
|
|
|
$condition = ["`uid` = ? AND `unseen` AND `parent` IN (" . DBA::escape($parents_str) . ")", local_user()];
|
2017-10-07 23:51:03 +02:00
|
|
|
networkSetSeen($condition);
|
2012-11-13 11:30:43 +01:00
|
|
|
}
|
2012-06-15 02:46:58 +02:00
|
|
|
|
2020-08-13 22:07:13 +02:00
|
|
|
return networkConversation($a, $items, $pager, 'network', $update, $ordering);
|
2012-06-15 02:46:58 +02:00
|
|
|
}
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2016-06-24 00:33:31 +02:00
|
|
|
/**
|
2020-01-19 07:05:23 +01:00
|
|
|
* Get the network tabs menu
|
2017-01-09 13:14:25 +01:00
|
|
|
*
|
2017-04-30 06:17:49 +02:00
|
|
|
* @param App $a The global App
|
2016-06-24 00:33:31 +02:00
|
|
|
* @return string Html of the networktab
|
2019-01-07 16:24:06 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2016-06-24 00:33:31 +02:00
|
|
|
*/
|
2017-12-01 14:32:21 +01:00
|
|
|
function network_tabs(App $a)
|
|
|
|
{
|
2016-06-24 00:33:31 +02:00
|
|
|
// item filter tabs
|
|
|
|
/// @TODO fix this logic, reduce duplication
|
2019-10-27 15:08:14 +01:00
|
|
|
/// DI::page()['content'] .= '<div class="tabs-wrapper">';
|
2020-07-13 04:41:12 +02:00
|
|
|
list($no_active, $all_active, $post_active, $conv_active, $starred_active) = network_query_get_sel_tab($a);
|
2017-12-01 14:32:21 +01:00
|
|
|
|
2019-11-02 13:54:26 +01:00
|
|
|
// if no tabs are selected, defaults to activitys
|
2017-12-01 14:32:21 +01:00
|
|
|
if ($no_active == 'active') {
|
|
|
|
$all_active = 'active';
|
|
|
|
}
|
2016-06-24 00:33:31 +02:00
|
|
|
|
2019-12-16 01:33:13 +01:00
|
|
|
$cmd = DI::args()->getCommand();
|
2016-06-24 00:33:31 +02:00
|
|
|
|
2020-01-13 21:10:13 +01:00
|
|
|
$def_param = [];
|
2020-05-17 17:01:27 +02:00
|
|
|
if (!empty($_GET['contactid'])) {
|
|
|
|
$def_param['contactid'] = $_GET['contactid'];
|
2020-01-13 21:10:13 +01:00
|
|
|
}
|
|
|
|
|
2016-06-24 00:33:31 +02:00
|
|
|
// tabs
|
2018-01-15 14:05:12 +01:00
|
|
|
$tabs = [
|
|
|
|
[
|
2020-01-18 20:52:34 +01:00
|
|
|
'label' => DI::l10n()->t('Latest Activity'),
|
2020-01-13 21:10:13 +01:00
|
|
|
'url' => $cmd . '?' . http_build_query(array_merge($def_param, ['order' => 'activity'])),
|
2016-06-24 00:33:31 +02:00
|
|
|
'sel' => $all_active,
|
2020-01-18 20:52:34 +01:00
|
|
|
'title' => DI::l10n()->t('Sort by latest activity'),
|
2019-11-02 13:54:26 +01:00
|
|
|
'id' => 'activity-order-tab',
|
2018-01-21 16:48:15 +01:00
|
|
|
'accesskey' => 'e',
|
2018-01-15 14:05:12 +01:00
|
|
|
],
|
|
|
|
[
|
2020-01-18 20:52:34 +01:00
|
|
|
'label' => DI::l10n()->t('Latest Posts'),
|
2020-01-13 21:10:13 +01:00
|
|
|
'url' => $cmd . '?' . http_build_query(array_merge($def_param, ['order' => 'post'])),
|
2019-11-02 13:54:26 +01:00
|
|
|
'sel' => $post_active,
|
2020-01-18 20:52:34 +01:00
|
|
|
'title' => DI::l10n()->t('Sort by post received date'),
|
2019-11-02 13:54:26 +01:00
|
|
|
'id' => 'post-order-tab',
|
2018-01-21 16:48:15 +01:00
|
|
|
'accesskey' => 't',
|
2018-01-15 14:05:12 +01:00
|
|
|
],
|
|
|
|
];
|
2016-06-24 00:33:31 +02:00
|
|
|
|
2018-11-18 21:13:46 +01:00
|
|
|
$tabs[] = [
|
2020-01-18 20:52:34 +01:00
|
|
|
'label' => DI::l10n()->t('Personal'),
|
2020-01-13 21:10:13 +01:00
|
|
|
'url' => $cmd . '?' . http_build_query(array_merge($def_param, ['conv' => true])),
|
2018-11-18 21:13:46 +01:00
|
|
|
'sel' => $conv_active,
|
2020-01-18 20:52:34 +01:00
|
|
|
'title' => DI::l10n()->t('Posts that mention or involve you'),
|
2018-11-18 21:13:46 +01:00
|
|
|
'id' => 'personal-tab',
|
|
|
|
'accesskey' => 'r',
|
|
|
|
];
|
2016-06-24 00:33:31 +02:00
|
|
|
|
2018-11-18 21:13:46 +01:00
|
|
|
$tabs[] = [
|
2020-01-18 20:52:34 +01:00
|
|
|
'label' => DI::l10n()->t('Starred'),
|
2020-01-13 21:10:13 +01:00
|
|
|
'url' => $cmd . '?' . http_build_query(array_merge($def_param, ['star' => true])),
|
2018-11-18 21:13:46 +01:00
|
|
|
'sel' => $starred_active,
|
2020-01-18 20:52:34 +01:00
|
|
|
'title' => DI::l10n()->t('Favourite Posts'),
|
2018-11-18 21:13:46 +01:00
|
|
|
'id' => 'starred-posts-tab',
|
|
|
|
'accesskey' => 'm',
|
|
|
|
];
|
2016-06-24 00:33:31 +02:00
|
|
|
|
2017-09-13 08:43:43 +02:00
|
|
|
// save selected tab, but only if not in file mode
|
2018-11-30 15:06:22 +01:00
|
|
|
if (empty($_GET['file'])) {
|
2020-01-18 16:54:50 +01:00
|
|
|
DI::pConfig()->set(local_user(), 'network.view', 'tab.selected', [
|
2020-07-13 04:41:12 +02:00
|
|
|
$all_active, $post_active, $conv_active, $starred_active
|
2018-01-21 16:26:05 +01:00
|
|
|
]);
|
2016-06-24 00:33:31 +02:00
|
|
|
}
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$arr = ['tabs' => $tabs];
|
2018-12-26 07:06:24 +01:00
|
|
|
Hook::callAll('network_tabs', $arr);
|
2017-01-09 13:14:25 +01:00
|
|
|
|
2018-10-31 15:44:06 +01:00
|
|
|
$tpl = Renderer::getMarkupTemplate('common_tabs.tpl');
|
2016-06-24 00:33:31 +02:00
|
|
|
|
2018-10-31 15:35:50 +01:00
|
|
|
return Renderer::replaceMacros($tpl, ['$tabs' => $arr['tabs']]);
|
2016-06-24 00:33:31 +02:00
|
|
|
|
|
|
|
// --- end item filter tabs
|
|
|
|
}
|