3 * @file src/Content/Widget.php
5 namespace Friendica\Content;
7 use Friendica\Content\ContactSelector;
8 use Friendica\Content\Feature;
9 use Friendica\Core\Addon;
10 use Friendica\Core\Config;
11 use Friendica\Core\L10n;
12 use Friendica\Core\PConfig;
13 use Friendica\Core\System;
14 use Friendica\Database\DBM;
15 use Friendica\Model\Contact;
16 use Friendica\Model\GContact;
17 use Friendica\Model\Profile;
20 require_once 'boot.php';
21 require_once 'include/dba.php';
26 * Return the follow widget
28 * @param string $value optional, default empty
30 public static function follow($value = "")
32 return replace_macros(get_markup_template('follow.tpl'), array(
33 '$connect' => L10n::t('Add New Contact'),
34 '$desc' => L10n::t('Enter address or web location'),
35 '$hint' => L10n::t('Example: bob@example.com, http://example.com/barbara'),
37 '$follow' => L10n::t('Connect')
42 * Return Find People widget
44 public static function findPeople()
47 $global_dir = Config::get('system', 'directory');
49 if (Config::get('system', 'invitation_only')) {
50 $x = PConfig::get(local_user(), 'system', 'invites_remaining');
51 if ($x || is_site_admin()) {
52 $a->page['aside'] .= '<div class="side-link" id="side-invite-remain">'
53 . L10n::tt('%d invitation available', '%d invitations available', $x)
58 return replace_macros(get_markup_template('peoplefind.tpl'), array(
59 '$findpeople' => L10n::t('Find People'),
60 '$desc' => L10n::t('Enter name or interest'),
61 '$label' => L10n::t('Connect/Follow'),
62 '$hint' => L10n::t('Examples: Robert Morgenstein, Fishing'),
63 '$findthem' => L10n::t('Find'),
64 '$suggest' => L10n::t('Friend Suggestions'),
65 '$similar' => L10n::t('Similar Interests'),
66 '$random' => L10n::t('Random Profile'),
67 '$inv' => L10n::t('Invite Friends'),
68 '$directory' => L10n::t('View Global Directory'),
69 '$global_dir' => $global_dir
74 * Return unavailable networks
76 public static function unavailableNetworks()
80 if (!Addon::isEnabled("appnet")) {
81 $networks[] = NETWORK_APPNET;
84 if (!Addon::isEnabled("fbpost") && !Addon::isEnabled("facebook")) {
85 $networks[] = NETWORK_FACEBOOK;
88 if (!Addon::isEnabled("statusnet")) {
89 $networks[] = NETWORK_STATUSNET;
92 if (!Addon::isEnabled("pumpio")) {
93 $networks[] = NETWORK_PUMPIO;
96 if (!Addon::isEnabled("twitter")) {
97 $networks[] = NETWORK_TWITTER;
100 if (Config::get("system", "ostatus_disabled")) {
101 $networks[] = NETWORK_OSTATUS;
104 if (!Config::get("system", "diaspora_enabled")) {
105 $networks[] = NETWORK_DIASPORA;
108 if (!Addon::isEnabled("pnut")) {
109 $networks[] = NETWORK_PNUT;
112 if (!sizeof($networks)) {
116 $network_filter = implode("','", $networks);
118 $network_filter = "AND `network` NOT IN ('$network_filter')";
120 return $network_filter;
124 * Return networks widget
126 * @param string $baseurl baseurl
127 * @param string $selected optional, default empty
129 public static function networks($baseurl, $selected = '')
135 if (!Feature::isEnabled(local_user(), 'networks')) {
139 $extra_sql = self::unavailableNetworks();
141 $r = dba::p("SELECT DISTINCT(`network`) FROM `contact` WHERE `uid` = ? AND `network` != '' $extra_sql ORDER BY `network`",
146 while ($rr = dba::fetch($r)) {
147 /// @TODO If 'network' is not there, this triggers an E_NOTICE
148 if ($rr['network']) {
149 $nets[] = array('ref' => $rr['network'], 'name' => ContactSelector::networkToName($rr['network']), 'selected' => (($selected == $rr['network']) ? 'selected' : '' ));
154 if (count($nets) < 2) {
158 return replace_macros(get_markup_template('nets.tpl'), array(
159 '$title' => L10n::t('Networks'),
161 '$sel_all' => (($selected == '') ? 'selected' : ''),
162 '$all' => L10n::t('All Networks'),
169 * Return file as widget
171 * @param string $baseurl baseurl
172 * @param string $selected optional, default empty
174 public static function fileAs($baseurl, $selected = '')
180 if (!Feature::isEnabled(local_user(), 'filing')) {
184 $saved = PConfig::get(local_user(), 'system', 'filetags');
185 if (!strlen($saved)) {
191 $cnt = preg_match_all('/\[(.*?)\]/', $saved, $matches, PREG_SET_ORDER);
193 foreach ($matches as $mtch) {
194 $unescaped = xmlify(file_tag_decode($mtch[1]));
195 $terms[] = array('name' => $unescaped, 'selected' => (($selected == $unescaped) ? 'selected' : ''));
199 return replace_macros(get_markup_template('fileas_widget.tpl'), array(
200 '$title' => L10n::t('Saved Folders'),
202 '$sel_all' => (($selected == '') ? 'selected' : ''),
203 '$all' => L10n::t('Everything'),
210 * Return categories widget
212 * @param string $baseurl baseurl
213 * @param string $selected optional, default empty
215 public static function categories($baseurl, $selected = '')
219 if (!Feature::isEnabled($a->profile['profile_uid'], 'categories')) {
223 $saved = PConfig::get($a->profile['profile_uid'], 'system', 'filetags');
224 if (!strlen($saved)) {
230 $cnt = preg_match_all('/<(.*?)>/', $saved, $matches, PREG_SET_ORDER);
233 foreach ($matches as $mtch) {
234 $unescaped = xmlify(file_tag_decode($mtch[1]));
235 $terms[] = array('name' => $unescaped, 'selected' => (($selected == $unescaped) ? 'selected' : ''));
239 return replace_macros(get_markup_template('categories_widget.tpl'), array(
240 '$title' => L10n::t('Categories'),
242 '$sel_all' => (($selected == '') ? 'selected' : ''),
243 '$all' => L10n::t('Everything'),
250 * Return common friends visitor widget
252 * @param string $profile_uid uid
254 public static function commonFriendsVisitor($profile_uid)
256 if (local_user() == $profile_uid) {
262 if (is_array($_SESSION['remote'])) {
263 foreach ($_SESSION['remote'] as $visitor) {
264 if ($visitor['uid'] == $profile_uid) {
265 $cid = $visitor['cid'];
272 if (Profile::getMyURL()) {
273 $contact = dba::selectFirst('contact', ['id'],
274 ['nurl' => normalise_link(Profile::getMyURL()), 'uid' => $profile_uid]);
275 if (DBM::is_result($contact)) {
276 $cid = $contact['id'];
278 $gcontact = dba::selectFirst('gcontact', ['id'], ['nurl' => normalise_link(Profile::getMyURL())]);
279 if (DBM::is_result($gcontact)) {
280 $zcid = $gcontact['id'];
286 if ($cid == 0 && $zcid == 0) {
291 $t = GContact::countCommonFriends($profile_uid, $cid);
293 $t = GContact::countCommonFriendsZcid($profile_uid, $zcid);
301 $r = GContact::commonFriends($profile_uid, $cid, 0, 5, true);
303 $r = GContact::commonFriendsZcid($profile_uid, $zcid, 0, 5, true);
306 return replace_macros(get_markup_template('remote_friends_common.tpl'), array(
307 '$desc' => L10n::tt("%d contact in common", "%d contacts in common", $t),
308 '$base' => System::baseUrl(),
309 '$uid' => $profile_uid,
310 '$cid' => (($cid) ? $cid : '0'),
311 '$linkmore' => (($t > 5) ? 'true' : ''),
312 '$more' => L10n::t('show more'),
318 * Insert a tag cloud widget for the present profile.
320 * @brief Insert a tag cloud widget for the present profile.
321 * @param int $limit Max number of displayed tags.
322 * @return string HTML formatted output.
324 public static function tagCloud($limit = 50)
328 if (!$a->profile['profile_uid'] || !$a->profile['url']) {
332 if (Feature::isEnabled($a->profile['profile_uid'], 'tagadelic')) {
333 $owner_id = Contact::getIdForURL($a->profile['url']);
338 return Widget\TagCloud::getHTML($a->profile['profile_uid'], $limit, $owner_id, 'wall');