mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-10-21 19:16:23 +08:00
114 lines
2.4 KiB
PHP
114 lines
2.4 KiB
PHP
<?php
|
|
|
|
class OwnCloudSuggestions implements \RainLoop\Providers\Suggestions\ISuggestions
|
|
{
|
|
/**
|
|
* @var \MailSo\Log\Logger
|
|
*/
|
|
protected $oLogger;
|
|
|
|
/**
|
|
* @param \RainLoop\Model\Account $oAccount
|
|
* @param string $sQuery
|
|
* @param int $iLimit = 20
|
|
*
|
|
* @return array
|
|
*/
|
|
public function Process(\RainLoop\Model\Account $oAccount, string $sQuery, int $iLimit = 20): array
|
|
{
|
|
$iInputLimit = $iLimit;
|
|
$aResult = array();
|
|
$sQuery = \trim($sQuery);
|
|
|
|
try
|
|
{
|
|
if ('' === $sQuery || !$oAccount || !\RainLoop\Utils::IsOwnCloudLoggedIn())
|
|
{
|
|
return $aResult;
|
|
}
|
|
|
|
$aParams = array('FN', 'NICKNAME', 'TITLE', 'EMAIL');
|
|
if (\class_exists('OC') && isset(\OC::$server) && \method_exists(\OC::$server, 'getContactsManager'))
|
|
{
|
|
$cm = \OC::$server->getContactsManager();
|
|
if (!$cm && !$cm->isEnabled())
|
|
{
|
|
return $aResult;
|
|
}
|
|
|
|
$aSearchResult = $cm->search($sQuery, $aParams);
|
|
}
|
|
else if (\class_exists('OCP\Contacts') && \OCP\Contacts::isEnabled())
|
|
{
|
|
$aSearchResult = \OCP\Contacts::search($sQuery, $aParams);
|
|
}
|
|
else
|
|
{
|
|
return $aResult;
|
|
}
|
|
|
|
//$this->oLogger->WriteDump($aSearchResult);
|
|
|
|
$aHashes = array();
|
|
if (\is_array($aSearchResult) && 0 < \count($aSearchResult))
|
|
{
|
|
foreach ($aSearchResult as $aContact)
|
|
{
|
|
if (0 >= $iLimit)
|
|
{
|
|
break;
|
|
}
|
|
|
|
$sUid = empty($aContact['UID']) ? '' : $aContact['UID'];
|
|
if (!empty($sUid))
|
|
{
|
|
$mEmails = isset($aContact['EMAIL']) ? $aContact['EMAIL'] : '';
|
|
|
|
$sFullName = isset($aContact['FN']) ? \trim($aContact['FN']) : '';
|
|
if (empty($sFullName))
|
|
{
|
|
$sFullName = isset($aContact['NICKNAME']) ? \trim($aContact['NICKNAME']) : '';
|
|
}
|
|
|
|
if (!\is_array($mEmails))
|
|
{
|
|
$mEmails = array($mEmails);
|
|
}
|
|
|
|
foreach ($mEmails as $sEmail)
|
|
{
|
|
$sHash = '"'.$sFullName.'" <'.$sEmail.'>';
|
|
if (!isset($aHashes[$sHash]))
|
|
{
|
|
$aHashes[$sHash] = true;
|
|
$aResult[] = array($sEmail, $sFullName);
|
|
$iLimit--;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
$aResult = \array_slice($aResult, 0, $iInputLimit);
|
|
}
|
|
|
|
unset($aSearchResult, $aHashes);
|
|
}
|
|
catch (\Throwable $oException)
|
|
{
|
|
if ($this->oLogger)
|
|
{
|
|
$this->oLogger->WriteException($oException);
|
|
}
|
|
}
|
|
|
|
return $aResult;
|
|
}
|
|
|
|
/**
|
|
* @param \MailSo\Log\Logger $oLogger
|
|
*/
|
|
public function SetLogger($oLogger)
|
|
{
|
|
$this->oLogger = $oLogger instanceof \MailSo\Log\Logger ? $oLogger : null;
|
|
}
|
|
}
|