Fixing method signature
[friendica.git/.git] / src / Module / BaseSearchModule.php
1 <?php
2
3 namespace Friendica\Module;
4
5 use Friendica\BaseModule;
6 use Friendica\Content\ContactSelector;
7 use Friendica\Content\Pager;
8 use Friendica\Core\L10n;
9 use Friendica\Core\Renderer;
10 use Friendica\Core\Search;
11 use Friendica\Model;
12 use Friendica\Network\HTTPException;
13 use Friendica\Object\Search\ContactResult;
14 use Friendica\Object\Search\ResultList;
15 use Friendica\Util\Proxy as ProxyUtils;
16 use Friendica\Util\Strings;
17
18 /**
19  * Base class for search modules
20  */
21 class BaseSearchModule extends BaseModule
22 {
23         /**
24          * Performs a search with an optional prefix
25          *
26          * @param string $prefix A optional prefix (e.g. @ or !) for searching
27          *
28          * @return string
29          * @throws HTTPException\InternalServerErrorException
30          * @throws \ImagickException
31          */
32         public static function performSearch($prefix = '')
33         {
34                 $a      = self::getApp();
35                 $config = $a->getConfig();
36
37                 $type = Search::TYPE_ALL;
38
39                 $localSearch = $config->get('system', 'poco_local_search');
40
41                 $search = $prefix . Strings::escapeTags(trim(defaults($_REQUEST, 'search', '')));
42
43                 if (!$search) {
44                         return '';
45                 }
46
47                 $header = '';
48
49                 if (strpos($search, '@') === 0) {
50                         $search  = substr($search, 1);
51                         $type    = Search::TYPE_PEOPLE;
52                         $header  = L10n::t('People Search - %s', $search);
53                         $results = Search::getContactsFromProbe($search);
54                 }
55
56                 if (strpos($search, '!') === 0) {
57                         $search = substr($search, 1);
58                         $type   = Search::TYPE_FORUM;
59                         $header = L10n::t('Forum Search - %s', $search);
60                 }
61
62                 $pager = new Pager($a->query_string);
63
64                 if ($localSearch && empty($results)) {
65                         $pager->setItemsPerPage(80);
66                         $results = Search::getContactsFromLocalDirectory($search, $type, $pager->getStart(), $pager->getItemsPerPage());
67
68                 } elseif (strlen($config->get('system', 'directory')) && empty($results)) {
69                         $results = Search::getContactsFromGlobalDirectory($search, $type, $pager->getPage());
70                         $pager->setItemsPerPage($results->getItemsPage());
71                 }
72
73                 return self::printResult($results, $pager, $header);
74         }
75
76         /**
77          * Prints a human readable search result
78          *
79          * @param ResultList $results
80          * @param Pager      $pager
81          * @param string     $header
82          *
83          * @return string The result
84          * @throws HTTPException\InternalServerErrorException
85          * @throws \ImagickException
86          */
87         protected static function printResult(ResultList $results, Pager $pager, $header = '')
88         {
89                 if (empty($results) || empty($results->getResults())) {
90                         info(L10n::t('No matches') . EOL);
91                         return '';
92                 }
93
94                 $a = self::getApp();
95
96                 $id      = 0;
97                 $entries = [];
98                 foreach ($results->getResults() as $result) {
99
100                         // in case the result is a contact result, add a contact-specific entry
101                         if ($result instanceof ContactResult) {
102
103                                 $alt_text    = '';
104                                 $location    = '';
105                                 $about       = '';
106                                 $accountType = '';
107                                 $photo_menu  = [];
108
109                                 // If We already know this contact then don't show the "connect" button
110                                 if ($result->getCid() > 0 || $result->getPCid() > 0) {
111                                         $connLink = "";
112                                         $connTxt  = "";
113                                         $contact  = Model\Contact::getById(
114                                                 ($result->getCid() > 0) ? $result->getCid() : $result->getPCid()
115                                         );
116
117                                         if (!empty($contact)) {
118                                                 $photo_menu  = Model\Contact::photoMenu($contact);
119                                                 $details     = Contact::getContactTemplateVars($contact);
120                                                 $alt_text    = $details['alt_text'];
121                                                 $location    = $contact['location'];
122                                                 $about       = $contact['about'];
123                                                 $accountType = Model\Contact::getAccountType($contact);
124                                         } else {
125                                                 $photo_menu = [];
126                                         }
127                                 } else {
128                                         $connLink = $a->getBaseURL() . '/follow/?url=' . $result->getUrl();
129                                         $connTxt  = L10n::t('Connect');
130
131                                         $photo_menu['profile'] = [L10n::t("View Profile"), Model\Contact::magicLink($result->getUrl())];
132                                         $photo_menu['follow']  = [L10n::t("Connect/Follow"), $connLink];
133                                 }
134
135                                 $photo = str_replace("http:///photo/", get_server() . "/photo/", $result->getPhoto());
136
137                                 $entry     = [
138                                         'alt_text'     => $alt_text,
139                                         'url'          => Model\Contact::magicLink($result->getUrl()),
140                                         'itemurl'      => $result->getItem(),
141                                         'name'         => $result->getName(),
142                                         'thumb'        => ProxyUtils::proxifyUrl($photo, false, ProxyUtils::SIZE_THUMB),
143                                         'img_hover'    => $result->getTags(),
144                                         'conntxt'      => $connTxt,
145                                         'connlnk'      => $connLink,
146                                         'photo_menu'   => $photo_menu,
147                                         'details'      => $location,
148                                         'tags'         => $result->getTags(),
149                                         'about'        => $about,
150                                         'account_type' => $accountType,
151                                         'network'      => ContactSelector::networkToName($result->getNetwork(), $result->getUrl()),
152                                         'id'           => ++$id,
153                                 ];
154                                 $entries[] = $entry;
155                         }
156                 }
157
158                 $tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
159                 return Renderer::replaceMacros($tpl, [
160                         'title'     => $header,
161                         '$contacts' => $entries,
162                         '$paginate' => $pager->renderFull($results->getTotal()),
163                 ]);
164         }
165 }