3 require_once('include/Probe.php');
5 // Included here for completeness, but this is a very dangerous operation.
6 // It is the caller's responsibility to confirm the requestor's intent and
7 // authorisation to do this.
9 function user_remove($uid) {
12 logger('Removing user: ' . $uid);
14 $r = q("select * from user where uid = %d limit 1", intval($uid));
16 call_hooks('remove_user',$r[0]);
18 // save username (actually the nickname as it is guaranteed
19 // unique), so it cannot be re-registered in the future.
21 q("insert into userd ( username ) values ( '%s' )",
25 /// @todo Should be done in a background job since this likely will run into a time out
26 // don't delete yet, will be done later when contacts have deleted my stuff
27 // q("DELETE FROM `contact` WHERE `uid` = %d", intval($uid));
28 q("DELETE FROM `gcign` WHERE `uid` = %d", intval($uid));
29 q("DELETE FROM `group` WHERE `uid` = %d", intval($uid));
30 q("DELETE FROM `group_member` WHERE `uid` = %d", intval($uid));
31 q("DELETE FROM `intro` WHERE `uid` = %d", intval($uid));
32 q("DELETE FROM `event` WHERE `uid` = %d", intval($uid));
33 q("DELETE FROM `item` WHERE `uid` = %d", intval($uid));
34 q("DELETE FROM `item_id` WHERE `uid` = %d", intval($uid));
35 q("DELETE FROM `mail` WHERE `uid` = %d", intval($uid));
36 q("DELETE FROM `mailacct` WHERE `uid` = %d", intval($uid));
37 q("DELETE FROM `manage` WHERE `uid` = %d", intval($uid));
38 q("DELETE FROM `notify` WHERE `uid` = %d", intval($uid));
39 q("DELETE FROM `photo` WHERE `uid` = %d", intval($uid));
40 q("DELETE FROM `attach` WHERE `uid` = %d", intval($uid));
41 q("DELETE FROM `profile` WHERE `uid` = %d", intval($uid));
42 q("DELETE FROM `profile_check` WHERE `uid` = %d", intval($uid));
43 q("DELETE FROM `pconfig` WHERE `uid` = %d", intval($uid));
44 q("DELETE FROM `search` WHERE `uid` = %d", intval($uid));
45 q("DELETE FROM `spam` WHERE `uid` = %d", intval($uid));
46 // don't delete yet, will be done later when contacts have deleted my stuff
47 // q("DELETE FROM `user` WHERE `uid` = %d", intval($uid));
48 q("UPDATE `user` SET `account_removed` = 1, `account_expires_on` = UTC_TIMESTAMP() WHERE `uid` = %d", intval($uid));
49 proc_run(PRIORITY_HIGH, "include/notifier.php", "removeme", $uid);
51 // Send an update to the directory
52 proc_run(PRIORITY_LOW, "include/directory.php", $r[0]['url']);
54 if($uid == local_user()) {
55 unset($_SESSION['authenticated']);
56 unset($_SESSION['uid']);
57 goaway(App::get_baseurl());
62 function contact_remove($id) {
64 // We want just to make sure that we don't delete our "self" contact
65 $r = q("SELECT `uid` FROM `contact` WHERE `id` = %d AND NOT `self` LIMIT 1",
68 if (!dbm::is_result($r) || !intval($r[0]['uid'])) {
72 $archive = get_pconfig($r[0]['uid'], 'system','archive_removed_contacts');
74 q("update contact set `archive` = 1, `network` = 'none', `writable` = 0 where id = %d",
80 q("DELETE FROM `contact` WHERE `id` = %d", intval($id));
82 // Delete the rest in the background
83 proc_run(PRIORITY_LOW, 'include/remove_contact.php', $id);
87 // sends an unfriend message. Does not remove the contact
89 function terminate_friendship($user,$self,$contact) {
91 /// @TODO Get rid of this, include/datetime.php should care about it by itself
94 require_once('include/datetime.php');
96 if ($contact['network'] === NETWORK_OSTATUS) {
98 require_once('include/ostatus.php');
100 // create an unfollow slap
102 $item['verb'] = NAMESPACE_OSTATUS."/unfollow";
103 $item['follow'] = $contact["url"];
104 $slap = ostatus::salmon($item, $user);
106 if ((x($contact,'notify')) && (strlen($contact['notify']))) {
107 require_once('include/salmon.php');
108 slapper($user,$contact['notify'],$slap);
110 } elseif ($contact['network'] === NETWORK_DIASPORA) {
111 require_once('include/diaspora.php');
112 Diaspora::send_unshare($user,$contact);
113 } elseif ($contact['network'] === NETWORK_DFRN) {
114 require_once('include/dfrn.php');
115 dfrn::deliver($user,$contact,'placeholder', 1);
121 // Contact has refused to recognise us as a friend. We will start a countdown.
122 // If they still don't recognise us in 32 days, the relationship is over,
123 // and we won't waste any more time trying to communicate with them.
124 // This provides for the possibility that their database is temporarily messed
125 // up or some other transient event and that there's a possibility we could recover from it.
127 function mark_for_death($contact) {
129 if($contact['archive'])
132 if($contact['term-date'] == '0000-00-00 00:00:00') {
133 q("UPDATE `contact` SET `term-date` = '%s' WHERE `id` = %d",
134 dbesc(datetime_convert()),
135 intval($contact['id'])
138 if ($contact['url'] != '') {
139 q("UPDATE `contact` SET `term-date` = '%s'
140 WHERE `nurl` = '%s' AND `term-date` <= '1000-00-00'",
141 dbesc(datetime_convert()),
142 dbesc(normalise_link($contact['url']))
148 /// We really should send a notification to the owner after 2-3 weeks
149 /// so they won't be surprised when the contact vanishes and can take
150 /// remedial action if this was a serious mistake or glitch
153 /// Check for contact vitality via probing
155 $expiry = $contact['term-date'] . ' + 32 days ';
156 if(datetime_convert() > datetime_convert('UTC','UTC',$expiry)) {
158 // relationship is really truly dead.
159 // archive them rather than delete
160 // though if the owner tries to unarchive them we'll start the whole process over again
162 q("UPDATE `contact` SET `archive` = 1 WHERE `id` = %d",
163 intval($contact['id'])
166 if ($contact['url'] != '') {
167 q("UPDATE `contact` SET `archive` = 1 WHERE `nurl` = '%s'",
168 dbesc(normalise_link($contact['url']))
176 function unmark_for_death($contact) {
178 $r = q("SELECT `term-date` FROM `contact` WHERE `id` = %d AND `term-date` > '%s'",
179 intval($contact['id']),
180 dbesc('1000-00-00 00:00:00')
183 // We don't need to update, we never marked this contact as dead
184 if (!dbm::is_result($r)) {
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'])
194 if ($contact['url'] != '') {
195 q("UPDATE `contact` SET `term-date` = '%s' WHERE `nurl` = '%s'",
196 dbesc('0000-00-00 00:00:00'),
197 dbesc(normalise_link($contact['url']))
203 * @brief Get contact data for a given profile link
205 * The function looks at several places (contact table and gcontact table) for the contact
206 * It caches its result for the same script execution to prevent duplicate calls
208 * @param string $url The profile link
209 * @param int $uid User id
210 * @param array $default If not data was found take this data as default value
212 * @return array Contact data
214 function get_contact_details_by_url($url, $uid = -1, $default = array()) {
215 static $cache = array();
221 if (isset($cache[$url][$uid])) {
222 return $cache[$url][$uid];
225 // Fetch contact data from the contact table for the given user
226 $r = q("SELECT `id`, `id` AS `cid`, 0 AS `gid`, 0 AS `zid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
227 `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, `self`
228 FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d",
229 dbesc(normalise_link($url)), intval($uid));
231 // Fetch the data from the contact table with "uid=0" (which is filled automatically)
232 if (!dbm::is_result($r))
233 $r = q("SELECT `id`, 0 AS `cid`, `id` AS `zid`, 0 AS `gid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
234 `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, 0 AS `self`
235 FROM `contact` WHERE `nurl` = '%s' AND `uid` = 0",
236 dbesc(normalise_link($url)));
238 // Fetch the data from the gcontact table
239 if (!dbm::is_result($r))
240 $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`,
241 `keywords`, `gender`, `photo`, `photo` AS `thumb`, `photo` AS `micro`, `community` AS `forum`, 0 AS `prv`, `community`, `contact-type`, `birthday`, 0 AS `self`
242 FROM `gcontact` WHERE `nurl` = '%s'",
243 dbesc(normalise_link($url)));
245 if (dbm::is_result($r)) {
246 // If there is more than one entry we filter out the connector networks
248 foreach ($r AS $id => $result) {
249 if ($result["network"] == NETWORK_STATUSNET) {
255 $profile = array_shift($r);
257 // "bd" always contains the upcoming birthday of a contact.
258 // "birthday" might contain the birthday including the year of birth.
259 if ($profile["birthday"] != "0000-00-00") {
260 $bd_timestamp = strtotime($profile["birthday"]);
261 $month = date("m", $bd_timestamp);
262 $day = date("d", $bd_timestamp);
264 $current_timestamp = time();
265 $current_year = date("Y", $current_timestamp);
266 $current_month = date("m", $current_timestamp);
267 $current_day = date("d", $current_timestamp);
269 $profile["bd"] = $current_year."-".$month."-".$day;
270 $current = $current_year."-".$current_month."-".$current_day;
272 if ($profile["bd"] < $current) {
273 $profile["bd"] = (++$current_year)."-".$month."-".$day;
276 $profile["bd"] = "0000-00-00";
282 if (($profile["photo"] == "") AND isset($default["photo"])) {
283 $profile["photo"] = $default["photo"];
286 if (($profile["name"] == "") AND isset($default["name"])) {
287 $profile["name"] = $default["name"];
290 if (($profile["network"] == "") AND isset($default["network"])) {
291 $profile["network"] = $default["network"];
294 if (($profile["thumb"] == "") AND isset($profile["photo"])) {
295 $profile["thumb"] = $profile["photo"];
298 if (($profile["micro"] == "") AND isset($profile["thumb"])) {
299 $profile["micro"] = $profile["thumb"];
302 if ((($profile["addr"] == "") OR ($profile["name"] == "")) AND ($profile["gid"] != 0) AND
303 in_array($profile["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS))) {
304 proc_run(PRIORITY_LOW, "include/update_gcontact.php", $profile["gid"]);
307 // Show contact details of Diaspora contacts only if connected
308 if (($profile["cid"] == 0) AND ($profile["network"] == NETWORK_DIASPORA)) {
309 $profile["location"] = "";
310 $profile["about"] = "";
311 $profile["gender"] = "";
312 $profile["birthday"] = "0000-00-00";
315 $cache[$url][$uid] = $profile;
321 * @brief Get contact data for a given address
323 * The function looks at several places (contact table and gcontact table) for the contact
325 * @param string $addr The profile link
326 * @param int $uid User id
328 * @return array Contact data
330 function get_contact_details_by_addr($addr, $uid = -1) {
331 static $cache = array();
337 // Fetch contact data from the contact table for the given user
338 $r = q("SELECT `id`, `id` AS `cid`, 0 AS `gid`, 0 AS `zid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
339 `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, `self`
340 FROM `contact` WHERE `addr` = '%s' AND `uid` = %d",
341 dbesc($addr), intval($uid));
343 // Fetch the data from the contact table with "uid=0" (which is filled automatically)
344 if (!dbm::is_result($r))
345 $r = q("SELECT `id`, 0 AS `cid`, `id` AS `zid`, 0 AS `gid`, `uid`, `url`, `nurl`, `alias`, `network`, `name`, `nick`, `addr`, `location`, `about`, `xmpp`,
346 `keywords`, `gender`, `photo`, `thumb`, `micro`, `forum`, `prv`, (`forum` | `prv`) AS `community`, `contact-type`, `bd` AS `birthday`, 0 AS `self`
347 FROM `contact` WHERE `addr` = '%s' AND `uid` = 0",
350 // Fetch the data from the gcontact table
351 if (!dbm::is_result($r))
352 $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`,
353 `keywords`, `gender`, `photo`, `photo` AS `thumb`, `photo` AS `micro`, `community` AS `forum`, 0 AS `prv`, `community`, `contact-type`, `birthday`, 0 AS `self`
354 FROM `gcontact` WHERE `addr` = '%s'",
357 if (!dbm::is_result($r)) {
358 $data = Probe::uri($addr);
360 $profile = get_contact_details_by_url($data['url'], $uid);
368 if (! function_exists('contact_photo_menu')) {
369 function contact_photo_menu($contact, $uid = 0)
378 $contact_drop_link = '';
385 if ($contact['uid'] != $uid) {
387 $profile_link = zrl($contact['url']);
388 $menu = Array('profile' => array(t('View Profile'), $profile_link, true));
393 $r = q("SELECT * FROM `contact` WHERE `nurl` = '%s' AND `network` = '%s' AND `uid` = %d",
394 dbesc($contact['nurl']), dbesc($contact['network']), intval($uid));
396 return contact_photo_menu($r[0], $uid);
398 $profile_link = zrl($contact['url']);
399 $connlnk = 'follow/?url='.$contact['url'];
401 'profile' => array(t('View Profile'), $profile_link, true),
402 'follow' => array(t('Connect/Follow'), $connlnk, true)
410 if ($contact['network'] === NETWORK_DFRN) {
412 $profile_link = App::get_baseurl() . '/redir/' . $contact['id'];
414 $profile_link = $contact['url'];
417 if ($profile_link === 'mailbox') {
422 $status_link = $profile_link . '?url=status';
423 $photos_link = $profile_link . '?url=photos';
424 $profile_link = $profile_link . '?url=profile';
427 if (in_array($contact['network'], array(NETWORK_DFRN, NETWORK_DIASPORA))) {
428 $pm_url = App::get_baseurl() . '/message/new/' . $contact['id'];
431 if ($contact['network'] == NETWORK_DFRN) {
432 $poke_link = App::get_baseurl() . '/poke/?f=&c=' . $contact['id'];
435 $contact_url = App::get_baseurl() . '/contacts/' . $contact['id'];
437 $posts_link = App::get_baseurl() . '/contacts/' . $contact['id'] . '/posts';
438 $contact_drop_link = App::get_baseurl() . '/contacts/' . $contact['id'] . '/drop?confirm=1';
442 * "name" => [ "Label", "link", (bool)Should the link opened in a new tab? ]
445 'status' => array(t("View Status"), $status_link, true),
446 'profile' => array(t("View Profile"), $profile_link, true),
447 'photos' => array(t("View Photos"), $photos_link, true),
448 'network' => array(t("Network Posts"), $posts_link, false),
449 'edit' => array(t("View Contact"), $contact_url, false),
450 'drop' => array(t("Drop Contact"), $contact_drop_link, false),
451 'pm' => array(t("Send PM"), $pm_url, false),
452 'poke' => array(t("Poke"), $poke_link, false),
456 $args = array('contact' => $contact, 'menu' => &$menu);
458 call_hooks('contact_photo_menu', $args);
460 $menucondensed = array();
462 foreach ($menu AS $menuname => $menuitem) {
463 if ($menuitem[1] != '') {
464 $menucondensed[$menuname] = $menuitem;
468 return $menucondensed;
472 function random_profile() {
473 $r = q("SELECT `url` FROM `gcontact` WHERE `network` = '%s'
474 AND `last_contact` >= `last_failure`
475 AND `updated` > UTC_TIMESTAMP - INTERVAL 1 MONTH
476 ORDER BY rand() LIMIT 1",
477 dbesc(NETWORK_DFRN));
479 if (dbm::is_result($r))
480 return dirname($r[0]['url']);
485 function contacts_not_grouped($uid,$start = 0,$count = 0) {
488 $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) ",
498 $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",
509 * @brief Fetch the contact id for a given url and user
511 * @param string $url Contact URL
512 * @param integer $uid The user id for the contact
513 * @param boolean $no_update Don't update the contact
515 * @return integer Contact ID
517 function get_contact($url, $uid = 0, $no_update = false) {
518 require_once("include/Scrape.php");
520 logger("Get contact data for url ".$url." and user ".$uid." - ".App::callstack(), LOGGER_DEBUG);;
525 // is it an address in the format user@server.tld?
526 /// @todo use gcontact and/or the addr field for a lookup
527 if (!strstr($url, "http") OR strstr($url, "@")) {
528 $data = probe_url($url);
534 $contact = q("SELECT `id`, `avatar-date` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d ORDER BY `id` LIMIT 2",
535 dbesc(normalise_link($url)),
539 $contact = q("SELECT `id`, `avatar-date` FROM `contact` WHERE `alias` IN ('%s', '%s') AND `uid` = %d ORDER BY `id` LIMIT 1",
541 dbesc(normalise_link($url)),
545 $contactid = $contact[0]["id"];
547 // Update the contact every 7 days
548 $update_photo = ($contact[0]['avatar-date'] < datetime_convert('','','now -7 days'));
549 //$update_photo = ($contact[0]['avatar-date'] < datetime_convert('','','now -12 hours'));
551 if (!$update_photo OR $no_update) {
558 $data = probe_url($url);
560 // Does this address belongs to a valid network?
561 if (!in_array($data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA))) {
565 // Get data from the gcontact table
566 $r = q("SELECT `name`, `nick`, `url`, `photo`, `addr`, `alias`, `network` FROM `gcontact` WHERE `nurl` = '%s'",
567 dbesc(normalise_link($url)));
576 if ($contactid == 0) {
577 q("INSERT INTO `contact` (`uid`, `created`, `url`, `nurl`, `addr`, `alias`, `notify`, `poll`,
578 `name`, `nick`, `photo`, `network`, `pubkey`, `rel`, `priority`,
579 `batch`, `request`, `confirm`, `poco`, `name-date`, `uri-date`,
580 `writable`, `blocked`, `readonly`, `pending`)
581 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)",
583 dbesc(datetime_convert()),
585 dbesc(normalise_link($data["url"])),
586 dbesc($data["addr"]),
587 dbesc($data["alias"]),
588 dbesc($data["notify"]),
589 dbesc($data["poll"]),
590 dbesc($data["name"]),
591 dbesc($data["nick"]),
592 dbesc($data["photo"]),
593 dbesc($data["network"]),
594 dbesc($data["pubkey"]),
595 intval(CONTACT_IS_SHARING),
596 intval($data["priority"]),
597 dbesc($data["batch"]),
598 dbesc($data["request"]),
599 dbesc($data["confirm"]),
600 dbesc($data["poco"]),
601 dbesc(datetime_convert()),
602 dbesc(datetime_convert())
605 $contact = q("SELECT `id` FROM `contact` WHERE `nurl` = '%s' AND `uid` = %d ORDER BY `id` LIMIT 2",
606 dbesc(normalise_link($data["url"])),
611 $contactid = $contact[0]["id"];
613 // Update the newly created contact from data in the gcontact table
614 $r = q("SELECT `location`, `about`, `keywords`, `gender` FROM `gcontact` WHERE `nurl` = '%s'",
615 dbesc(normalise_link($data["url"])));
617 logger("Update contact ".$data["url"]);
618 q("UPDATE `contact` SET `location` = '%s', `about` = '%s', `keywords` = '%s', `gender` = '%s' WHERE `id` = %d",
619 dbesc($r["location"]), dbesc($r["about"]), dbesc($r["keywords"]),
620 dbesc($r["gender"]), intval($contactid));
624 if ((count($contact) > 1) AND ($uid == 0) AND ($contactid != 0) AND ($url != ""))
625 q("DELETE FROM `contact` WHERE `nurl` = '%s' AND `id` != %d AND NOT `self`",
626 dbesc(normalise_link($url)),
629 require_once("Photo.php");
631 update_contact_avatar($data["photo"],$uid,$contactid);
633 $r = q("SELECT `addr`, `alias`, `name`, `nick` FROM `contact` WHERE `id` = %d", intval($contactid));
635 // This condition should always be true
636 if (!dbm::is_result($r))
639 // Only update if there had something been changed
640 if (($data["addr"] != $r[0]["addr"]) OR
641 ($data["alias"] != $r[0]["alias"]) OR
642 ($data["name"] != $r[0]["name"]) OR
643 ($data["nick"] != $r[0]["nick"]))
644 q("UPDATE `contact` SET `addr` = '%s', `alias` = '%s', `name` = '%s', `nick` = '%s',
645 `name-date` = '%s', `uri-date` = '%s' WHERE `id` = %d",
646 dbesc($data["addr"]),
647 dbesc($data["alias"]),
648 dbesc($data["name"]),
649 dbesc($data["nick"]),
650 dbesc(datetime_convert()),
651 dbesc(datetime_convert()),
659 * @brief Returns posts from a given gcontact
661 * @param App $a argv application class
662 * @param int $gcontact_id Global contact
664 * @return string posts in HTML
666 function posts_from_gcontact(App $a, $gcontact_id) {
668 require_once('include/conversation.php');
670 // There are no posts with "uid = 0" with connector networks
671 // This speeds up the query a lot
672 $r = q("SELECT `network` FROM `gcontact` WHERE `id` = %d", dbesc($gcontact_id));
673 if (in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, "")))
674 $sql = "(`item`.`uid` = 0 OR (`item`.`uid` = %d AND `item`.`private`))";
676 $sql = "`item`.`uid` = %d";
678 if(get_config('system', 'old_pager')) {
679 $r = q("SELECT COUNT(*) AS `total` FROM `item`
680 WHERE `gcontact-id` = %d and $sql",
681 intval($gcontact_id),
682 intval(local_user()));
684 $a->set_pager_total($r[0]['total']);
687 $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
688 `author-name` AS `name`, `owner-avatar` AS `photo`,
689 `owner-link` AS `url`, `owner-avatar` AS `thumb`
691 WHERE `gcontact-id` = %d AND $sql AND
692 NOT `deleted` AND NOT `moderated` AND `visible`
693 ORDER BY `item`.`created` DESC LIMIT %d, %d",
694 intval($gcontact_id),
695 intval(local_user()),
696 intval($a->pager['start']),
697 intval($a->pager['itemspage'])
700 $o = conversation($a,$r,'community',false);
702 if(!get_config('system', 'old_pager')) {
703 $o .= alt_pager($a,count($r));
711 * @brief Returns posts from a given contact url
713 * @param App $a argv application class
714 * @param string $contact_url Contact URL
716 * @return string posts in HTML
718 function posts_from_contact_url(App $a, $contact_url) {
720 require_once('include/conversation.php');
722 // There are no posts with "uid = 0" with connector networks
723 // This speeds up the query a lot
724 $r = q("SELECT `network`, `id` AS `author-id` FROM `contact`
725 WHERE `contact`.`nurl` = '%s' AND `contact`.`uid` = 0",
726 dbesc(normalise_link($contact_url)));
727 if (in_array($r[0]["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""))) {
728 $sql = "(`item`.`uid` = 0 OR (`item`.`uid` = %d AND `item`.`private`))";
730 $sql = "`item`.`uid` = %d";
733 $author_id = intval($r[0]["author-id"]);
735 if (get_config('system', 'old_pager')) {
736 $r = q("SELECT COUNT(*) AS `total` FROM `item`
737 WHERE `author-id` = %d and $sql",
739 intval(local_user()));
741 $a->set_pager_total($r[0]['total']);
744 $r = q(item_query()." AND `item`.`author-id` = %d AND ".$sql.
745 " ORDER BY `item`.`created` DESC LIMIT %d, %d",
747 intval(local_user()),
748 intval($a->pager['start']),
749 intval($a->pager['itemspage'])
752 $o = conversation($a,$r,'community',false);
754 if (!get_config('system', 'old_pager')) {
755 $o .= alt_pager($a,count($r));
764 * @brief Returns a formatted location string from the given profile array
766 * @param array $profile Profile array (Generated from the "profile" table)
768 * @return string Location string
770 function formatted_location($profile) {
773 if($profile['locality'])
774 $location .= $profile['locality'];
776 if($profile['region'] AND ($profile['locality'] != $profile['region'])) {
780 $location .= $profile['region'];
783 if($profile['country-name']) {
787 $location .= $profile['country-name'];
794 * @brief Returns the account type name
796 * The function can be called with either the user or the contact array
798 * @param array $contact contact or user array
800 function account_type($contact) {
802 // There are several fields that indicate that the contact or user is a forum
803 // "page-flags" is a field in the user table,
804 // "forum" and "prv" are used in the contact table. They stand for PAGE_COMMUNITY and PAGE_PRVGROUP.
805 // "community" is used in the gcontact table and is true if the contact is PAGE_COMMUNITY or PAGE_PRVGROUP.
806 if((isset($contact['page-flags']) && (intval($contact['page-flags']) == PAGE_COMMUNITY))
807 || (isset($contact['page-flags']) && (intval($contact['page-flags']) == PAGE_PRVGROUP))
808 || (isset($contact['forum']) && intval($contact['forum']))
809 || (isset($contact['prv']) && intval($contact['prv']))
810 || (isset($contact['community']) && intval($contact['community'])))
811 $type = ACCOUNT_TYPE_COMMUNITY;
813 $type = ACCOUNT_TYPE_PERSON;
815 // The "contact-type" (contact table) and "account-type" (user table) are more general then the chaos from above.
816 if (isset($contact["contact-type"]))
817 $type = $contact["contact-type"];
818 if (isset($contact["account-type"]))
819 $type = $contact["account-type"];
822 case ACCOUNT_TYPE_ORGANISATION:
823 $account_type = t("Organisation");
825 case ACCOUNT_TYPE_NEWS:
826 $account_type = t('News');
828 case ACCOUNT_TYPE_COMMUNITY:
829 $account_type = t("Forum");
836 return $account_type;