friendica/mod/dirfind.php

250 line
8.2 KiB
PHP

2011-10-03 14:10:15 +02:00
<?php
require_once('include/contact_widgets.php');
require_once('include/socgraph.php');
require_once('include/Contact.php');
require_once('include/contact_selectors.php');
require_once('mod/contacts.php');
2011-10-03 14:10:15 +02:00
function dirfind_init(App $a) {
if (! local_user()) {
2015-10-10 16:23:20 +02:00
notice( t('Permission denied.') . EOL );
return;
}
if (! x($a->page,'aside')) {
$a->page['aside'] = '';
}
$a->page['aside'] .= findpeople_widget();
$a->page['aside'] .= follow_widget();
}
function dirfind_content(App $a, $prefix = "") {
2011-10-03 14:10:15 +02:00
2015-07-30 23:27:50 +02:00
$community = false;
$discover_user = false;
2015-07-30 23:27:50 +02:00
$local = get_config('system','poco_local_search');
2015-07-19 13:23:01 +02:00
$search = $prefix.notags(trim($_REQUEST['search']));
if (strpos($search,'@') === 0) {
$search = substr($search,1);
$header = sprintf( t('People Search - %s'), $search);
if ((valid_email($search) AND validate_email($search)) OR
(substr(normalise_link($search), 0, 7) == "http://")) {
$user_data = probe_url($search);
$discover_user = (in_array($user_data["network"], array(NETWORK_DFRN, NETWORK_OSTATUS, NETWORK_DIASPORA)));
}
}
2015-07-19 13:23:01 +02:00
if (strpos($search,'!') === 0) {
2015-07-30 23:27:50 +02:00
$search = substr($search,1);
$community = true;
$header = sprintf( t('Forum Search - %s'), $search);
2015-07-30 23:27:50 +02:00
}
2011-10-03 14:10:15 +02:00
$o = '';
if ($search) {
if ($discover_user) {
$j = new stdClass();
2015-11-08 15:17:08 +01:00
$j->total = 1;
$j->items_page = 1;
$j->page = $a->pager['page'];
$objresult = new stdClass();
$objresult->cid = 0;
$objresult->name = $user_data["name"];
$objresult->addr = $user_data["addr"];
$objresult->url = $user_data["url"];
$objresult->photo = $user_data["photo"];
$objresult->tags = "";
$objresult->network = $user_data["network"];
$contact = get_contact_details_by_url($user_data["url"], local_user());
$objresult->cid = $contact["cid"];
$j->results[] = $objresult;
// Add the contact to the global contacts if it isn't already in our system
if (($contact["cid"] == 0) AND ($contact["zid"] == 0) AND ($contact["gid"] == 0)) {
update_gcontact($user_data);
}
} elseif ($local) {
2015-07-19 13:23:01 +02:00
2015-07-30 23:27:50 +02:00
if ($community)
$extra_sql = " AND `community`";
else
$extra_sql = "";
2015-07-19 13:23:01 +02:00
$perpage = 80;
$startrec = (($a->pager['page']) * $perpage) - $perpage;
if (get_config('system','diaspora_enabled')) {
$diaspora = NETWORK_DIASPORA;
} else {
$diaspora = NETWORK_DFRN;
}
if (!get_config('system','ostatus_disabled')) {
$ostatus = NETWORK_OSTATUS;
} else {
$ostatus = NETWORK_DFRN;
}
$search2 = "%".$search."%";
/// @TODO These 2 SELECTs are not checked on validity with dbm::is_result()
$count = q("SELECT count(*) AS `total` FROM `gcontact`
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl`
AND `contact`.`network` = `gcontact`.`network`
AND `contact`.`uid` = %d AND NOT `contact`.`blocked`
AND NOT `contact`.`pending` AND `contact`.`rel` IN ('%s', '%s')
WHERE (`contact`.`id` > 0 OR (NOT `gcontact`.`hide` AND `gcontact`.`network` IN ('%s', '%s', '%s') AND
((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`)))) AND
(`gcontact`.`url` LIKE '%s' OR `gcontact`.`name` LIKE '%s' OR `gcontact`.`location` LIKE '%s' OR
`gcontact`.`addr` LIKE '%s' OR `gcontact`.`about` LIKE '%s' OR `gcontact`.`keywords` LIKE '%s') $extra_sql",
intval(local_user()), dbesc(CONTACT_IS_SHARING), dbesc(CONTACT_IS_FRIEND),
dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora),
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)),
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)));
2015-07-19 13:23:01 +02:00
$results = q("SELECT `contact`.`id` AS `cid`, `gcontact`.`url`, `gcontact`.`name`, `gcontact`.`photo`, `gcontact`.`network`, `gcontact`.`keywords`, `gcontact`.`addr`
FROM `gcontact`
LEFT JOIN `contact` ON `contact`.`nurl` = `gcontact`.`nurl`
AND `contact`.`network` = `gcontact`.`network`
AND `contact`.`uid` = %d AND NOT `contact`.`blocked`
AND NOT `contact`.`pending` AND `contact`.`rel` IN ('%s', '%s')
WHERE (`contact`.`id` > 0 OR (NOT `gcontact`.`hide` AND `gcontact`.`network` IN ('%s', '%s', '%s') AND
((`gcontact`.`last_contact` >= `gcontact`.`last_failure`) OR (`gcontact`.`updated` >= `gcontact`.`last_failure`)))) AND
(`gcontact`.`url` LIKE '%s' OR `gcontact`.`name` LIKE '%s' OR `gcontact`.`location` LIKE '%s' OR
`gcontact`.`addr` LIKE '%s' OR `gcontact`.`about` LIKE '%s' OR `gcontact`.`keywords` LIKE '%s') $extra_sql
GROUP BY `gcontact`.`nurl`
ORDER BY `gcontact`.`updated` DESC LIMIT %d, %d",
intval(local_user()), dbesc(CONTACT_IS_SHARING), dbesc(CONTACT_IS_FRIEND),
dbesc(NETWORK_DFRN), dbesc($ostatus), dbesc($diaspora),
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)),
dbesc(escape_tags($search2)), dbesc(escape_tags($search2)), dbesc(escape_tags($search2)),
2015-07-19 13:23:01 +02:00
intval($startrec), intval($perpage));
$j = new stdClass();
$j->total = $count[0]["total"];
$j->items_page = $perpage;
$j->page = $a->pager['page'];
2015-07-19 13:23:01 +02:00
foreach ($results AS $result) {
if (poco_alternate_ostatus_url($result["url"])) {
continue;
}
$result = get_contact_details_by_url($result["url"], local_user(), $result);
2015-07-19 13:23:01 +02:00
if ($result["name"] == "") {
$urlparts = parse_url($result["url"]);
$result["name"] = end(explode("/", $urlparts["path"]));
}
$objresult = new stdClass();
$objresult->cid = $result["cid"];
2015-07-19 13:23:01 +02:00
$objresult->name = $result["name"];
$objresult->addr = $result["addr"];
2015-07-19 13:23:01 +02:00
$objresult->url = $result["url"];
$objresult->photo = $result["photo"];
$objresult->tags = $result["keywords"];
$objresult->network = $result["network"];
2015-07-19 13:23:01 +02:00
$j->results[] = $objresult;
}
// Add found profiles from the global directory to the local directory
proc_run(PRIORITY_LOW, 'include/discover_poco.php', "dirsearch", urlencode($search));
2015-07-19 13:23:01 +02:00
} else {
$p = (($a->pager['page'] != 1) ? '&p=' . $a->pager['page'] : '');
if(strlen(get_config('system','directory')))
$x = fetch_url(get_server().'/lsearch?f=' . $p . '&search=' . urlencode($search));
2011-10-03 14:10:15 +02:00
2015-07-19 13:23:01 +02:00
$j = json_decode($x);
}
2011-10-03 14:10:15 +02:00
if ($j->total) {
2011-10-03 14:10:15 +02:00
$a->set_pager_total($j->total);
$a->set_pager_itemspage($j->items_page);
}
if (count($j->results)) {
2015-07-19 13:23:01 +02:00
$id = 0;
foreach ($j->results as $jj) {
2015-07-19 13:23:01 +02:00
$alt_text = "";
$contact_details = get_contact_details_by_url($jj->url, local_user());
$itemurl = (($contact_details["addr"] != "") ? $contact_details["addr"] : $jj->url);
// If We already know this contact then don't show the "connect" button
if ($jj->cid > 0) {
$connlnk = "";
$conntxt = "";
$contact = q("SELECT * FROM `contact` WHERE `id` = %d",
intval($jj->cid));
if ($contact) {
$photo_menu = contact_photo_menu($contact[0]);
$details = _contact_detail_for_template($contact[0]);
$alt_text = $details['alt_text'];
} else {
$photo_menu = array();
}
} else {
$connlnk = App::get_baseurl().'/follow/?url='.(($jj->connect) ? $jj->connect : $jj->url);
$conntxt = t('Connect');
$photo_menu = array(
'profile' => array(t("View Profile"), zrl($jj->url)),
'follow' => array(t("Connect/Follow"), $connlnk)
);
}
$jj->photo = str_replace("http:///photo/", get_server()."/photo/", $jj->photo);
2015-10-17 00:19:01 +02:00
$entry = array(
'alt_text' => $alt_text,
2015-10-17 00:19:01 +02:00
'url' => zrl($jj->url),
'itemurl' => $itemurl,
2015-10-17 00:19:01 +02:00
'name' => htmlentities($jj->name),
'thumb' => proxy_url($jj->photo, false, PROXY_SIZE_THUMB),
'img_hover' => $jj->tags,
2015-10-17 00:19:01 +02:00
'conntxt' => $conntxt,
'connlnk' => $connlnk,
'photo_menu' => $photo_menu,
'details' => $contact_details['location'],
'tags' => $contact_details['keywords'],
'about' => $contact_details['about'],
'account_type' => account_type($contact_details),
'network' => network_to_name($jj->network, $jj->url),
2015-10-17 00:19:01 +02:00
'id' => ++$id,
);
$entries[] = $entry;
2011-10-03 14:10:15 +02:00
}
2015-10-17 00:19:01 +02:00
$tpl = get_markup_template('viewcontact_template.tpl');
2015-10-17 00:19:01 +02:00
$o .= replace_macros($tpl,array(
'title' => $header,
'$contacts' => $entries,
2015-10-17 22:09:19 +02:00
'$paginate' => paginate($a),
2015-10-17 00:19:01 +02:00
));
} else {
2011-10-03 14:10:15 +02:00
info( t('No matches') . EOL);
2015-07-19 13:23:01 +02:00
}
2011-10-03 14:10:15 +02:00
}
return $o;
}