2011-11-01 22:16:33 -04:00
|
|
|
<?php
|
2017-11-15 09:47:28 -05:00
|
|
|
/**
|
2020-02-09 10:18:46 -05: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-15 09:47:28 -05:00
|
|
|
*/
|
2018-07-19 22:15:21 -04:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-01-09 22:42:04 -05:00
|
|
|
use Friendica\Content\ContactSelector;
|
2018-10-24 02:15:24 -04:00
|
|
|
use Friendica\Content\Pager;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 19:30:34 -05:00
|
|
|
use Friendica\DI;
|
2018-10-13 05:23:52 -04:00
|
|
|
use Friendica\Model;
|
2020-07-28 08:58:19 -04:00
|
|
|
use Friendica\Model\Contact;
|
2018-10-14 14:03:22 -04:00
|
|
|
use Friendica\Module;
|
2018-11-08 11:28:29 -05:00
|
|
|
use Friendica\Util\Strings;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
function common_content(App $a)
|
|
|
|
{
|
2011-11-01 22:16:33 -04:00
|
|
|
$o = '';
|
|
|
|
|
2012-05-04 04:46:36 -04:00
|
|
|
$cmd = $a->argv[1];
|
|
|
|
$uid = intval($a->argv[2]);
|
|
|
|
$cid = intval($a->argv[3]);
|
|
|
|
$zcid = 0;
|
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
if (!local_user()) {
|
2020-07-23 02:25:01 -04:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
2015-11-03 08:31:15 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-22 11:12:34 -05:00
|
|
|
if ($cmd !== 'loc' && $cmd != 'rem') {
|
2012-05-04 04:46:36 -04:00
|
|
|
return;
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2015-11-03 08:31:15 -05:00
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
if (!$uid) {
|
2011-11-01 22:16:33 -04:00
|
|
|
return;
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2011-11-01 22:16:33 -04:00
|
|
|
|
2016-12-22 11:12:34 -05:00
|
|
|
if ($cmd === 'loc' && $cid) {
|
2018-08-25 09:48:00 -04:00
|
|
|
$contact = DBA::selectFirst('contact', ['name', 'url', 'photo', 'uid', 'id'], ['id' => $cid, 'uid' => $uid]);
|
2018-01-14 21:22:39 -05:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($contact)) {
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['aside'] = "";
|
2020-07-15 13:22:12 -04:00
|
|
|
Model\Profile::load($a, "", Model\Contact::getByURL($contact["url"], false));
|
2018-01-14 21:22:39 -05:00
|
|
|
}
|
2015-12-01 02:12:05 -05:00
|
|
|
} else {
|
2018-08-25 09:48:00 -04:00
|
|
|
$contact = DBA::selectFirst('contact', ['name', 'url', 'photo', 'uid', 'id'], ['self' => true, 'uid' => $uid]);
|
2015-05-27 06:44:40 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($contact)) {
|
2020-02-11 21:38:42 -05:00
|
|
|
$vcard_widget = Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/vcard.tpl'), [
|
2018-12-25 11:37:32 -05:00
|
|
|
'$name' => $contact['name'],
|
2018-01-14 23:44:39 -05:00
|
|
|
'$photo' => $contact['photo'],
|
2018-10-18 07:48:34 -04:00
|
|
|
'url' => 'contact/' . $cid
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
|
|
|
|
2019-12-30 14:02:09 -05:00
|
|
|
if (empty(DI::page()['aside'])) {
|
|
|
|
DI::page()['aside'] = '';
|
2018-01-14 21:22:39 -05:00
|
|
|
}
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['aside'] .= $vcard_widget;
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2015-12-01 02:12:05 -05:00
|
|
|
}
|
2011-11-01 22:16:33 -04:00
|
|
|
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($contact)) {
|
2011-11-01 22:16:33 -04:00
|
|
|
return;
|
2016-12-20 09:37:27 -05:00
|
|
|
}
|
2011-11-01 22:16:33 -04:00
|
|
|
|
2018-10-14 14:03:22 -04:00
|
|
|
if (!$cid && Model\Profile::getMyURL()) {
|
2018-11-08 11:28:29 -05:00
|
|
|
$contact = DBA::selectFirst('contact', ['id'], ['nurl' => Strings::normaliseLink(Model\Profile::getMyURL()), 'uid' => $uid]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($contact)) {
|
2018-01-09 22:20:33 -05:00
|
|
|
$cid = $contact['id'];
|
2018-01-04 19:42:48 -05:00
|
|
|
} else {
|
2018-11-08 11:28:29 -05:00
|
|
|
$gcontact = DBA::selectFirst('gcontact', ['id'], ['nurl' => Strings::normaliseLink(Model\Profile::getMyURL())]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($gcontact)) {
|
2018-01-09 22:20:33 -05:00
|
|
|
$zcid = $gcontact['id'];
|
2012-05-04 04:46:36 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-22 11:12:34 -05:00
|
|
|
if ($cid == 0 && $zcid == 0) {
|
2015-11-05 18:47:54 -05:00
|
|
|
return;
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2012-05-04 04:46:36 -04:00
|
|
|
|
2016-12-22 11:12:34 -05:00
|
|
|
if ($cid) {
|
2018-10-24 11:42:59 -04:00
|
|
|
$total = Model\GContact::countCommonFriends($uid, $cid);
|
2016-12-22 11:12:34 -05:00
|
|
|
} else {
|
2018-10-24 11:42:59 -04:00
|
|
|
$total = Model\GContact::countCommonFriendsZcid($uid, $zcid);
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2012-05-04 04:46:36 -04:00
|
|
|
|
2018-10-24 11:42:59 -04:00
|
|
|
if ($total < 1) {
|
2020-07-23 02:25:01 -04:00
|
|
|
notice(DI::l10n()->t('No contacts in common.'));
|
2012-05-04 04:46:36 -04:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2020-02-16 11:53:52 -05:00
|
|
|
$pager = new Pager(DI::l10n(), DI::args()->getQueryString());
|
2018-10-24 11:42:59 -04:00
|
|
|
|
2016-12-22 11:12:34 -05:00
|
|
|
if ($cid) {
|
2018-10-24 11:42:59 -04:00
|
|
|
$common_friends = Model\GContact::commonFriends($uid, $cid, $pager->getStart(), $pager->getItemsPerPage());
|
2016-12-22 11:12:34 -05:00
|
|
|
} else {
|
2018-10-24 11:42:59 -04:00
|
|
|
$common_friends = Model\GContact::commonFriendsZcid($uid, $zcid, $pager->getStart(), $pager->getItemsPerPage());
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2011-11-01 22:16:33 -04:00
|
|
|
|
2018-10-24 11:42:59 -04:00
|
|
|
if (!DBA::isResult($common_friends)) {
|
2011-11-01 22:16:33 -04:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2015-10-27 10:27:26 -04:00
|
|
|
$id = 0;
|
2011-11-01 22:16:33 -04:00
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
$entries = [];
|
2018-10-24 11:42:59 -04:00
|
|
|
foreach ($common_friends as $common_friend) {
|
2020-07-30 17:16:15 -04:00
|
|
|
$contact = Model\Contact::getByURL($common_friend['url']);
|
|
|
|
if (!empty($contact)) {
|
|
|
|
$entries[] = Model\Contact::getTemplateData($contact, ++$id);
|
|
|
|
}
|
2011-11-01 22:16:33 -04:00
|
|
|
}
|
|
|
|
|
2018-01-04 19:42:48 -05:00
|
|
|
$title = '';
|
|
|
|
$tab_str = '';
|
|
|
|
if ($cmd === 'loc' && $cid && local_user() == $uid) {
|
2019-12-13 15:27:16 -05:00
|
|
|
$tab_str = Module\Contact::getTabsHTML($a, $contact, 5);
|
2016-12-22 11:12:34 -05:00
|
|
|
} else {
|
2020-01-18 14:52:34 -05:00
|
|
|
$title = DI::l10n()->t('Common Friends');
|
2016-12-22 11:12:34 -05:00
|
|
|
}
|
2015-12-01 02:12:05 -05:00
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
|
2015-10-27 10:27:26 -04:00
|
|
|
|
2018-10-31 10:35:50 -04:00
|
|
|
$o .= Renderer::replaceMacros($tpl, [
|
2016-12-22 11:12:34 -05:00
|
|
|
'$title' => $title,
|
|
|
|
'$tab_str' => $tab_str,
|
2015-10-27 10:27:26 -04:00
|
|
|
'$contacts' => $entries,
|
2018-10-24 11:42:59 -04:00
|
|
|
'$paginate' => $pager->renderFull($total),
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2015-10-27 10:27:26 -04:00
|
|
|
|
2011-11-01 22:16:33 -04:00
|
|
|
return $o;
|
|
|
|
}
|