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;
|
2019-09-28 05:36:41 -04:00
|
|
|
use Friendica\Core\Session;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-30 14:02:09 -05:00
|
|
|
use Friendica\DI;
|
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;
|
2019-05-25 19:08:15 -04:00
|
|
|
use Friendica\Model\Item;
|
2018-01-15 09:22:01 -05:00
|
|
|
use Friendica\Model\Profile;
|
2019-05-25 19:08:15 -04:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
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;
|
2019-05-25 19:08:15 -04:00
|
|
|
use Friendica\Util\Temporal;
|
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
|
|
|
{
|
2019-05-18 11:33:35 -04:00
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/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
|
|
|
{
|
|
|
|
$global_dir = Config::get('system', 'directory');
|
|
|
|
|
|
|
|
if (Config::get('system', 'invitation_only')) {
|
2019-07-18 08:42:07 -04:00
|
|
|
$x = intval(PConfig::get(local_user(), 'system', 'invites_remaining'));
|
2018-01-15 09:22:01 -05:00
|
|
|
if ($x || is_site_admin()) {
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::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;
|
|
|
|
|
2019-05-18 11:33:35 -04:00
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/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
|
|
|
|
2019-11-24 15:06:47 -05:00
|
|
|
if (!Addon::isEnabled("discourse")) {
|
|
|
|
$networks[] = Protocol::DISCOURSE;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-05-18 11:33:35 -04:00
|
|
|
/**
|
2019-05-18 11:44:04 -04:00
|
|
|
* Display a generic filter widget based on a list of options
|
|
|
|
*
|
|
|
|
* The options array must be the following format:
|
|
|
|
* [
|
|
|
|
* [
|
|
|
|
* 'ref' => {filter value},
|
|
|
|
* 'name' => {option name}
|
|
|
|
* ],
|
|
|
|
* ...
|
|
|
|
* ]
|
|
|
|
*
|
|
|
|
* @param string $type The filter query string key
|
2019-05-18 11:33:35 -04:00
|
|
|
* @param string $title
|
|
|
|
* @param string $desc
|
2019-05-18 11:44:04 -04:00
|
|
|
* @param string $all The no filter label
|
|
|
|
* @param string $baseUrl The full page request URI
|
2019-05-18 11:33:35 -04:00
|
|
|
* @param array $options
|
2019-05-18 11:44:04 -04:00
|
|
|
* @param string $selected The currently selected filter option value
|
2019-05-18 11:33:35 -04:00
|
|
|
* @return string
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2019-05-18 11:44:04 -04:00
|
|
|
private static function filter($type, $title, $desc, $all, $baseUrl, array $options, $selected = null)
|
2019-05-18 11:33:35 -04:00
|
|
|
{
|
|
|
|
$queryString = parse_url($baseUrl, PHP_URL_QUERY);
|
|
|
|
$queryArray = [];
|
|
|
|
|
|
|
|
if ($queryString) {
|
|
|
|
parse_str($queryString, $queryArray);
|
|
|
|
unset($queryArray[$type]);
|
|
|
|
|
|
|
|
if (count($queryArray)) {
|
|
|
|
$baseUrl = substr($baseUrl, 0, strpos($baseUrl, '?')) . '?' . http_build_query($queryArray) . '&';
|
|
|
|
} else {
|
|
|
|
$baseUrl = substr($baseUrl, 0, strpos($baseUrl, '?')) . '?';
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$baseUrl = trim($baseUrl, '?') . '?';
|
|
|
|
}
|
|
|
|
|
|
|
|
return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/filter.tpl'), [
|
|
|
|
'$type' => $type,
|
|
|
|
'$title' => $title,
|
|
|
|
'$desc' => $desc,
|
|
|
|
'$selected' => $selected,
|
|
|
|
'$all_label' => $all,
|
|
|
|
'$options' => $options,
|
|
|
|
'$base' => $baseUrl,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2019-05-18 11:44:04 -04:00
|
|
|
/**
|
|
|
|
* Return networks widget
|
|
|
|
*
|
|
|
|
* @param string $baseurl baseurl
|
|
|
|
* @param string $selected optional, default empty
|
|
|
|
* @return string
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
|
|
|
public static function contactRels($baseurl, $selected = '')
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$options = [
|
|
|
|
['ref' => 'followers', 'name' => L10n::t('Followers')],
|
|
|
|
['ref' => 'following', 'name' => L10n::t('Following')],
|
|
|
|
['ref' => 'mutuals', 'name' => L10n::t('Mutual friends')],
|
|
|
|
];
|
|
|
|
|
|
|
|
return self::filter(
|
|
|
|
'rel',
|
|
|
|
L10n::t('Relationships'),
|
|
|
|
'',
|
|
|
|
L10n::t('All Contacts'),
|
|
|
|
$baseurl,
|
|
|
|
$options,
|
|
|
|
$selected
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
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)) {
|
2019-05-18 11:33:35 -04:00
|
|
|
$nets[] = ['ref' => $rr['network'], 'name' => ContactSelector::networkToName($rr['network'])];
|
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 '';
|
|
|
|
}
|
|
|
|
|
2019-05-18 11:33:35 -04:00
|
|
|
return self::filter(
|
|
|
|
'nets',
|
|
|
|
L10n::t('Protocols'),
|
|
|
|
'',
|
|
|
|
L10n::t('All Protocols'),
|
|
|
|
$baseurl,
|
|
|
|
$nets,
|
|
|
|
$selected
|
|
|
|
);
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
|
|
|
|
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
|
2019-05-27 17:17:53 -04:00
|
|
|
* @throws \Exception
|
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;
|
|
|
|
}
|
|
|
|
|
2019-05-27 17:17:53 -04:00
|
|
|
$terms = [];
|
|
|
|
foreach (FileTag::fileToArray($saved) as $savedFolderName) {
|
|
|
|
$terms[] = ['ref' => $savedFolderName, 'name' => $savedFolderName];
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
2019-11-01 17:22:52 -04:00
|
|
|
|
2019-11-01 22:44:54 -04:00
|
|
|
usort($terms, function ($a, $b) {
|
|
|
|
return strcmp($a['name'], $b['name']);
|
|
|
|
});
|
2018-01-15 09:22:01 -05:00
|
|
|
|
2019-05-18 11:33:35 -04:00
|
|
|
return self::filter(
|
|
|
|
'file',
|
|
|
|
L10n::t('Saved Folders'),
|
|
|
|
'',
|
|
|
|
L10n::t('Everything'),
|
|
|
|
$baseurl,
|
|
|
|
$terms,
|
|
|
|
$selected
|
|
|
|
);
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
2020-01-04 17:42:01 -05:00
|
|
|
$a = DI::app();
|
2018-01-15 09:22:01 -05:00
|
|
|
|
2019-07-15 21:46:55 -04:00
|
|
|
$uid = intval($a->profile['profile_uid']);
|
|
|
|
|
|
|
|
if (!Feature::isEnabled($uid, 'categories')) {
|
2018-01-15 09:22:01 -05:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2019-07-15 21:46:55 -04:00
|
|
|
$saved = PConfig::get($uid, 'system', 'filetags');
|
2018-01-15 09:22:01 -05:00
|
|
|
if (!strlen($saved)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$terms = array();
|
2019-05-27 17:17:53 -04:00
|
|
|
foreach (FileTag::fileToArray($saved, 'category') as $savedFolderName) {
|
|
|
|
$terms[] = ['ref' => $savedFolderName, 'name' => $savedFolderName];
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
|
|
|
|
2019-05-18 11:33:35 -04:00
|
|
|
return self::filter(
|
|
|
|
'category',
|
|
|
|
L10n::t('Categories'),
|
|
|
|
'',
|
|
|
|
L10n::t('Everything'),
|
|
|
|
$baseurl,
|
|
|
|
$terms,
|
|
|
|
$selected
|
|
|
|
);
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-09-23 18:13:20 -04:00
|
|
|
$zcid = 0;
|
|
|
|
|
2019-09-28 05:36:41 -04:00
|
|
|
$cid = Session::getRemoteContactID($profile_uid);
|
2018-01-15 09:22:01 -05:00
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2019-05-18 11:33:35 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('widget/remote_friends_common.tpl');
|
2019-01-19 09:12:46 -05:00
|
|
|
return Renderer::replaceMacros($tpl, [
|
|
|
|
'$desc' => L10n::tt("%d contact in common", "%d contacts in common", $t),
|
2019-12-30 17:00:08 -05:00
|
|
|
'$base' => DI::baseUrl(),
|
2019-01-19 09:12:46 -05:00
|
|
|
'$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)
|
|
|
|
{
|
2020-01-04 17:42:01 -05:00
|
|
|
$a = DI::app();
|
2018-02-03 23:49:48 -05:00
|
|
|
|
2019-07-15 21:46:55 -04:00
|
|
|
$uid = intval($a->profile['profile_uid']);
|
|
|
|
|
|
|
|
if (!$uid || !$a->profile['url']) {
|
2018-02-03 23:49:48 -05:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2019-07-15 21:46:55 -04:00
|
|
|
if (Feature::isEnabled($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 '';
|
|
|
|
}
|
2019-07-15 21:46:55 -04:00
|
|
|
return Widget\TagCloud::getHTML($uid, $limit, $owner_id, 'wall');
|
2018-02-03 23:49:48 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return '';
|
|
|
|
}
|
2019-05-25 19:08:15 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $url Base page URL
|
|
|
|
* @param int $uid User ID consulting/publishing posts
|
|
|
|
* @param bool $wall True: Posted by User; False: Posted to User (network timeline)
|
|
|
|
* @return string
|
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
|
|
|
*/
|
|
|
|
public static function postedByYear(string $url, int $uid, bool $wall)
|
|
|
|
{
|
|
|
|
$o = '';
|
|
|
|
|
|
|
|
if (!Feature::isEnabled($uid, 'archives')) {
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
$visible_years = PConfig::get($uid, 'system', 'archive_visible_years', 5);
|
|
|
|
|
|
|
|
/* arrange the list in years */
|
|
|
|
$dnow = DateTimeFormat::localNow('Y-m-d');
|
|
|
|
|
|
|
|
$ret = [];
|
|
|
|
|
|
|
|
$dthen = Item::firstPostDate($uid, $wall);
|
|
|
|
if ($dthen) {
|
|
|
|
// Set the start and end date to the beginning of the month
|
|
|
|
$dnow = substr($dnow, 0, 8) . '01';
|
|
|
|
$dthen = substr($dthen, 0, 8) . '01';
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Starting with the current month, get the first and last days of every
|
|
|
|
* month down to and including the month of the first post
|
|
|
|
*/
|
|
|
|
while (substr($dnow, 0, 7) >= substr($dthen, 0, 7)) {
|
|
|
|
$dyear = intval(substr($dnow, 0, 4));
|
|
|
|
$dstart = substr($dnow, 0, 8) . '01';
|
|
|
|
$dend = substr($dnow, 0, 8) . Temporal::getDaysInMonth(intval($dnow), intval(substr($dnow, 5)));
|
|
|
|
$start_month = DateTimeFormat::utc($dstart, 'Y-m-d');
|
|
|
|
$end_month = DateTimeFormat::utc($dend, 'Y-m-d');
|
|
|
|
$str = L10n::getDay(DateTimeFormat::utc($dnow, 'F'));
|
|
|
|
|
|
|
|
if (empty($ret[$dyear])) {
|
|
|
|
$ret[$dyear] = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
$ret[$dyear][] = [$str, $end_month, $start_month];
|
|
|
|
$dnow = DateTimeFormat::utc($dnow . ' -1 month', 'Y-m-d');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!DBA::isResult($ret)) {
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$cutoff_year = intval(DateTimeFormat::localNow('Y')) - $visible_years;
|
|
|
|
$cutoff = array_key_exists($cutoff_year, $ret);
|
|
|
|
|
|
|
|
$o = Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/posted_date.tpl'),[
|
|
|
|
'$title' => L10n::t('Archives'),
|
|
|
|
'$size' => $visible_years,
|
|
|
|
'$cutoff_year' => $cutoff_year,
|
|
|
|
'$cutoff' => $cutoff,
|
|
|
|
'$url' => $url,
|
|
|
|
'$dates' => $ret,
|
|
|
|
'$showmore' => L10n::t('show more')
|
|
|
|
]);
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
2018-01-15 09:22:01 -05:00
|
|
|
}
|