2019-05-20 18:42:27 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Core;
|
|
|
|
|
|
|
|
use Friendica\BaseObject;
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
use Friendica\Model\Contact;
|
|
|
|
use Friendica\Network\HTTPException;
|
2019-05-20 18:44:44 +02:00
|
|
|
use Friendica\Network\Probe;
|
2019-05-20 18:42:27 +02:00
|
|
|
use Friendica\Object\Search\ContactResult;
|
|
|
|
use Friendica\Object\Search\ResultList;
|
|
|
|
use Friendica\Protocol\PortableContact;
|
|
|
|
use Friendica\Util\Network;
|
|
|
|
use Friendica\Util\Strings;
|
|
|
|
|
2019-05-20 18:44:44 +02:00
|
|
|
/**
|
|
|
|
* Specific class to perform searches for different systems. Currently:
|
|
|
|
* - Probe for contacts
|
|
|
|
* - Search in the local directory
|
|
|
|
* - Search in the global directory
|
|
|
|
*/
|
2019-05-20 18:42:27 +02:00
|
|
|
class Search extends BaseObject
|
|
|
|
{
|
|
|
|
const DEFAULT_DIRECTORY = 'https://dir.friendica.social';
|
|
|
|
|
2019-05-20 19:13:37 +02:00
|
|
|
const TYPE_PEOPLE = 0;
|
|
|
|
const TYPE_FORUM = 1;
|
|
|
|
const TYPE_ALL = 2;
|
|
|
|
|
2019-05-20 18:42:27 +02:00
|
|
|
/**
|
|
|
|
* Search a user based on his/her profile address
|
|
|
|
* pattern: @username@domain.tld
|
|
|
|
*
|
|
|
|
* @param string $user The user to search for
|
|
|
|
*
|
2019-05-24 14:13:36 +02:00
|
|
|
* @return ResultList
|
2019-05-20 18:42:27 +02:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
|
|
|
*/
|
|
|
|
public static function getContactsFromProbe($user)
|
|
|
|
{
|
2019-05-24 14:13:36 +02:00
|
|
|
$emptyResultList = new ResultList(1, 0, 1);
|
|
|
|
|
2019-05-20 18:42:27 +02:00
|
|
|
if ((filter_var($user, FILTER_VALIDATE_EMAIL) && Network::isEmailDomainValid($user)) ||
|
|
|
|
(substr(Strings::normaliseLink($user), 0, 7) == "http://")) {
|
|
|
|
|
|
|
|
$user_data = Probe::uri($user);
|
|
|
|
if (empty($user_data)) {
|
2019-05-24 14:13:36 +02:00
|
|
|
return $emptyResultList;
|
2019-05-20 18:42:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(in_array($user_data["network"], [Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::OSTATUS, Protocol::DIASPORA]))) {
|
2019-05-24 14:13:36 +02:00
|
|
|
return $emptyResultList;
|
2019-05-20 18:42:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$contactDetails = Contact::getDetailsByURL(defaults($user_data, 'url', ''), local_user());
|
2019-05-20 19:27:53 +02:00
|
|
|
$itemUrl = defaults($contactDetails, 'addr', defaults($user_data, 'url', ''));
|
2019-05-20 18:42:27 +02:00
|
|
|
|
|
|
|
$result = new ContactResult(
|
|
|
|
defaults($user_data, 'name', ''),
|
|
|
|
defaults($user_data, 'addr', ''),
|
|
|
|
$itemUrl,
|
|
|
|
defaults($user_data, 'url', ''),
|
|
|
|
defaults($user_data, 'photo', ''),
|
|
|
|
defaults($user_data, 'network', ''),
|
|
|
|
defaults($contactDetails, 'cid', 0),
|
|
|
|
0,
|
|
|
|
defaults($user_data, 'tags', '')
|
|
|
|
);
|
|
|
|
|
|
|
|
return new ResultList(1, 1, 1, [$result]);
|
|
|
|
} else {
|
2019-05-24 14:13:36 +02:00
|
|
|
return $emptyResultList;
|
2019-05-20 18:42:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Search in the global directory for occurrences of the search string
|
2019-05-20 19:19:57 +02:00
|
|
|
*
|
2019-05-20 19:13:37 +02:00
|
|
|
* @see https://github.com/friendica/friendica-directory/blob/master/docs/Protocol.md#search
|
2019-05-20 18:42:27 +02:00
|
|
|
*
|
|
|
|
* @param string $search
|
2019-05-20 19:13:37 +02:00
|
|
|
* @param int $type specific type of searching
|
2019-05-20 18:42:27 +02:00
|
|
|
* @param int $page
|
|
|
|
*
|
2019-05-24 14:13:36 +02:00
|
|
|
* @return ResultList
|
2019-05-20 18:42:27 +02:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
*/
|
2019-05-20 19:13:37 +02:00
|
|
|
public static function getContactsFromGlobalDirectory($search, $type = self::TYPE_ALL, $page = 1)
|
2019-05-20 18:42:27 +02:00
|
|
|
{
|
|
|
|
$config = self::getApp()->getConfig();
|
|
|
|
$server = $config->get('system', 'directory', self::DEFAULT_DIRECTORY);
|
|
|
|
|
2019-05-20 19:13:37 +02:00
|
|
|
$searchUrl = $server . '/search';
|
|
|
|
|
|
|
|
switch ($type) {
|
|
|
|
case self::TYPE_FORUM:
|
|
|
|
$searchUrl .= '/forum';
|
|
|
|
break;
|
|
|
|
case self::TYPE_PEOPLE:
|
|
|
|
$searchUrl .= '/people';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
$searchUrl .= '?q=' . urlencode($search);
|
2019-05-20 18:42:27 +02:00
|
|
|
|
|
|
|
if ($page > 1) {
|
|
|
|
$searchUrl .= '&page=' . $page;
|
|
|
|
}
|
|
|
|
|
2019-05-20 19:19:57 +02:00
|
|
|
$red = 0;
|
|
|
|
$resultJson = Network::fetchUrl($searchUrl, false, $red, 0, 'application/json');
|
2019-05-20 18:42:27 +02:00
|
|
|
|
2019-05-20 19:19:57 +02:00
|
|
|
$results = json_decode($resultJson, true);
|
2019-05-20 18:42:27 +02:00
|
|
|
|
|
|
|
$resultList = new ResultList(
|
|
|
|
defaults($results, 'page', 1),
|
2019-05-24 14:13:36 +02:00
|
|
|
defaults($results, 'count', 0),
|
|
|
|
defaults($results, 'itemsperpage', 30)
|
2019-05-20 18:42:27 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$profiles = defaults($results, 'profiles', []);
|
|
|
|
|
|
|
|
foreach ($profiles as $profile) {
|
|
|
|
$contactDetails = Contact::getDetailsByURL(defaults($profile, 'profile_url', ''), local_user());
|
2019-05-20 19:27:53 +02:00
|
|
|
$itemUrl = defaults($contactDetails, 'addr', defaults($profile, 'profile_url', ''));
|
2019-05-20 18:42:27 +02:00
|
|
|
|
|
|
|
$result = new ContactResult(
|
|
|
|
defaults($profile, 'name', ''),
|
|
|
|
defaults($profile, 'addr', ''),
|
|
|
|
$itemUrl,
|
|
|
|
defaults($profile, 'profile_url', ''),
|
|
|
|
defaults($profile, 'photo', ''),
|
|
|
|
Protocol::DFRN,
|
|
|
|
defaults($contactDetails, 'cid', 0),
|
|
|
|
0,
|
|
|
|
defaults($profile, 'tags', ''));
|
|
|
|
|
|
|
|
$resultList->addResult($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $resultList;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Search in the local database for occurrences of the search string
|
|
|
|
*
|
|
|
|
* @param string $search
|
2019-05-20 19:15:47 +02:00
|
|
|
* @param int $type
|
2019-05-20 18:42:27 +02:00
|
|
|
* @param int $start
|
|
|
|
* @param int $itemPage
|
|
|
|
*
|
2019-05-24 14:13:36 +02:00
|
|
|
* @return ResultList
|
2019-05-20 18:42:27 +02:00
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
*/
|
2019-05-20 19:15:47 +02:00
|
|
|
public static function getContactsFromLocalDirectory($search, $type = self::TYPE_ALL, $start = 0, $itemPage = 80)
|
2019-05-20 18:42:27 +02:00
|
|
|
{
|
|
|
|
$config = self::getApp()->getConfig();
|
|
|
|
|
|
|
|
$diaspora = $config->get('system', 'diaspora_enabled') ? Protocol::DIASPORA : Protocol::DFRN;
|
|
|
|
$ostatus = !$config->get('system', 'ostatus_disabled') ? Protocol::OSTATUS : Protocol::DFRN;
|
|
|
|
|
|
|
|
$wildcard = Strings::escapeHtml('%' . $search . '%');
|
|
|
|
|
|
|
|
$count = DBA::count('gcontact', [
|
|
|
|
'NOT `hide`
|
|
|
|
AND `network` IN (?, ?, ?, ?)
|
|
|
|
AND ((`last_contact` >= `last_failure`) OR (`updated` >= `last_failure`))
|
|
|
|
AND (`url` LIKE ? OR `name` LIKE ? OR `location` LIKE ?
|
|
|
|
OR `addr` LIKE ? OR `about` LIKE ? OR `keywords` LIKE ?)
|
|
|
|
AND `community` = ?',
|
|
|
|
Protocol::ACTIVITYPUB, Protocol::DFRN, $ostatus, $diaspora,
|
|
|
|
$wildcard, $wildcard, $wildcard,
|
|
|
|
$wildcard, $wildcard, $wildcard,
|
2019-05-20 19:13:37 +02:00
|
|
|
($type === self::TYPE_FORUM),
|
2019-05-20 18:42:27 +02:00
|
|
|
]);
|
|
|
|
|
2019-05-24 14:13:36 +02:00
|
|
|
$resultList = new ResultList($start, $itemPage, $count);
|
|
|
|
|
2019-05-20 18:42:27 +02:00
|
|
|
if (empty($count)) {
|
2019-05-24 14:13:36 +02:00
|
|
|
return $resultList;
|
2019-05-20 18:42:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$data = DBA::select('gcontact', ['nurl'], [
|
|
|
|
'NOT `hide`
|
|
|
|
AND `network` IN (?, ?, ?, ?)
|
|
|
|
AND ((`last_contact` >= `last_failure`) OR (`updated` >= `last_failure`))
|
|
|
|
AND (`url` LIKE ? OR `name` LIKE ? OR `location` LIKE ?
|
|
|
|
OR `addr` LIKE ? OR `about` LIKE ? OR `keywords` LIKE ?)
|
|
|
|
AND `community` = ?',
|
|
|
|
Protocol::ACTIVITYPUB, Protocol::DFRN, $ostatus, $diaspora,
|
|
|
|
$wildcard, $wildcard, $wildcard,
|
|
|
|
$wildcard, $wildcard, $wildcard,
|
2019-05-20 19:13:37 +02:00
|
|
|
($type === self::TYPE_FORUM),
|
2019-05-20 18:42:27 +02:00
|
|
|
], [
|
|
|
|
'group_by' => ['nurl', 'updated'],
|
2019-05-20 19:19:57 +02:00
|
|
|
'limit' => [$start, $itemPage],
|
|
|
|
'order' => ['updated' => 'DESC']
|
2019-05-20 18:42:27 +02:00
|
|
|
]);
|
|
|
|
|
|
|
|
if (!DBA::isResult($data)) {
|
2019-05-24 14:13:36 +02:00
|
|
|
return $resultList;
|
2019-05-20 18:42:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
while ($row = DBA::fetch($data)) {
|
|
|
|
if (PortableContact::alternateOStatusUrl($row["nurl"])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$urlParts = parse_url($row["nurl"]);
|
|
|
|
|
|
|
|
// Ignore results that look strange.
|
|
|
|
// For historic reasons the gcontact table does contain some garbage.
|
|
|
|
if (!empty($urlParts['query']) || !empty($urlParts['fragment'])) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$contact = Contact::getDetailsByURL($row["nurl"], local_user());
|
|
|
|
|
|
|
|
if ($contact["name"] == "") {
|
|
|
|
$contact["name"] = end(explode("/", $urlParts["path"]));
|
|
|
|
}
|
|
|
|
|
|
|
|
$result = new ContactResult(
|
|
|
|
$contact["name"],
|
|
|
|
$contact["addr"],
|
|
|
|
$contact["addr"],
|
|
|
|
$contact["url"],
|
|
|
|
$contact["photo"],
|
|
|
|
$contact["network"],
|
|
|
|
$contact["cid"],
|
|
|
|
$contact["zid"],
|
|
|
|
$contact["keywords"]
|
|
|
|
);
|
|
|
|
|
|
|
|
$resultList->addResult($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
DBA::close($data);
|
|
|
|
|
|
|
|
// Add found profiles from the global directory to the local directory
|
|
|
|
Worker::add(PRIORITY_LOW, 'DiscoverPoCo', "dirsearch", urlencode($search));
|
|
|
|
|
|
|
|
return $resultList;
|
|
|
|
}
|
|
|
|
}
|