]> git.mxchange.org Git - friendica.git/blob - src/Content/Widget.php
Merge pull request #7828 from nupplaphil/task/move_enotify
[friendica.git] / src / Content / Widget.php
1 <?php
2 /**
3  * @file src/Content/Widget.php
4  */
5 namespace Friendica\Content;
6
7 use Friendica\Core\Addon;
8 use Friendica\Core\Config;
9 use Friendica\Core\L10n;
10 use Friendica\Core\PConfig;
11 use Friendica\Core\Protocol;
12 use Friendica\Core\Renderer;
13 use Friendica\Core\System;
14 use Friendica\Core\Session;
15 use Friendica\Database\DBA;
16 use Friendica\Model\Contact;
17 use Friendica\Model\FileTag;
18 use Friendica\Model\GContact;
19 use Friendica\Model\Item;
20 use Friendica\Model\Profile;
21 use Friendica\Util\DateTimeFormat;
22 use Friendica\Util\Proxy as ProxyUtils;
23 use Friendica\Util\Strings;
24 use Friendica\Util\Temporal;
25 use Friendica\Util\XML;
26
27 class Widget
28 {
29         /**
30          * Return the follow widget
31          *
32          * @param string $value optional, default empty
33          * @return string
34          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
35          */
36         public static function follow($value = "")
37         {
38                 return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/follow.tpl'), array(
39                         '$connect' => L10n::t('Add New Contact'),
40                         '$desc' => L10n::t('Enter address or web location'),
41                         '$hint' => L10n::t('Example: bob@example.com, http://example.com/barbara'),
42                         '$value' => $value,
43                         '$follow' => L10n::t('Connect')
44                 ));
45         }
46
47         /**
48          * Return Find People widget
49          */
50         public static function findPeople()
51         {
52                 $a = \get_app();
53                 $global_dir = Config::get('system', 'directory');
54
55                 if (Config::get('system', 'invitation_only')) {
56                         $x = intval(PConfig::get(local_user(), 'system', 'invites_remaining'));
57                         if ($x || is_site_admin()) {
58                                 $a->page['aside'] .= '<div class="side-link widget" id="side-invite-remain">'
59                                         . L10n::tt('%d invitation available', '%d invitations available', $x)
60                                         . '</div>';
61                         }
62                 }
63
64                 $nv = [];
65                 $nv['findpeople'] = L10n::t('Find People');
66                 $nv['desc'] = L10n::t('Enter name or interest');
67                 $nv['label'] = L10n::t('Connect/Follow');
68                 $nv['hint'] = L10n::t('Examples: Robert Morgenstein, Fishing');
69                 $nv['findthem'] = L10n::t('Find');
70                 $nv['suggest'] = L10n::t('Friend Suggestions');
71                 $nv['similar'] = L10n::t('Similar Interests');
72                 $nv['random'] = L10n::t('Random Profile');
73                 $nv['inv'] = L10n::t('Invite Friends');
74                 $nv['directory'] = L10n::t('Global Directory');
75                 $nv['global_dir'] = $global_dir;
76                 $nv['local_directory'] = L10n::t('Local Directory');
77
78                 $aside = [];
79                 $aside['$nv'] = $nv;
80
81                 return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/peoplefind.tpl'), $aside);
82         }
83
84         /**
85          * Return unavailable networks
86          */
87         public static function unavailableNetworks()
88         {
89                 // Always hide content from these networks
90                 $networks = ['face', 'apdn'];
91
92                 if (!Addon::isEnabled("statusnet")) {
93                         $networks[] = Protocol::STATUSNET;
94                 }
95
96                 if (!Addon::isEnabled("pumpio")) {
97                         $networks[] = Protocol::PUMPIO;
98                 }
99
100                 if (!Addon::isEnabled("twitter")) {
101                         $networks[] = Protocol::TWITTER;
102                 }
103
104                 if (Config::get("system", "ostatus_disabled")) {
105                         $networks[] = Protocol::OSTATUS;
106                 }
107
108                 if (!Config::get("system", "diaspora_enabled")) {
109                         $networks[] = Protocol::DIASPORA;
110                 }
111
112                 if (!Addon::isEnabled("pnut")) {
113                         $networks[] = Protocol::PNUT;
114                 }
115
116                 if (!sizeof($networks)) {
117                         return "";
118                 }
119
120                 $network_filter = implode("','", $networks);
121
122                 $network_filter = "AND `network` NOT IN ('$network_filter')";
123
124                 return $network_filter;
125         }
126
127         /**
128          * Display a generic filter widget based on a list of options
129          *
130          * The options array must be the following format:
131          * [
132          *    [
133          *      'ref' => {filter value},
134          *      'name' => {option name}
135          *    ],
136          *    ...
137          * ]
138          *
139          * @param string $type The filter query string key
140          * @param string $title
141          * @param string $desc
142          * @param string $all The no filter label
143          * @param string $baseUrl The full page request URI
144          * @param array  $options
145          * @param string $selected The currently selected filter option value
146          * @return string
147          * @throws \Exception
148          */
149         private static function filter($type, $title, $desc, $all, $baseUrl, array $options, $selected = null)
150         {
151                 $queryString = parse_url($baseUrl, PHP_URL_QUERY);
152                 $queryArray = [];
153
154                 if ($queryString) {
155                         parse_str($queryString, $queryArray);
156                         unset($queryArray[$type]);
157
158                         if (count($queryArray)) {
159                                 $baseUrl = substr($baseUrl, 0, strpos($baseUrl, '?')) . '?' . http_build_query($queryArray) . '&';
160                         } else {
161                                 $baseUrl = substr($baseUrl, 0, strpos($baseUrl, '?')) . '?';
162                         }
163                 } else {
164                         $baseUrl = trim($baseUrl, '?') . '?';
165                 }
166
167                 return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/filter.tpl'), [
168                         '$type'      => $type,
169                         '$title'     => $title,
170                         '$desc'      => $desc,
171                         '$selected'  => $selected,
172                         '$all_label' => $all,
173                         '$options'   => $options,
174                         '$base'      => $baseUrl,
175                 ]);
176         }
177
178         /**
179          * Return networks widget
180          *
181          * @param string $baseurl  baseurl
182          * @param string $selected optional, default empty
183          * @return string
184          * @throws \Exception
185          */
186         public static function contactRels($baseurl, $selected = '')
187         {
188                 if (!local_user()) {
189                         return '';
190                 }
191
192                 $options = [
193                         ['ref' => 'followers', 'name' => L10n::t('Followers')],
194                         ['ref' => 'following', 'name' => L10n::t('Following')],
195                         ['ref' => 'mutuals', 'name' => L10n::t('Mutual friends')],
196                 ];
197
198                 return self::filter(
199                         'rel',
200                         L10n::t('Relationships'),
201                         '',
202                         L10n::t('All Contacts'),
203                         $baseurl,
204                         $options,
205                         $selected
206                 );
207         }
208
209         /**
210          * Return networks widget
211          *
212          * @param string $baseurl  baseurl
213          * @param string $selected optional, default empty
214          * @return string
215          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
216          */
217         public static function networks($baseurl, $selected = '')
218         {
219                 if (!local_user()) {
220                         return '';
221                 }
222
223                 if (!Feature::isEnabled(local_user(), 'networks')) {
224                         return '';
225                 }
226
227                 $extra_sql = self::unavailableNetworks();
228
229                 $r = DBA::p("SELECT DISTINCT(`network`) FROM `contact` WHERE `uid` = ? AND NOT `deleted` AND `network` != '' $extra_sql ORDER BY `network`",
230                         local_user()
231                 );
232
233                 $nets = array();
234                 while ($rr = DBA::fetch($r)) {
235                         $nets[] = ['ref' => $rr['network'], 'name' => ContactSelector::networkToName($rr['network'])];
236                 }
237                 DBA::close($r);
238
239                 if (count($nets) < 2) {
240                         return '';
241                 }
242
243                 return self::filter(
244                         'nets',
245                         L10n::t('Protocols'),
246                         '',
247                         L10n::t('All Protocols'),
248                         $baseurl,
249                         $nets,
250                         $selected
251                 );
252         }
253
254         /**
255          * Return file as widget
256          *
257          * @param string $baseurl  baseurl
258          * @param string $selected optional, default empty
259          * @return string|void
260          * @throws \Exception
261          */
262         public static function fileAs($baseurl, $selected = '')
263         {
264                 if (!local_user()) {
265                         return '';
266                 }
267
268                 $saved = PConfig::get(local_user(), 'system', 'filetags');
269                 if (!strlen($saved)) {
270                         return;
271                 }
272
273                 $terms = [];
274                 foreach (FileTag::fileToArray($saved) as $savedFolderName) {
275                         $terms[] = ['ref' => $savedFolderName, 'name' => $savedFolderName];
276                 }
277                 
278                 usort($terms, function ($a, $b) {
279                         return strcmp($a['name'], $b['name']);
280                 });
281
282                 return self::filter(
283                         'file',
284                         L10n::t('Saved Folders'),
285                         '',
286                         L10n::t('Everything'),
287                         $baseurl,
288                         $terms,
289                         $selected
290                 );
291         }
292
293         /**
294          * Return categories widget
295          *
296          * @param string $baseurl  baseurl
297          * @param string $selected optional, default empty
298          * @return string|void
299          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
300          */
301         public static function categories($baseurl, $selected = '')
302         {
303                 $a = \get_app();
304
305                 $uid = intval($a->profile['profile_uid']);
306
307                 if (!Feature::isEnabled($uid, 'categories')) {
308                         return '';
309                 }
310
311                 $saved = PConfig::get($uid, 'system', 'filetags');
312                 if (!strlen($saved)) {
313                         return;
314                 }
315
316                 $terms = array();
317                 foreach (FileTag::fileToArray($saved, 'category') as $savedFolderName) {
318                         $terms[] = ['ref' => $savedFolderName, 'name' => $savedFolderName];
319                 }
320
321                 return self::filter(
322                         'category',
323                         L10n::t('Categories'),
324                         '',
325                         L10n::t('Everything'),
326                         $baseurl,
327                         $terms,
328                         $selected
329                 );
330         }
331
332         /**
333          * Return common friends visitor widget
334          *
335          * @param string $profile_uid uid
336          * @return string|void
337          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
338          */
339         public static function commonFriendsVisitor($profile_uid)
340         {
341                 if (local_user() == $profile_uid) {
342                         return;
343                 }
344
345                 $zcid = 0;
346
347                 $cid = Session::getRemoteContactID($profile_uid);
348
349                 if (!$cid) {
350                         if (Profile::getMyURL()) {
351                                 $contact = DBA::selectFirst('contact', ['id'],
352                                                 ['nurl' => Strings::normaliseLink(Profile::getMyURL()), 'uid' => $profile_uid]);
353                                 if (DBA::isResult($contact)) {
354                                         $cid = $contact['id'];
355                                 } else {
356                                         $gcontact = DBA::selectFirst('gcontact', ['id'], ['nurl' => Strings::normaliseLink(Profile::getMyURL())]);
357                                         if (DBA::isResult($gcontact)) {
358                                                 $zcid = $gcontact['id'];
359                                         }
360                                 }
361                         }
362                 }
363
364                 if ($cid == 0 && $zcid == 0) {
365                         return;
366                 }
367
368                 if ($cid) {
369                         $t = GContact::countCommonFriends($profile_uid, $cid);
370                 } else {
371                         $t = GContact::countCommonFriendsZcid($profile_uid, $zcid);
372                 }
373
374                 if (!$t) {
375                         return;
376                 }
377
378                 if ($cid) {
379                         $r = GContact::commonFriends($profile_uid, $cid, 0, 5, true);
380                 } else {
381                         $r = GContact::commonFriendsZcid($profile_uid, $zcid, 0, 5, true);
382                 }
383
384                 if (!DBA::isResult($r)) {
385                         return;
386                 }
387
388                 $entries = [];
389                 foreach ($r as $rr) {
390                         $entry = [
391                                 'url'   => Contact::magicLink($rr['url']),
392                                 'name'  => $rr['name'],
393                                 'photo' => ProxyUtils::proxifyUrl($rr['photo'], false, ProxyUtils::SIZE_THUMB),
394                         ];
395                         $entries[] = $entry;
396                 }
397
398                 $tpl = Renderer::getMarkupTemplate('widget/remote_friends_common.tpl');
399                 return Renderer::replaceMacros($tpl, [
400                         '$desc'     => L10n::tt("%d contact in common", "%d contacts in common", $t),
401                         '$base'     => System::baseUrl(),
402                         '$uid'      => $profile_uid,
403                         '$cid'      => (($cid) ? $cid : '0'),
404                         '$linkmore' => (($t > 5) ? 'true' : ''),
405                         '$more'     => L10n::t('show more'),
406                         '$items'    => $entries
407                 ]);
408         }
409
410         /**
411          * Insert a tag cloud widget for the present profile.
412          *
413          * @brief Insert a tag cloud widget for the present profile.
414          * @param int $limit Max number of displayed tags.
415          * @return string HTML formatted output.
416          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
417          * @throws \ImagickException
418          */
419         public static function tagCloud($limit = 50)
420         {
421                 $a = \get_app();
422
423                 $uid = intval($a->profile['profile_uid']);
424
425                 if (!$uid || !$a->profile['url']) {
426                         return '';
427                 }
428
429                 if (Feature::isEnabled($uid, 'tagadelic')) {
430                         $owner_id = Contact::getIdForURL($a->profile['url'], 0, true);
431
432                         if (!$owner_id) {
433                                 return '';
434                         }
435                         return Widget\TagCloud::getHTML($uid, $limit, $owner_id, 'wall');
436                 }
437
438                 return '';
439         }
440
441         /**
442          * @param string $url Base page URL
443          * @param int    $uid User ID consulting/publishing posts
444          * @param bool   $wall True: Posted by User; False: Posted to User (network timeline)
445          * @return string
446          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
447          */
448         public static function postedByYear(string $url, int $uid, bool $wall)
449         {
450                 $o = '';
451
452                 if (!Feature::isEnabled($uid, 'archives')) {
453                         return $o;
454                 }
455
456                 $visible_years = PConfig::get($uid, 'system', 'archive_visible_years', 5);
457
458                 /* arrange the list in years */
459                 $dnow = DateTimeFormat::localNow('Y-m-d');
460
461                 $ret = [];
462
463                 $dthen = Item::firstPostDate($uid, $wall);
464                 if ($dthen) {
465                         // Set the start and end date to the beginning of the month
466                         $dnow = substr($dnow, 0, 8) . '01';
467                         $dthen = substr($dthen, 0, 8) . '01';
468
469                         /*
470                          * Starting with the current month, get the first and last days of every
471                          * month down to and including the month of the first post
472                          */
473                         while (substr($dnow, 0, 7) >= substr($dthen, 0, 7)) {
474                                 $dyear = intval(substr($dnow, 0, 4));
475                                 $dstart = substr($dnow, 0, 8) . '01';
476                                 $dend = substr($dnow, 0, 8) . Temporal::getDaysInMonth(intval($dnow), intval(substr($dnow, 5)));
477                                 $start_month = DateTimeFormat::utc($dstart, 'Y-m-d');
478                                 $end_month = DateTimeFormat::utc($dend, 'Y-m-d');
479                                 $str = L10n::getDay(DateTimeFormat::utc($dnow, 'F'));
480
481                                 if (empty($ret[$dyear])) {
482                                         $ret[$dyear] = [];
483                                 }
484
485                                 $ret[$dyear][] = [$str, $end_month, $start_month];
486                                 $dnow = DateTimeFormat::utc($dnow . ' -1 month', 'Y-m-d');
487                         }
488                 }
489
490                 if (!DBA::isResult($ret)) {
491                         return $o;
492                 }
493
494
495                 $cutoff_year = intval(DateTimeFormat::localNow('Y')) - $visible_years;
496                 $cutoff = array_key_exists($cutoff_year, $ret);
497
498                 $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/posted_date.tpl'),[
499                         '$title' => L10n::t('Archives'),
500                         '$size' => $visible_years,
501                         '$cutoff_year' => $cutoff_year,
502                         '$cutoff' => $cutoff,
503                         '$url' => $url,
504                         '$dates' => $ret,
505                         '$showmore' => L10n::t('show more')
506                 ]);
507
508                 return $o;
509         }
510 }