]> git.mxchange.org Git - friendica.git/blob - mod/match.php
75728b7043e9f28f49b4af769f15da31e7266da8
[friendica.git] / mod / match.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 use Friendica\App;
23 use Friendica\Content\Widget;
24 use Friendica\Core\Renderer;
25 use Friendica\Core\Search;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28 use Friendica\Model\Contact;
29 use Friendica\Model\Profile;
30
31 /**
32  * Controller for /match.
33  *
34  * It takes keywords from your profile and queries the directory server for
35  * matching keywords from other profiles.
36  *
37  * @param App $a App
38  *
39  * @return string
40  * @throws ImagickException
41  * @throws \Friendica\Network\HTTPException\InternalServerErrorException
42  * @throws Exception
43  */
44 function match_content(App $a)
45 {
46         if (!local_user()) {
47                 return '';
48         }
49
50         DI::page()['aside'] .= Widget::findPeople();
51         DI::page()['aside'] .= Widget::follow();
52
53         $_SESSION['return_path'] = DI::args()->getCommand();
54
55         $profile = Profile::getByUID(local_user());
56
57         if (!DBA::isResult($profile)) {
58                 return '';
59         }
60         if (!$profile['pub_keywords'] && (!$profile['prv_keywords'])) {
61                 notice(DI::l10n()->t('No keywords to match. Please add keywords to your profile.'));
62                 return '';
63         }
64
65         $params = [];
66         $tags = trim($profile['pub_keywords'] . ' ' . $profile['prv_keywords']);
67
68         $params['s'] = $tags;
69         $params['n'] = 100;
70
71         if (strlen(DI::config()->get('system', 'directory'))) {
72                 $host = Search::getGlobalDirectory();
73         } else {
74                 $host = DI::baseUrl();
75         }
76
77         $msearch_json = DI::httpRequest()->post($host . '/msearch', $params)->getBody();
78
79         $msearch = json_decode($msearch_json);
80
81         $start = $_GET['start'] ?? 0;
82         $entries = [];
83         $paginate = '';
84
85         if (!empty($msearch->results)) {
86                 for ($i = $start;count($entries) < 10 && $i < $msearch->total; $i++) {
87                         $profile = $msearch->results[$i];
88
89                         // Already known contact
90                         if (!$profile || Contact::getIdForURL($profile->url, local_user(), false)) {
91                                 continue;
92                         }
93
94                         $contact = Contact::getByURL($profile->url);
95                         if (!empty($contact)) {
96                                 $entries[] = Contact::getTemplateData($contact, $i);
97                         }
98                 }
99
100                 $data = [
101                         'class' => 'pager',
102                         'first' => [
103                                 'url'   => 'match',
104                                 'text'  => DI::l10n()->t('first'),
105                                 'class' => 'previous' . ($start == 0 ? 'disabled' : '')
106                         ],
107                         'next'  => [
108                                 'url'   => 'match?start=' . $i,
109                                 'text'  => DI::l10n()->t('next'),
110                                 'class' =>  'next' . ($i >= $msearch->total ? ' disabled' : '')
111                         ]
112                 ];
113
114                 $tpl = Renderer::getMarkupTemplate('paginate.tpl');
115                 $paginate = Renderer::replaceMacros($tpl, ['pager' => $data]);
116         }
117
118         if (empty($entries)) {
119                 info(DI::l10n()->t('No matches'));
120         }
121
122         $tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
123         $o = Renderer::replaceMacros($tpl, [
124                 '$title'    => DI::l10n()->t('Profile Match'),
125                 '$contacts' => $entries,
126                 '$paginate' => $paginate
127         ]);
128
129         return $o;
130 }