]> git.mxchange.org Git - friendica.git/blobdiff - mod/match.php
Merge pull request #11466 from atjn/contribute
[friendica.git] / mod / match.php
index 7773636420658cc015c2db7a4076d5ad9e40b589..02ee0c3339241bc2a5a490a5238cf3d8695da6ab 100644 (file)
 <?php
-include_once('include/text.php');
+/**
+ * @copyright Copyright (C) 2010-2022, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
-function match_content(&$a) {
+use Friendica\App;
+use Friendica\Content\Widget;
+use Friendica\Core\Renderer;
+use Friendica\Core\Search;
+use Friendica\Database\DBA;
+use Friendica\DI;
+use Friendica\Model\Contact;
+use Friendica\Model\Profile;
+use Friendica\Module\Contact as ModuleContact;
 
-       $o = '';
-       if(! local_user())
-               return;
+/**
+ * Controller for /match.
+ *
+ * It takes keywords from your profile and queries the directory server for
+ * matching keywords from other profiles.
+ *
+ * @param App $a App
+ *
+ * @return string
+ * @throws ImagickException
+ * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+ * @throws Exception
+ */
+function match_content(App $a)
+{
+       if (!local_user()) {
+               return '';
+       }
+
+       DI::page()['aside'] .= Widget::findPeople();
+       DI::page()['aside'] .= Widget::follow();
+
+       $_SESSION['return_path'] = DI::args()->getCommand();
 
-       $_SESSION['return_url'] = $a->get_baseurl() . '/' . $a->cmd;
+       $profile = Profile::getByUID(local_user());
 
-       $o .= replace_macros(get_markup_template("section_title.tpl"),array(
-               '$title' => t('Profile Match')
-       ));
+       if (!DBA::isResult($profile)) {
+               return '';
+       }
+       if (!$profile['pub_keywords'] && (!$profile['prv_keywords'])) {
+               notice(DI::l10n()->t('No keywords to match. Please add keywords to your profile.'));
+               return '';
+       }
 
-       $r = q("SELECT `pub_keywords`, `prv_keywords` FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
-               intval(local_user())
-       );
-       if(! count($r))
-               return; 
-       if(! $r[0]['pub_keywords'] && (! $r[0]['prv_keywords'])) {
-               notice( t('No keywords to match. Please add keywords to your default profile.') . EOL);
-               return;
+       $params = [];
+       $tags = trim($profile['pub_keywords'] . ' ' . $profile['prv_keywords']);
 
+       if (DI::mode()->isMobile()) {
+               $limit = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
+                       DI::config()->get('system', 'itemspage_network_mobile'));
+       } else {
+               $limit = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
+                       DI::config()->get('system', 'itemspage_network'));
        }
 
-       $params = array();
-       $tags = trim($r[0]['pub_keywords'] . ' ' . $r[0]['prv_keywords']);
-       
-       if($tags) {
-               $params['s'] = $tags;
-               if($a->pager['page'] != 1)
-                       $params['p'] = $a->pager['page'];
-                       
-               if(strlen(get_config('system','directory_submit_url')))
-                       $x = post_url('http://dir.friendica.com/msearch', $params);
-               else
-                       $x = post_url($a->get_baseurl() . '/msearch', $params);
-
-               $j = json_decode($x);
-
-               if($j->total) {
-                       $a->set_pager_total($j->total);
-                       $a->set_pager_itemspage($j->items_page);
+       $params['s'] = $tags;
+       $params['n'] = 100;
+
+       $entries = [];
+       foreach ([Search::getGlobalDirectory(), DI::baseUrl()] as $server) {
+               if (empty($server)) {
+                       continue;
                }
 
-               if(count($j->results)) {
-
-
-                       
-                       $tpl = get_markup_template('match.tpl');
-                       foreach($j->results as $jj) {
-                           $match_nurl = normalise_link($jj->url);
-                           $match = q("SELECT `nurl` FROM `contact` WHERE `uid` = '%d' AND nurl='%s' LIMIT 1",
-                               intval(local_user()),
-                               dbesc($match_nurl));
-                           if (!count($match)) {
-                               
-                               $connlnk = $a->get_baseurl() . '/follow/?url=' . $jj->url;
-                               $o .= replace_macros($tpl,array(
-                                       '$url' => zrl($jj->url),
-                                       '$name' => $jj->name,
-                                       '$photo' => proxy_url($jj->photo),
-                                       '$inttxt' => ' ' . t('is interested in:'),
-                                       '$conntxt' => t('Connect'),
-                                       '$connlnk' => $connlnk,
-                                       '$tags' => $jj->tags
-                               ));
-                           }
-                       }
+               $msearch = json_decode(DI::httpClient()->post($server . '/msearch', $params)->getBody());
+               if (!empty($msearch)) {
+                       $entries = match_get_contacts($msearch, $entries, $limit);
                }
-               else {
-                       info( t('No matches') . EOL);
-               }               
+       }
 
+       if (empty($entries)) {
+               info(DI::l10n()->t('No matches'));
        }
 
-       $o .= cleardiv();
-       $o .= paginate($a);
+       $tpl = Renderer::getMarkupTemplate('viewcontact_template.tpl');
+       $o = Renderer::replaceMacros($tpl, [
+               '$title'    => DI::l10n()->t('Profile Match'),
+               '$contacts' => array_slice($entries, 0, $limit),
+       ]);
+
        return $o;
 }
+
+function match_get_contacts($msearch, $entries, $limit)
+{
+       if (empty($msearch->results)) {
+               return $entries;
+       }
+
+       foreach ($msearch->results as $profile) {
+               if (!$profile) {
+                       continue;
+               }
+
+               // Already known contact
+               $contact = Contact::getByURL($profile->url, null, ['rel'], local_user());
+               if (!empty($contact) && in_array($contact['rel'], [Contact::FRIEND, Contact::SHARING])) {
+                       continue;
+               }
+
+               $contact = Contact::getByURLForUser($profile->url, local_user());
+               if (!empty($contact)) {
+                       $entries[$contact['id']] = ModuleContact::getContactTemplateVars($contact);
+               }
+
+               if (count($entries) == $limit) {
+                       break;
+               }
+       }
+       return $entries;
+}
\ No newline at end of file