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