2018-01-15 09:22:01 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Content/Widget.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Content;
|
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
use Friendica\Core\Addon;
|
2018-01-15 09:22:01 -05:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 17:15:52 -05:00
|
|
|
use Friendica\Core\L10n;
|
2018-01-15 09:22:01 -05:00
|
|
|
use Friendica\Core\PConfig;
|
2018-08-11 16:40:44 -04:00
|
|
|
use Friendica\Core\Protocol;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2018-01-15 10:39:27 -05:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-02-03 23:49:48 -05:00
|
|
|
use Friendica\Model\Contact;
|
2018-10-30 14:51:45 -04:00
|
|
|
use Friendica\Model\FileTag;
|
2018-01-15 09:22:01 -05:00
|
|
|
use Friendica\Model\GContact;
|
|
|
|
use Friendica\Model\Profile;
|
2019-01-19 09:12:46 -05:00
|
|
|
use Friendica\Util\Proxy as ProxyUtils;
|
2018-11-08 11:28:29 -05:00
|
|
|
use Friendica\Util\Strings;
|
2018-11-05 07:40:18 -05:00
|
|
|
use Friendica\Util\XML;
|
2018-01-15 10:39:27 -05:00
|
|
|
|
2018-01-15 09:22:01 -05:00
|
|
|
class Widget
|
|
|
|
{
|
2018-01-15 09:50:06 -05:00
|
|
|
/**
|
|
|
|
* Return the follow widget
|
|
|
|
*
|
|
|
|
* @param string $value optional, default empty
|
2019-01-06 16:06:53 -05:00
|
|
|
* @return string
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 09:50:06 -05:00
|
|
|
*/
|
|
|
|
public static function follow($value = "")
|
2018-01-15 09:22:01 -05:00
|
|
|
{
|
2018-10-31 10:44:06 -04:00
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('follow.tpl'), array(
|
2018-01-22 09:54:13 -05:00
|
|
|
'$connect' => L10n::t('Add New Contact'),
|
|
|
|
'$desc' => L10n::t('Enter address or web location'),
|
|
|
|
'$hint' => L10n::t('Example: bob@example.com, http://example.com/barbara'),
|
2018-01-15 09:22:01 -05:00
|
|
|
'$value' => $value,
|
2018-01-22 09:54:13 -05:00
|
|
|
'$follow' => L10n::t('Connect')
|
2018-01-15 09:22:01 -05:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2018-01-15 09:50:06 -05:00
|
|
|
/**
|
|
|
|
* Return Find People widget
|
|
|
|
*/
|
|
|
|
public static function findPeople()
|
2018-01-15 09:22:01 -05:00
|
|
|
{
|
2018-12-27 19:22:35 -05:00
|
|
|
$a = \get_app();
|
2018-01-15 09:22:01 -05:00
|
|
|
$global_dir = Config::get('system', 'directory');
|
|
|
|
|
|
|
|
if (Config::get('system', 'invitation_only')) {
|
|
|
|
$x = PConfig::get(local_user(), 'system', 'invites_remaining');
|
|
|
|
if ($x || is_site_admin()) {
|
2018-08-27 13:36:44 -04:00
|
|
|
$a->page['aside'] .= '<div class="side-link widget" id="side-invite-remain">'
|
2018-01-21 17:15:52 -05:00
|
|
|
. L10n::tt('%d invitation available', '%d invitations available', $x)
|
2018-02-12 10:08:28 -05:00
|
|
|
. '</div>';
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-19 16:54:14 -04:00
|
|
|
$nv = [];
|
|
|
|
$nv['findpeople'] = L10n::t('Find People');
|
|
|
|
$nv['desc'] = L10n::t('Enter name or interest');
|
|
|
|
$nv['label'] = L10n::t('Connect/Follow');
|
|
|
|
$nv['hint'] = L10n::t('Examples: Robert Morgenstein, Fishing');
|
|
|
|
$nv['findthem'] = L10n::t('Find');
|
|
|
|
$nv['suggest'] = L10n::t('Friend Suggestions');
|
|
|
|
$nv['similar'] = L10n::t('Similar Interests');
|
|
|
|
$nv['random'] = L10n::t('Random Profile');
|
|
|
|
$nv['inv'] = L10n::t('Invite Friends');
|
|
|
|
$nv['directory'] = L10n::t('Global Directory');
|
|
|
|
$nv['global_dir'] = $global_dir;
|
|
|
|
$nv['local_directory'] = L10n::t('Local Directory');
|
|
|
|
|
|
|
|
$aside = [];
|
|
|
|
$aside['$nv'] = $nv;
|
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('peoplefind.tpl'), $aside);
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
|
|
|
|
2018-01-15 09:50:06 -05:00
|
|
|
/**
|
|
|
|
* Return unavailable networks
|
|
|
|
*/
|
|
|
|
public static function unavailableNetworks()
|
2018-01-15 09:22:01 -05:00
|
|
|
{
|
2018-08-10 00:59:26 -04:00
|
|
|
// Always hide content from these networks
|
|
|
|
$networks = ['face', 'apdn'];
|
2018-01-15 09:22:01 -05:00
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (!Addon::isEnabled("statusnet")) {
|
2018-08-11 16:40:44 -04:00
|
|
|
$networks[] = Protocol::STATUSNET;
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (!Addon::isEnabled("pumpio")) {
|
2018-08-11 16:40:44 -04:00
|
|
|
$networks[] = Protocol::PUMPIO;
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (!Addon::isEnabled("twitter")) {
|
2018-08-11 16:40:44 -04:00
|
|
|
$networks[] = Protocol::TWITTER;
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Config::get("system", "ostatus_disabled")) {
|
2018-08-11 16:40:44 -04:00
|
|
|
$networks[] = Protocol::OSTATUS;
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!Config::get("system", "diaspora_enabled")) {
|
2018-08-11 16:40:44 -04:00
|
|
|
$networks[] = Protocol::DIASPORA;
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
|
|
|
|
2018-01-17 13:42:40 -05:00
|
|
|
if (!Addon::isEnabled("pnut")) {
|
2018-08-11 16:40:44 -04:00
|
|
|
$networks[] = Protocol::PNUT;
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!sizeof($networks)) {
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
|
|
|
$network_filter = implode("','", $networks);
|
|
|
|
|
|
|
|
$network_filter = "AND `network` NOT IN ('$network_filter')";
|
|
|
|
|
|
|
|
return $network_filter;
|
|
|
|
}
|
|
|
|
|
2018-01-15 09:50:06 -05:00
|
|
|
/**
|
|
|
|
* Return networks widget
|
|
|
|
*
|
|
|
|
* @param string $baseurl baseurl
|
|
|
|
* @param string $selected optional, default empty
|
2019-01-06 16:06:53 -05:00
|
|
|
* @return string
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 09:50:06 -05:00
|
|
|
*/
|
|
|
|
public static function networks($baseurl, $selected = '')
|
2018-01-15 09:22:01 -05:00
|
|
|
{
|
|
|
|
if (!local_user()) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!Feature::isEnabled(local_user(), 'networks')) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2018-01-15 09:50:06 -05:00
|
|
|
$extra_sql = self::unavailableNetworks();
|
2018-01-15 09:22:01 -05:00
|
|
|
|
2019-01-12 08:28:14 -05:00
|
|
|
$r = DBA::p("SELECT DISTINCT(`network`) FROM `contact` WHERE `uid` = ? AND NOT `deleted` AND `network` != '' $extra_sql ORDER BY `network`",
|
2018-01-15 09:22:01 -05:00
|
|
|
local_user()
|
|
|
|
);
|
|
|
|
|
|
|
|
$nets = array();
|
2018-07-20 08:19:26 -04:00
|
|
|
while ($rr = DBA::fetch($r)) {
|
2018-09-14 12:51:32 -04:00
|
|
|
$nets[] = array('ref' => $rr['network'], 'name' => ContactSelector::networkToName($rr['network']), 'selected' => (($selected == $rr['network']) ? 'selected' : '' ));
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::close($r);
|
2018-01-15 09:22:01 -05:00
|
|
|
|
|
|
|
if (count($nets) < 2) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('nets.tpl'), array(
|
2018-11-18 07:44:01 -05:00
|
|
|
'$title' => L10n::t('Protocols'),
|
2018-01-15 09:22:01 -05:00
|
|
|
'$desc' => '',
|
|
|
|
'$sel_all' => (($selected == '') ? 'selected' : ''),
|
2018-11-18 07:44:01 -05:00
|
|
|
'$all' => L10n::t('All Protocols'),
|
2018-01-15 09:22:01 -05:00
|
|
|
'$nets' => $nets,
|
|
|
|
'$base' => $baseurl,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2018-01-15 09:50:06 -05:00
|
|
|
/**
|
|
|
|
* Return file as widget
|
|
|
|
*
|
|
|
|
* @param string $baseurl baseurl
|
|
|
|
* @param string $selected optional, default empty
|
2019-01-06 16:06:53 -05:00
|
|
|
* @return string|void
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 09:50:06 -05:00
|
|
|
*/
|
|
|
|
public static function fileAs($baseurl, $selected = '')
|
2018-01-15 09:22:01 -05:00
|
|
|
{
|
|
|
|
if (!local_user()) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$saved = PConfig::get(local_user(), 'system', 'filetags');
|
|
|
|
if (!strlen($saved)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$matches = false;
|
|
|
|
$terms = array();
|
|
|
|
$cnt = preg_match_all('/\[(.*?)\]/', $saved, $matches, PREG_SET_ORDER);
|
|
|
|
if ($cnt) {
|
2018-10-30 14:51:45 -04:00
|
|
|
foreach ($matches as $mtch)
|
|
|
|
{
|
2018-11-05 07:40:18 -05:00
|
|
|
$unescaped = XML::escape(FileTag::decode($mtch[1]));
|
2018-01-15 09:22:01 -05:00
|
|
|
$terms[] = array('name' => $unescaped, 'selected' => (($selected == $unescaped) ? 'selected' : ''));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('fileas_widget.tpl'), array(
|
2018-01-22 09:54:13 -05:00
|
|
|
'$title' => L10n::t('Saved Folders'),
|
2018-01-15 09:22:01 -05:00
|
|
|
'$desc' => '',
|
|
|
|
'$sel_all' => (($selected == '') ? 'selected' : ''),
|
2018-01-22 09:54:13 -05:00
|
|
|
'$all' => L10n::t('Everything'),
|
2018-01-15 09:22:01 -05:00
|
|
|
'$terms' => $terms,
|
|
|
|
'$base' => $baseurl,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2018-01-15 09:50:06 -05:00
|
|
|
/**
|
|
|
|
* Return categories widget
|
|
|
|
*
|
|
|
|
* @param string $baseurl baseurl
|
|
|
|
* @param string $selected optional, default empty
|
2019-01-06 16:06:53 -05:00
|
|
|
* @return string|void
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 09:50:06 -05:00
|
|
|
*/
|
|
|
|
public static function categories($baseurl, $selected = '')
|
2018-01-15 09:22:01 -05:00
|
|
|
{
|
2018-12-27 19:22:35 -05:00
|
|
|
$a = \get_app();
|
2018-01-15 09:22:01 -05:00
|
|
|
|
|
|
|
if (!Feature::isEnabled($a->profile['profile_uid'], 'categories')) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$saved = PConfig::get($a->profile['profile_uid'], 'system', 'filetags');
|
|
|
|
if (!strlen($saved)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$matches = false;
|
|
|
|
$terms = array();
|
|
|
|
$cnt = preg_match_all('/<(.*?)>/', $saved, $matches, PREG_SET_ORDER);
|
|
|
|
|
|
|
|
if ($cnt) {
|
|
|
|
foreach ($matches as $mtch) {
|
2018-11-05 07:40:18 -05:00
|
|
|
$unescaped = XML::escape(FileTag::decode($mtch[1]));
|
2018-01-15 09:22:01 -05:00
|
|
|
$terms[] = array('name' => $unescaped, 'selected' => (($selected == $unescaped) ? 'selected' : ''));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('categories_widget.tpl'), array(
|
2018-01-22 09:54:13 -05:00
|
|
|
'$title' => L10n::t('Categories'),
|
2018-01-15 09:22:01 -05:00
|
|
|
'$desc' => '',
|
|
|
|
'$sel_all' => (($selected == '') ? 'selected' : ''),
|
2018-01-22 09:54:13 -05:00
|
|
|
'$all' => L10n::t('Everything'),
|
2018-01-15 09:22:01 -05:00
|
|
|
'$terms' => $terms,
|
|
|
|
'$base' => $baseurl,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2018-01-15 09:50:06 -05:00
|
|
|
/**
|
|
|
|
* Return common friends visitor widget
|
|
|
|
*
|
|
|
|
* @param string $profile_uid uid
|
2019-01-06 16:06:53 -05:00
|
|
|
* @return string|void
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-15 09:50:06 -05:00
|
|
|
*/
|
|
|
|
public static function commonFriendsVisitor($profile_uid)
|
2018-01-15 09:22:01 -05:00
|
|
|
{
|
|
|
|
if (local_user() == $profile_uid) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$cid = $zcid = 0;
|
|
|
|
|
2018-07-10 08:27:56 -04:00
|
|
|
if (!empty($_SESSION['remote'])) {
|
2018-01-15 09:22:01 -05:00
|
|
|
foreach ($_SESSION['remote'] as $visitor) {
|
|
|
|
if ($visitor['uid'] == $profile_uid) {
|
|
|
|
$cid = $visitor['cid'];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$cid) {
|
|
|
|
if (Profile::getMyURL()) {
|
2018-07-20 08:19:26 -04:00
|
|
|
$contact = DBA::selectFirst('contact', ['id'],
|
2018-11-08 11:28:29 -05:00
|
|
|
['nurl' => Strings::normaliseLink(Profile::getMyURL()), 'uid' => $profile_uid]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($contact)) {
|
2018-01-15 09:22:01 -05:00
|
|
|
$cid = $contact['id'];
|
|
|
|
} else {
|
2018-11-08 11:28:29 -05:00
|
|
|
$gcontact = DBA::selectFirst('gcontact', ['id'], ['nurl' => Strings::normaliseLink(Profile::getMyURL())]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($gcontact)) {
|
2018-01-15 09:22:01 -05:00
|
|
|
$zcid = $gcontact['id'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($cid == 0 && $zcid == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($cid) {
|
|
|
|
$t = GContact::countCommonFriends($profile_uid, $cid);
|
|
|
|
} else {
|
|
|
|
$t = GContact::countCommonFriendsZcid($profile_uid, $zcid);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$t) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($cid) {
|
|
|
|
$r = GContact::commonFriends($profile_uid, $cid, 0, 5, true);
|
|
|
|
} else {
|
|
|
|
$r = GContact::commonFriendsZcid($profile_uid, $zcid, 0, 5, true);
|
|
|
|
}
|
|
|
|
|
2019-01-19 09:12:46 -05:00
|
|
|
if (!DBA::isResult($r)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$entries = [];
|
|
|
|
foreach ($r as $rr) {
|
|
|
|
$entry = [
|
|
|
|
'url' => Contact::magicLink($rr['url']),
|
|
|
|
'name' => $rr['name'],
|
|
|
|
'photo' => ProxyUtils::proxifyUrl($rr['photo'], false, ProxyUtils::SIZE_THUMB),
|
|
|
|
];
|
|
|
|
$entries[] = $entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
$tpl = Renderer::getMarkupTemplate('remote_friends_common.tpl');
|
|
|
|
return Renderer::replaceMacros($tpl, [
|
|
|
|
'$desc' => L10n::tt("%d contact in common", "%d contacts in common", $t),
|
|
|
|
'$base' => System::baseUrl(),
|
|
|
|
'$uid' => $profile_uid,
|
|
|
|
'$cid' => (($cid) ? $cid : '0'),
|
2018-01-15 09:22:01 -05:00
|
|
|
'$linkmore' => (($t > 5) ? 'true' : ''),
|
2019-01-19 09:12:46 -05:00
|
|
|
'$more' => L10n::t('show more'),
|
|
|
|
'$items' => $entries
|
|
|
|
]);
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
2018-02-03 23:49:48 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Insert a tag cloud widget for the present profile.
|
|
|
|
*
|
|
|
|
* @brief Insert a tag cloud widget for the present profile.
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param int $limit Max number of displayed tags.
|
2018-02-03 23:49:48 -05:00
|
|
|
* @return string HTML formatted output.
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
2018-02-03 23:49:48 -05:00
|
|
|
*/
|
|
|
|
public static function tagCloud($limit = 50)
|
|
|
|
{
|
2018-12-27 19:22:35 -05:00
|
|
|
$a = \get_app();
|
2018-02-03 23:49:48 -05:00
|
|
|
|
|
|
|
if (!$a->profile['profile_uid'] || !$a->profile['url']) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Feature::isEnabled($a->profile['profile_uid'], 'tagadelic')) {
|
2018-03-01 19:54:45 -05:00
|
|
|
$owner_id = Contact::getIdForURL($a->profile['url'], 0, true);
|
2018-02-03 23:49:48 -05:00
|
|
|
|
|
|
|
if (!$owner_id) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
return Widget\TagCloud::getHTML($a->profile['profile_uid'], $limit, $owner_id, 'wall');
|
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|