]> git.mxchange.org Git - friendica.git/blob - include/Contact.php
API calls should be much faster than before
[friendica.git] / include / Contact.php
1 <?php
2
3
4 // Included here for completeness, but this is a very dangerous operation.
5 // It is the caller's responsibility to confirm the requestor's intent and
6 // authorisation to do this.
7
8 function user_remove($uid) {
9         if(! $uid)
10                 return;
11         $a = get_app();
12         logger('Removing user: ' . $uid);
13
14         $r = q("select * from user where uid = %d limit 1", intval($uid));
15
16         call_hooks('remove_user',$r[0]);
17
18         // save username (actually the nickname as it is guaranteed
19         // unique), so it cannot be re-registered in the future.
20
21         q("insert into userd ( username ) values ( '%s' )",
22                 $r[0]['nickname']
23         );
24
25         // don't delete yet, will be done later when contacts have deleted my stuff
26         // q("DELETE FROM `contact` WHERE `uid` = %d", intval($uid));
27         q("DELETE FROM `gcign` WHERE `uid` = %d", intval($uid));
28         q("DELETE FROM `group` WHERE `uid` = %d", intval($uid));
29         q("DELETE FROM `group_member` WHERE `uid` = %d", intval($uid));
30         q("DELETE FROM `intro` WHERE `uid` = %d", intval($uid));
31         q("DELETE FROM `event` WHERE `uid` = %d", intval($uid));
32         q("DELETE FROM `item` WHERE `uid` = %d", intval($uid));
33         q("DELETE FROM `item_id` WHERE `uid` = %d", intval($uid));
34         q("DELETE FROM `mail` WHERE `uid` = %d", intval($uid));
35         q("DELETE FROM `mailacct` WHERE `uid` = %d", intval($uid));
36         q("DELETE FROM `manage` WHERE `uid` = %d", intval($uid));
37         q("DELETE FROM `notify` WHERE `uid` = %d", intval($uid));
38         q("DELETE FROM `photo` WHERE `uid` = %d", intval($uid));
39         q("DELETE FROM `attach` WHERE `uid` = %d", intval($uid));
40         q("DELETE FROM `profile` WHERE `uid` = %d", intval($uid));
41         q("DELETE FROM `profile_check` WHERE `uid` = %d", intval($uid));
42         q("DELETE FROM `pconfig` WHERE `uid` = %d", intval($uid));
43         q("DELETE FROM `search` WHERE `uid` = %d", intval($uid));
44         q("DELETE FROM `spam` WHERE `uid` = %d", intval($uid));
45         // don't delete yet, will be done later when contacts have deleted my stuff
46         // q("DELETE FROM `user` WHERE `uid` = %d", intval($uid));
47         q("UPDATE `user` SET `account_removed` = 1, `account_expires_on` = UTC_TIMESTAMP() WHERE `uid` = %d", intval($uid));
48         proc_run(PRIORITY_HIGH, "include/notifier.php", "removeme", $uid);
49
50         // Send an update to the directory
51         proc_run(PRIORITY_LOW, "include/directory.php", $r[0]['url']);
52
53         if($uid == local_user()) {
54                 unset($_SESSION['authenticated']);
55                 unset($_SESSION['uid']);
56                 goaway($a->get_baseurl());
57         }
58 }
59
60
61 function contact_remove($id) {
62
63         $r = q("select uid from contact where id = %d limit 1",
64                 intval($id)
65         );
66         if((! count($r)) || (! intval($r[0]['uid'])))
67                 return;
68
69         $archive = get_pconfig($r[0]['uid'], 'system','archive_removed_contacts');
70         if($archive) {
71                 q("update contact set `archive` = 1, `network` = 'none', `writable` = 0 where id = %d",
72                         intval($id)
73                 );
74                 return;
75         }
76
77         q("DELETE FROM `contact` WHERE `id` = %d",
78                 intval($id)
79         );
80         q("DELETE FROM `item` WHERE `contact-id` = %d ",
81                 intval($id)
82         );
83         q("DELETE FROM `photo` WHERE `contact-id` = %d ",
84                 intval($id)
85         );
86         q("DELETE FROM `mail` WHERE `contact-id` = %d ",
87                 intval($id)
88         );
89         q("DELETE FROM `event` WHERE `cid` = %d ",
90                 intval($id)
91         );
92         q("DELETE FROM `queue` WHERE `cid` = %d ",
93                 intval($id)
94         );
95
96 }
97
98
99 // sends an unfriend message. Does not remove the contact
100
101 function terminate_friendship($user,$self,$contact) {
102
103
104         $a = get_app();
105
106         require_once('include/datetime.php');
107
108         if($contact['network'] === NETWORK_OSTATUS) {
109
110                 $slap = replace_macros(get_markup_template('follow_slap.tpl'), array(
111                         '$name' => $user['username'],
112                         '$profile_page' => $a->get_baseurl() . '/profile/' . $user['nickname'],
113                         '$photo' => $self['photo'],
114                         '$thumb' => $self['thumb'],
115                         '$published' => datetime_convert('UTC','UTC', 'now', ATOM_TIME),
116                         '$item_id' => 'urn:X-dfrn:' . $a->get_hostname() . ':unfollow:' . get_guid(32),
117                         '$title' => '',
118                         '$type' => 'text',
119                         '$content' => t('stopped following'),
120                         '$nick' => $user['nickname'],
121                         '$verb' => 'http://ostatus.org/schema/1.0/unfollow', // ACTIVITY_UNFOLLOW,
122                         '$ostat_follow' => '' // '<as:verb>http://ostatus.org/schema/1.0/unfollow</as:verb>' . "\r\n"
123                 ));
124
125                 if((x($contact,'notify')) && (strlen($contact['notify']))) {
126                         require_once('include/salmon.php');
127                         slapper($user,$contact['notify'],$slap);
128                 }
129         }
130         elseif($contact['network'] === NETWORK_DIASPORA) {
131                 require_once('include/diaspora.php');
132                 diaspora::send_unshare($user,$contact);
133         }
134         elseif($contact['network'] === NETWORK_DFRN) {
135                 require_once('include/dfrn.php');
136                 dfrn::deliver($user,$contact,'placeholder', 1);
137         }
138
139 }
140
141
142 // Contact has refused to recognise us as a friend. We will start a countdown.
143 // If they still don't recognise us in 32 days, the relationship is over,
144 // and we won't waste any more time trying to communicate with them.
145 // This provides for the possibility that their database is temporarily messed
146 // up or some other transient event and that there's a possibility we could recover from it.
147
148 if(! function_exists('mark_for_death')) {
149 function mark_for_death($contact) {
150
151         if($contact['archive'])
152                 return;
153
154         if($contact['term-date'] == '0000-00-00 00:00:00') {
155                 q("UPDATE `contact` SET `term-date` = '%s' WHERE `id` = %d",
156                                 dbesc(datetime_convert()),
157                                 intval($contact['id'])
158                 );
159         }
160         else {
161
162                 /// @todo
163                 /// We really should send a notification to the owner after 2-3 weeks
164                 /// so they won't be surprised when the contact vanishes and can take
165                 /// remedial action if this was a serious mistake or glitch
166
167                 $expiry = $contact['term-date'] . ' + 32 days ';
168                 if(datetime_convert() > datetime_convert('UTC','UTC',$expiry)) {
169
170                         // relationship is really truly dead.
171                         // archive them rather than delete
172                         // though if the owner tries to unarchive them we'll start the whole process over again
173
174                         q("update contact set `archive` = 1 where id = %d",
175                                 intval($contact['id'])
176                         );
177                         q("UPDATE `item` SET `private` = 2 WHERE `contact-id` = %d AND `uid` = %d", intval($contact['id']), intval($contact['uid']));
178
179                         //contact_remove($contact['id']);
180
181                 }
182         }
183
184 }}
185
186 if(! function_exists('unmark_for_death')) {
187 function unmark_for_death($contact) {
188         // It's a miracle. Our dead contact has inexplicably come back to life.
189         q("UPDATE `contact` SET `term-date` = '%s' WHERE `id` = %d",
190                 dbesc('0000-00-00 00:00:00'),
191                 intval($contact['id'])
192         );
193 }}
194
195 /**
196  * @brief Get contact data for a given profile link
197  *
198  * The function looks at several places (contact table and gcontact table) for the contact
199  *
200  * @param string $url The profile link
201  * @param int $uid User id
202  * @param array $default If not data was found take this data as default value
203  *
204  * @return array Contact data
205  */
206 function get_contact_details_by_url($url, $uid = -1, $default = array()) {
207         if ($uid == -1)
208                 $uid = local_user();
209
210         // Fetch contact data from the contact table for the given user
211         $r = q("SELECT `id`, `id` AS `cid`, 0 AS `gid`, 0 AS `zid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
212                         `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, `self`
213                 FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d",
214                         dbesc(normalise_link($url)), intval($uid));
215
216         // Fetch the data from the contact table with "uid=0" (which is filled automatically)
217         if (!$r)
218                 $r = q("SELECT `id`, 0 AS `cid`, `id` AS `zid`, 0 AS `gid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
219                         `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, 0 AS `self`
220                         FROM `contact` WHERE `nurl` = '%s' AND `uid` = 0",
221                                 dbesc(normalise_link($url)));
222
223         // Fetch the data from the gcontact table
224         if (!$r)
225                 $r = q("SELECT 0 AS `id`, 0 AS `cid`, `id` AS `gid`, 0 AS `zid`, 0 AS `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, '' AS `xmpp`,
226                         `keywords`, `gender`, `photo`, `photo` AS `thumb`, `photo` AS `micro`, `community` AS `forum`, 0 AS `prv`, `community`, `contact-type`, `birthday`, 0 AS `self`
227                         FROM `gcontact` WHERE `nurl` = '%s'",
228                                 dbesc(normalise_link($url)));
229
230         if ($r) {
231                 // If there is more than one entry we filter out the connector networks
232                 if (count($r) > 1)
233                         foreach ($r AS $id => $result)
234                                 if ($result["network"] == NETWORK_STATUSNET)
235                                         unset($r[$id]);
236
237                 $profile = array_shift($r);
238
239                 // "bd" always contains the upcoming birthday of a contact.
240                 // "birthday" might contain the birthday including the year of birth.
241                 if ($profile["birthday"] != "0000-00-00") {
242                         $bd_timestamp = strtotime($profile["birthday"]);
243                         $month = date("m", $bd_timestamp);
244                         $day = date("d", $bd_timestamp);
245
246                         $current_timestamp = time();
247                         $current_year = date("Y", $current_timestamp);
248                         $current_month = date("m", $current_timestamp);
249                         $current_day = date("d", $current_timestamp);
250
251                         $profile["bd"] = $current_year."-".$month."-".$day;
252                         $current = $current_year."-".$current_month."-".$current_day;
253
254                         if ($profile["bd"] < $current)
255                                 $profile["bd"] = (++$current_year)."-".$month."-".$day;
256                 } else
257                         $profile["bd"] = "0000-00-00";
258         } else
259                 $profile = $default;
260
261         if (($profile["photo"] == "") AND isset($default["photo"]))
262                 $profile["photo"] = $default["photo"];
263
264         if (($profile["name"] == "") AND isset($default["name"]))
265                 $profile["name"] = $default["name"];
266
267         if (($profile["network"] == "") AND isset($default["network"]))
268                 $profile["network"] = $default["network"];
269
270         if (($profile["thumb"] == "") AND isset($profile["photo"]))
271                 $profile["thumb"] = $profile["photo"];
272
273         if (($profile["micro"] == "") AND isset($profile["thumb"]))
274                 $profile["micro"] = $profile["thumb"];
275
276         if ((($profile["addr"] == "") OR ($profile["name"] == "")) AND ($profile["gid"] != 0) AND
277                 in_array($profile["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS)))
278                 proc_run(PRIORITY_LOW, "include/update_gcontact.php", $profile["gid"]);
279
280         // Show contact details of Diaspora contacts only if connected
281         if (($profile["cid"] == 0) AND ($profile["network"] == NETWORK_DIASPORA)) {
282                 $profile["location"] = "";
283                 $profile["about"] = "";
284                 $profile["gender"] = "";
285                 $profile["birthday"] = "0000-00-00";
286         }
287
288         return($profile);
289 }
290
291 if (! function_exists('contact_photo_menu')) {
292 function contact_photo_menu($contact, $uid = 0)
293 {
294         $a = get_app();
295
296         $contact_url = '';
297         $pm_url = '';
298         $status_link = '';
299         $photos_link = '';
300         $posts_link = '';
301         $contact_drop_link = '';
302         $poke_link = '';
303
304         if ($uid == 0) {
305                 $uid = local_user();
306         }
307
308         if ($contact['uid'] != $uid) {
309                 if ($uid == 0) {
310                         $profile_link = zrl($contact['url']);
311                         $menu = Array('profile' => array(t('View Profile'), $profile_link, true));
312
313                         return $menu;
314                 }
315
316                 $r = q("SELECT * FROM `contact` WHERE `nurl` = '%s' AND `network` = '%s' AND `uid` = %d",
317                         dbesc($contact['nurl']), dbesc($contact['network']), intval($uid));
318                 if ($r) {
319                         return contact_photo_menu($r[0], $uid);
320                 } else {
321                         $profile_link = zrl($contact['url']);
322                         $connlnk = 'follow/?url='.$contact['url'];
323                         $menu = array(
324                                 'profile' => array(t('View Profile'), $profile_link, true),
325                                 'follow' => array(t('Connect/Follow'), $connlnk, true)
326                         );
327
328                         return $menu;
329                 }
330         }
331
332         $sparkle = false;
333         if ($contact['network'] === NETWORK_DFRN) {
334                 $sparkle = true;
335                 $profile_link = $a->get_baseurl() . '/redir/' . $contact['id'];
336         } else {
337                 $profile_link = $contact['url'];
338         }
339
340         if ($profile_link === 'mailbox') {
341                 $profile_link = '';
342         }
343
344         if ($sparkle) {
345                 $status_link = $profile_link . '?url=status';
346                 $photos_link = $profile_link . '?url=photos';
347                 $profile_link = $profile_link . '?url=profile';
348         }
349
350         if (in_array($contact['network'], array(NETWORK_DFRN, NETWORK_DIASPORA))) {
351                 $pm_url = $a->get_baseurl() . '/message/new/' . $contact['id'];
352         }
353
354         if ($contact['network'] == NETWORK_DFRN) {
355                 $poke_link = $a->get_baseurl() . '/poke/?f=&c=' . $contact['id'];
356         }
357
358         $contact_url = $a->get_baseurl() . '/contacts/' . $contact['id'];
359
360         $posts_link = $a->get_baseurl() . '/contacts/' . $contact['id'] . '/posts';
361         $contact_drop_link = $a->get_baseurl() . '/contacts/' . $contact['id'] . '/drop?confirm=1';
362
363         /**
364          * menu array:
365          * "name" => [ "Label", "link", (bool)Should the link opened in a new tab? ]
366          */
367         $menu = array(
368                 'status' => array(t("View Status"), $status_link, true),
369                 'profile' => array(t("View Profile"), $profile_link, true),
370                 'photos' => array(t("View Photos"), $photos_link, true),
371                 'network' => array(t("Network Posts"), $posts_link, false),
372                 'edit' => array(t("View Contact"), $contact_url, false),
373                 'drop' => array(t("Drop Contact"), $contact_drop_link, false),
374                 'pm' => array(t("Send PM"), $pm_url, false),
375                 'poke' => array(t("Poke"), $poke_link, false),
376         );
377
378
379         $args = array('contact' => $contact, 'menu' => &$menu);
380
381         call_hooks('contact_photo_menu', $args);
382
383         $menucondensed = array();
384
385         foreach ($menu AS $menuname => $menuitem) {
386                 if ($menuitem[1] != '') {
387                         $menucondensed[$menuname] = $menuitem;
388                 }
389         }
390
391         return $menucondensed;
392 }}
393
394
395 function random_profile() {
396         $r = q("SELECT `url` FROM `gcontact` WHERE `network` = '%s'
397                                 AND `last_contact` >= `last_failure`
398                                 AND `updated` > UTC_TIMESTAMP - INTERVAL 1 MONTH
399                         ORDER BY rand() LIMIT 1",
400                 dbesc(NETWORK_DFRN));
401
402         if(count($r))
403                 return dirname($r[0]['url']);
404         return '';
405 }
406
407
408 function contacts_not_grouped($uid,$start = 0,$count = 0) {
409
410         if(! $count) {
411                 $r = q("select count(*) as total from contact where uid = %d and self = 0 and id not in (select distinct(`contact-id`) from group_member where uid = %d) ",
412                         intval($uid),
413                         intval($uid)
414                 );
415
416                 return $r;
417
418
419         }
420
421         $r = q("select * from contact where uid = %d and self = 0 and id not in (select distinct(`contact-id`) from group_member where uid = %d) and blocked = 0 and pending = 0 limit %d, %d",
422                 intval($uid),
423                 intval($uid),
424                 intval($start),
425                 intval($count)
426         );
427
428         return $r;
429 }
430
431 /**
432  * @brief Fetch the contact id for a given url and user
433  *
434  * @param string $url Contact URL
435  * @param integer $uid The user id for the contact
436  * @param boolean $no_update Don't update the contact
437  *
438  * @return integer Contact ID
439  */
440 function get_contact($url, $uid = 0, $no_update = false) {
441         require_once("include/Scrape.php");
442
443         logger("Get contact data for url ".$url." and user ".$uid." - ".App::callstack(), LOGGER_DEBUG);;
444
445         $data = array();
446         $contactid = 0;
447
448         // is it an address in the format user@server.tld?
449         /// @todo use gcontact and/or the addr field for a lookup
450         if (!strstr($url, "http") OR strstr($url, "@")) {
451                 $data = probe_url($url);
452                 $url = $data["url"];
453                 if ($url == "")
454                         return 0;
455         }
456
457         $contact = q("SELECT `id`, `avatar-date` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d ORDER BY `id` LIMIT 2",
458                         dbesc(normalise_link($url)),
459                         intval($uid));
460
461         if (!$contact)
462                 $contact = q("SELECT `id`, `avatar-date` FROM `contact` WHERE `alias` IN ('%s', '%s') AND `uid` = %d ORDER BY `id` LIMIT 1",
463                                 dbesc($url),
464                                 dbesc(normalise_link($url)),
465                                 intval($uid));
466
467         if ($contact) {
468                 $contactid = $contact[0]["id"];
469
470                 // Update the contact every 7 days
471                 $update_photo = ($contact[0]['avatar-date'] < datetime_convert('','','now -7 days'));
472                 //$update_photo = ($contact[0]['avatar-date'] < datetime_convert('','','now -12 hours'));
473
474                 if (!$update_photo OR $no_update) {
475                         return($contactid);
476                 }
477         } elseif ($uid != 0)
478                 return 0;
479
480         if (!count($data))
481                 $data = probe_url($url);
482
483         // Does this address belongs to a valid network?
484         if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) {
485                 if ($uid != 0)
486                         return 0;
487
488                 // Get data from the gcontact table
489                 $r = q("SELECT `name`, `nick`, `url`, `photo`, `addr`, `alias`, `network` FROM `gcontact` WHERE `nurl` = '%s'",
490                          dbesc(normalise_link($url)));
491                 if (!$r)
492                         return 0;
493
494                 $data = $r[0];
495         }
496
497         $url = $data["url"];
498
499         if ($contactid == 0) {
500                 q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
501                                         `name`, `nick`, `photo`, `network`, `pubkey`, `rel`, `priority`,
502                                         `batch`, `request`, `confirm`, `poco`, `name-date`, `uri-date`,
503                                         `writable`, `blocked`, `readonly`, `pending`)
504                                         VALUES (%d, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', 1, 0, 0, 0)",
505                         intval($uid),
506                         dbesc(datetime_convert()),
507                         dbesc($data["url"]),
508                         dbesc(normalise_link($data["url"])),
509                         dbesc($data["addr"]),
510                         dbesc($data["alias"]),
511                         dbesc($data["notify"]),
512                         dbesc($data["poll"]),
513                         dbesc($data["name"]),
514                         dbesc($data["nick"]),
515                         dbesc($data["photo"]),
516                         dbesc($data["network"]),
517                         dbesc($data["pubkey"]),
518                         intval(CONTACT_IS_SHARING),
519                         intval($data["priority"]),
520                         dbesc($data["batch"]),
521                         dbesc($data["request"]),
522                         dbesc($data["confirm"]),
523                         dbesc($data["poco"]),
524                         dbesc(datetime_convert()),
525                         dbesc(datetime_convert())
526                 );
527
528                 $contact = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d ORDER BY `id` LIMIT 2",
529                                 dbesc(normalise_link($data["url"])),
530                                 intval($uid));
531                 if (!$contact)
532                         return 0;
533
534                 $contactid = $contact[0]["id"];
535
536                 // Update the newly created contact from data in the gcontact table
537                 $r = q("SELECT `location`, `about`, `keywords`, `gender` FROM `gcontact` WHERE `nurl` = '%s'",
538                          dbesc(normalise_link($data["url"])));
539                 if ($r) {
540                         logger("Update contact ".$data["url"]);
541                         q("UPDATE `contact` SET `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d",
542                                 dbesc($r["location"]), dbesc($r["about"]), dbesc($r["keywords"]),
543                                 dbesc($r["gender"]), intval($contactid));
544                 }
545         }
546
547         if ((count($contact) > 1) AND ($uid == 0) AND ($contactid != 0) AND ($url != ""))
548                 q("DELETE FROM `contact` WHERE `nurl` = '%s' AND `id` != %d",
549                         dbesc(normalise_link($url)),
550                         intval($contactid));
551
552         require_once("Photo.php");
553
554         update_contact_avatar($data["photo"],$uid,$contactid);
555
556         $r = q("SELECT `addr`, `alias`, `name`, `nick` FROM `contact`  WHERE `id` = %d", intval($contactid));
557
558         // This condition should always be true
559         if (!dbm::is_result($r))
560                 return $contactid;
561
562         // Only update if there had something been changed
563         if (($data["addr"] != $r[0]["addr"]) OR
564                 ($data["alias"] != $r[0]["alias"]) OR
565                 ($data["name"] != $r[0]["name"]) OR
566                 ($data["nick"] != $r[0]["nick"]))
567                 q("UPDATE `contact` SET `addr` = '%s', `alias` = '%s', `name` = '%s', `nick` = '%s',
568                         `name-date` = '%s', `uri-date` = '%s' WHERE `id` = %d",
569                         dbesc($data["addr"]),
570                         dbesc($data["alias"]),
571                         dbesc($data["name"]),
572                         dbesc($data["nick"]),
573                         dbesc(datetime_convert()),
574                         dbesc(datetime_convert()),
575                         intval($contactid)
576                 );
577
578         return $contactid;
579 }
580
581 /**
582  * @brief Returns posts from a given gcontact
583  *
584  * @param App $a argv application class
585  * @param int $gcontact_id Global contact
586  *
587  * @return string posts in HTML
588  */
589 function posts_from_gcontact($a, $gcontact_id) {
590
591         require_once('include/conversation.php');
592
593         // There are no posts with "uid = 0" with connector networks
594         // This speeds up the query a lot
595         $r = q("SELECT `network` FROM `gcontact` WHERE `id` = %d", dbesc($gcontact_id));
596         if (in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, "")))
597                 $sql = "(`item`.`uid` = 0 OR  (`item`.`uid` = %d AND `item`.`private`))";
598         else
599                 $sql = "`item`.`uid` = %d";
600
601         if(get_config('system', 'old_pager')) {
602                 $r = q("SELECT COUNT(*) AS `total` FROM `item`
603                         WHERE `gcontact-id` = %d and $sql",
604                         intval($gcontact_id),
605                         intval(local_user()));
606
607                 $a->set_pager_total($r[0]['total']);
608         }
609
610         $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
611                         `author-name` AS `name`, `owner-avatar` AS `photo`,
612                         `owner-link` AS `url`, `owner-avatar` AS `thumb`
613                 FROM `item` FORCE INDEX (`gcontactid_uid_created`)
614                 WHERE `gcontact-id` = %d AND $sql AND
615                         NOT `deleted` AND NOT `moderated` AND `visible`
616                 ORDER BY `item`.`created` DESC LIMIT %d, %d",
617                 intval($gcontact_id),
618                 intval(local_user()),
619                 intval($a->pager['start']),
620                 intval($a->pager['itemspage'])
621         );
622
623         $o = conversation($a,$r,'community',false);
624
625         if(!get_config('system', 'old_pager')) {
626                 $o .= alt_pager($a,count($r));
627         } else {
628                 $o .= paginate($a);
629         }
630
631         return $o;
632 }
633
634 /**
635  * @brief Returns posts from a given contact
636  *
637  * @param App $a argv application class
638  * @param int $contact_id contact
639  *
640  * @return string posts in HTML
641  */
642 function posts_from_contact($a, $contact_id) {
643
644         require_once('include/conversation.php');
645
646         $r = q("SELECT `url` FROM `contact` WHERE `id` = %d", intval($contact_id));
647         if (!$r)
648                 return false;
649
650         $contact = $r[0];
651
652         if(get_config('system', 'old_pager')) {
653                 $r = q("SELECT COUNT(*) AS `total` FROM `item`
654                         WHERE `item`.`uid` = %d AND `author-link` IN ('%s', '%s')",
655                         intval(local_user()),
656                         dbesc(str_replace("https://", "http://", $contact["url"])),
657                         dbesc(str_replace("http://", "https://", $contact["url"])));
658
659                 $a->set_pager_total($r[0]['total']);
660         }
661
662         $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
663                         `author-name` AS `name`, `owner-avatar` AS `photo`,
664                         `owner-link` AS `url`, `owner-avatar` AS `thumb`
665                 FROM `item` FORCE INDEX (`uid_contactid_id`)
666                 WHERE `item`.`uid` = %d AND `contact-id` = %d
667                         AND `author-link` IN ('%s', '%s')
668                         AND NOT `deleted` AND NOT `moderated` AND `visible`
669                 ORDER BY `item`.`id` DESC LIMIT %d, %d",
670                 intval(local_user()),
671                 intval($contact_id),
672                 dbesc(str_replace("https://", "http://", $contact["url"])),
673                 dbesc(str_replace("http://", "https://", $contact["url"])),
674                 intval($a->pager['start']),
675                 intval($a->pager['itemspage'])
676         );
677
678         $o .= conversation($a,$r,'community',false);
679
680         if(!get_config('system', 'old_pager'))
681                 $o .= alt_pager($a,count($r));
682         else
683                 $o .= paginate($a);
684
685         return $o;
686 }
687
688 /**
689  * @brief Returns a formatted location string from the given profile array
690  *
691  * @param array $profile Profile array (Generated from the "profile" table)
692  *
693  * @return string Location string
694  */
695 function formatted_location($profile) {
696         $location = '';
697
698         if($profile['locality'])
699                 $location .= $profile['locality'];
700
701         if($profile['region'] AND ($profile['locality'] != $profile['region'])) {
702                 if($location)
703                         $location .= ', ';
704
705                 $location .= $profile['region'];
706         }
707
708         if($profile['country-name']) {
709                 if($location)
710                         $location .= ', ';
711
712                 $location .= $profile['country-name'];
713         }
714
715         return $location;
716 }
717
718 /**
719  * @brief Returns the account type name
720  *
721  * The function can be called with either the user or the contact array
722  *
723  * @param array $contact contact or user array
724  */
725 function account_type($contact) {
726
727         // There are several fields that indicate that the contact or user is a forum
728         // "page-flags" is a field in the user table,
729         // "forum" and "prv" are used in the contact table. They stand for PAGE_COMMUNITY and PAGE_PRVGROUP.
730         // "community" is used in the gcontact table and is true if the contact is PAGE_COMMUNITY or PAGE_PRVGROUP.
731         if((isset($contact['page-flags']) && (intval($contact['page-flags']) == PAGE_COMMUNITY))
732                 || (isset($contact['page-flags']) && (intval($contact['page-flags']) == PAGE_PRVGROUP))
733                 || (isset($contact['forum']) && intval($contact['forum']))
734                 || (isset($contact['prv']) && intval($contact['prv']))
735                 || (isset($contact['community']) && intval($contact['community'])))
736                 $type = ACCOUNT_TYPE_COMMUNITY;
737         else
738                 $type = ACCOUNT_TYPE_PERSON;
739
740         // The "contact-type" (contact table) and "account-type" (user table) are more general then the chaos from above.
741         if (isset($contact["contact-type"]))
742                 $type = $contact["contact-type"];
743         if (isset($contact["account-type"]))
744                 $type = $contact["account-type"];
745
746         switch($type) {
747                 case ACCOUNT_TYPE_ORGANISATION:
748                         $account_type = t("Organisation");
749                         break;
750                 case ACCOUNT_TYPE_NEWS:
751                         $account_type = t('News');
752                         break;
753                 case ACCOUNT_TYPE_COMMUNITY:
754                         $account_type = t("Forum");
755                         break;
756                 default:
757                         $account_type = "";
758                         break;
759         }
760
761         return $account_type;
762 }
763 ?>