Merge pull request #520 from joomdonation/convert_search_weblinks_plugin

Convert Search - Weblinks plugin to service provider
This commit is contained in:
Tuan Pham Ngoc 2023-03-16 17:49:03 +07:00 committed by GitHub
commit 4c2f6f5d7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 109 additions and 50 deletions

View File

@ -49,6 +49,7 @@ class Com_WeblinksInstallerScript
'/language/en-GB/en-GB.pkg_weblinks.sys.ini', '/language/en-GB/en-GB.pkg_weblinks.sys.ini',
'/modules/mod_weblinks/helper.php', '/modules/mod_weblinks/helper.php',
'/modules/mod_weblinks/mod_weblinks.php', '/modules/mod_weblinks/mod_weblinks.php',
'/plugins/search/weblinks/weblinks.php',
]; ];
$folders = [ $folders = [

View File

@ -0,0 +1,50 @@
<?php
/**
* @package Joomla.Plugin
* @subpackage Search.weblinks
*
* @copyright (C) 2023 Open Source Matters, Inc. <https://www.joomla.org>
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/
defined('_JEXEC') or die;
use Joomla\CMS\Extension\PluginInterface;
use Joomla\CMS\Factory;
use Joomla\CMS\Plugin\PluginHelper;
use Joomla\Database\DatabaseInterface;
use Joomla\DI\Container;
use Joomla\DI\ServiceProviderInterface;
use Joomla\Event\DispatcherInterface;
use Joomla\Plugin\Search\Weblinks\Extension\Weblinks;
return new class () implements ServiceProviderInterface {
/**
* Registers the service provider with a DI container.
*
* @param Container $container The DI container.
*
* @return void
*
* @since __DEPLOY_VERSION__
*/
public function register(Container $container)
{
$container->set(
PluginInterface::class,
function (Container $container) {
$app = Factory::getApplication();
$dispatcher = $container->get(DispatcherInterface::class);
$database = $container->get(DatabaseInterface::class);
return new Weblinks(
$dispatcher,
(array) PluginHelper::getPlugin('finder', 'weblinks'),
$app,
$database
);
}
);
}
};

View File

@ -7,37 +7,28 @@
* @license GNU General Public License version 2 or later; see LICENSE.txt * @license GNU General Public License version 2 or later; see LICENSE.txt
*/ */
defined('_JEXEC') or die; namespace Joomla\Plugin\Search\Weblinks\Extension;
use Joomla\CMS\Application\CMSApplicationInterface;
use Joomla\CMS\Language\Multilanguage; use Joomla\CMS\Language\Multilanguage;
use Joomla\CMS\Language\Text; use Joomla\CMS\Language\Text;
use Joomla\CMS\Plugin\CMSPlugin; use Joomla\CMS\Plugin\CMSPlugin;
use Joomla\Component\Search\Administrator\Helper\SearchHelper;
use Joomla\Component\Weblinks\Site\Helper\RouteHelper; use Joomla\Component\Weblinks\Site\Helper\RouteHelper;
use Joomla\Database\DatabaseAwareTrait;
use Joomla\Database\DatabaseInterface;
use Joomla\Database\ParameterType; use Joomla\Database\ParameterType;
use Joomla\Event\DispatcherInterface;
defined('_JEXEC') or die;
/** /**
* Weblinks search plugin. * Weblinks search plugin.
* *
* @since 1.6 * @since 1.6
*/ */
class PlgSearchWeblinks extends CMSPlugin final class Weblinks extends CMSPlugin
{ {
/** use DatabaseAwareTrait;
* Application object
*
* @var \Joomla\CMS\Application\CMSApplicationInterface
* @since 4.0.0
*/
protected $app;
/**
* Database Driver Instance
*
* @var \Joomla\Database\DatabaseDriver
* @since 4.0.0
*/
protected $db;
/** /**
* Load the language file on instantiation. * Load the language file on instantiation.
@ -47,6 +38,22 @@ class PlgSearchWeblinks extends CMSPlugin
*/ */
protected $autoloadLanguage = true; protected $autoloadLanguage = true;
/**
* Constructor
*
* @param DispatcherInterface $dispatcher
* @param array $config
* @param CMSApplicationInterface $application
* @param DatabaseInterface $database
*/
public function __construct(DispatcherInterface $dispatcher, array $config, CMSApplicationInterface $application, DatabaseInterface $database)
{
parent::__construct($dispatcher, $config);
$this->setApplication($application);
$this->setDatabase($database);
}
/** /**
* Determine areas searchable by this plugin. * Determine areas searchable by this plugin.
* *
@ -56,9 +63,9 @@ class PlgSearchWeblinks extends CMSPlugin
*/ */
public function onContentSearchAreas() public function onContentSearchAreas()
{ {
static $areas = array( static $areas = [
'weblinks' => 'PLG_SEARCH_WEBLINKS_WEBLINKS' 'weblinks' => 'PLG_SEARCH_WEBLINKS_WEBLINKS',
); ];
return $areas; return $areas;
} }
@ -80,23 +87,22 @@ class PlgSearchWeblinks extends CMSPlugin
*/ */
public function onContentSearch($text, $phrase = '', $ordering = '', $areas = null) public function onContentSearch($text, $phrase = '', $ordering = '', $areas = null)
{ {
$db = $this->db; $app = $this->getApplication();
$groups = $this->app->getIdentity()->getAuthorisedViewLevels(); $db = $this->getDatabase();
$groups = $app->getIdentity()->getAuthorisedViewLevels();
$searchText = $text; $searchText = $text;
if (is_array($areas)) if (is_array($areas)
&& !array_intersect($areas, array_keys($this->onContentSearchAreas())))
{ {
if (!array_intersect($areas, array_keys($this->onContentSearchAreas()))) return [];
{
return array();
}
} }
$sContent = $this->params->get('search_content', 1); $sContent = $this->params->get('search_content', 1);
$sArchived = $this->params->get('search_archived', 1); $sArchived = $this->params->get('search_archived', 1);
$limit = $this->params->def('search_limit', 50); $limit = $this->params->def('search_limit', 50);
$state = array(); $state = [];
if ($sContent) if ($sContent)
{ {
@ -110,14 +116,14 @@ class PlgSearchWeblinks extends CMSPlugin
if (empty($state)) if (empty($state))
{ {
return array(); return [];
} }
$text = trim($text); $text = trim($text);
if ($text == '') if ($text == '')
{ {
return array(); return [];
} }
$searchWeblinks = Text::_('PLG_SEARCH_WEBLINKS'); $searchWeblinks = Text::_('PLG_SEARCH_WEBLINKS');
@ -125,28 +131,28 @@ class PlgSearchWeblinks extends CMSPlugin
switch ($phrase) switch ($phrase)
{ {
case 'exact': case 'exact':
$text = $db->quote('%' . $db->escape($text, true) . '%', false); $text = $db->quote('%' . $db->escape($text, true) . '%', false);
$wheres2 = array(); $wheres2 = [];
$wheres2[] = 'a.url LIKE ' . $text; $wheres2[] = 'a.url LIKE ' . $text;
$wheres2[] = 'a.description LIKE ' . $text; $wheres2[] = 'a.description LIKE ' . $text;
$wheres2[] = 'a.title LIKE ' . $text; $wheres2[] = 'a.title LIKE ' . $text;
$where = '(' . implode(') OR (', $wheres2) . ')'; $where = '(' . implode(') OR (', $wheres2) . ')';
break; break;
case 'all': case 'all':
case 'any': case 'any':
default: default:
$words = explode(' ', $text); $words = explode(' ', $text);
$wheres = array(); $wheres = [];
foreach ($words as $word) foreach ($words as $word)
{ {
$word = $db->quote('%' . $db->escape($word, true) . '%', false); $word = $db->quote('%' . $db->escape($word, true) . '%', false);
$wheres2 = array(); $wheres2 = [];
$wheres2[] = 'a.url LIKE ' . $word; $wheres2[] = 'a.url LIKE ' . $word;
$wheres2[] = 'a.description LIKE ' . $word; $wheres2[] = 'a.description LIKE ' . $word;
$wheres2[] = 'a.title LIKE ' . $word; $wheres2[] = 'a.title LIKE ' . $word;
$wheres[] = implode(' OR ', $wheres2); $wheres[] = implode(' OR ', $wheres2);
} }
$where = '(' . implode(($phrase == 'all' ? ') AND (' : ') OR ('), $wheres) . ')'; $where = '(' . implode(($phrase == 'all' ? ') AND (' : ') OR ('), $wheres) . ')';
@ -182,21 +188,21 @@ class PlgSearchWeblinks extends CMSPlugin
$caseWhen = ' CASE WHEN '; $caseWhen = ' CASE WHEN ';
$caseWhen .= $query->charLength('a.alias', '!=', '0'); $caseWhen .= $query->charLength('a.alias', '!=', '0');
$caseWhen .= ' THEN '; $caseWhen .= ' THEN ';
$a_id = $query->castAs('CHAR', 'a.id'); $a_id = $query->castAs('CHAR', 'a.id');
$caseWhen .= $query->concatenate(array($a_id, 'a.alias'), ':'); $caseWhen .= $query->concatenate([$a_id, 'a.alias'], ':');
$caseWhen .= ' ELSE '; $caseWhen .= ' ELSE ';
$caseWhen .= $a_id . ' END as slug'; $caseWhen .= $a_id . ' END as slug';
$caseWhen1 = ' CASE WHEN '; $caseWhen1 = ' CASE WHEN ';
$caseWhen1 .= $query->charLength('c.alias', '!=', '0'); $caseWhen1 .= $query->charLength('c.alias', '!=', '0');
$caseWhen1 .= ' THEN '; $caseWhen1 .= ' THEN ';
$c_id = $query->castAs('CHAR', 'c.id'); $c_id = $query->castAs('CHAR', 'c.id');
$caseWhen1 .= $query->concatenate(array($c_id, 'c.alias'), ':'); $caseWhen1 .= $query->concatenate([$c_id, 'c.alias'], ':');
$caseWhen1 .= ' ELSE '; $caseWhen1 .= ' ELSE ';
$caseWhen1 .= $c_id . ' END as catslug'; $caseWhen1 .= $c_id . ' END as catslug';
$query->select('a.title AS title, a.created AS created, a.url, a.description AS text, ' . $caseWhen . "," . $caseWhen1) $query->select('a.title AS title, a.created AS created, a.url, a.description AS text, ' . $caseWhen . "," . $caseWhen1)
->select($query->concatenate(array($db->quote($searchWeblinks), 'c.title'), " / ") . ' AS section') ->select($query->concatenate([$db->quote($searchWeblinks), 'c.title'], " / ") . ' AS section')
->select('\'1\' AS browsernav') ->select('\'1\' AS browsernav')
->from('#__weblinks AS a') ->from('#__weblinks AS a')
->join('INNER', '#__categories as c ON c.id = a.catid') ->join('INNER', '#__categories as c ON c.id = a.catid')
@ -207,9 +213,10 @@ class PlgSearchWeblinks extends CMSPlugin
->order($order); ->order($order);
// Filter by language. // Filter by language.
if ($this->app->isClient('site') && Multilanguage::isEnabled())
if ($app->isClient('site') && Multilanguage::isEnabled())
{ {
$languages = [$this->app->getLanguage()->getTag(), '*']; $languages = [$app->getLanguage()->getTag(), '*'];
$query->whereIn($db->quoteName('a.language'), $languages, ParameterType::STRING) $query->whereIn($db->quoteName('a.language'), $languages, ParameterType::STRING)
->whereIn($db->quoteName('c.language'), $languages, ParameterType::STRING); ->whereIn($db->quoteName('c.language'), $languages, ParameterType::STRING);
} }
@ -217,7 +224,7 @@ class PlgSearchWeblinks extends CMSPlugin
$db->setQuery($query, 0, $limit); $db->setQuery($query, 0, $limit);
$rows = $db->loadObjectList(); $rows = $db->loadObjectList();
$return = array(); $return = [];
if ($rows) if ($rows)
{ {
@ -228,7 +235,7 @@ class PlgSearchWeblinks extends CMSPlugin
foreach ($rows as $weblink) foreach ($rows as $weblink)
{ {
if (SearchHelper::checkNoHTML($weblink, $searchText, array('url', 'text', 'title'))) if (\searchHelper::checkNoHTML($weblink, $searchText, ['url', 'text', 'title']))
{ {
$return[] = $weblink; $return[] = $weblink;
} }

View File

@ -9,6 +9,7 @@
<authorUrl>www.joomla.org</authorUrl> <authorUrl>www.joomla.org</authorUrl>
<version>##VERSION##</version> <version>##VERSION##</version>
<description>PLG_SEARCH_WEBLINKS_XML_DESCRIPTION</description> <description>PLG_SEARCH_WEBLINKS_XML_DESCRIPTION</description>
<namespace path="src">Joomla\Plugin\Search\Weblinks</namespace>
<files> <files>
##FILES## ##FILES##
</files> </files>