/plugins/search/contacts/contacts.php

https://bitbucket.org/kraymitchell/fcd · PHP · 158 lines · 106 code · 18 blank · 34 comment · 11 complexity · 40fd9eb172c74154330a311694373d9b MD5 · raw file

  1. <?php
  2. /**
  3. * @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
  4. * @license GNU General Public License version 2 or later; see LICENSE.txt
  5. */
  6. // no direct access
  7. defined('_JEXEC') or die;
  8. /**
  9. * Contacts Search plugin
  10. *
  11. * @package Joomla.Plugin
  12. * @subpackage Search.contacts
  13. * @since 1.6
  14. */
  15. class plgSearchContacts extends JPlugin
  16. {
  17. /**
  18. * Constructor
  19. *
  20. * @access protected
  21. * @param object $subject The object to observe
  22. * @param array $config An array that holds the plugin configuration
  23. * @since 1.5
  24. */
  25. public function __construct(& $subject, $config)
  26. {
  27. parent::__construct($subject, $config);
  28. $this->loadLanguage();
  29. }
  30. /**
  31. * @return array An array of search areas
  32. */
  33. function onContentSearchAreas()
  34. {
  35. static $areas = array(
  36. 'contacts' => 'PLG_SEARCH_CONTACTS_CONTACTS'
  37. );
  38. return $areas;
  39. }
  40. /**
  41. * Contacts Search method
  42. *
  43. * The sql must return the following fields that are used in a common display
  44. * routine: href, title, section, created, text, browsernav
  45. * @param string Target search string
  46. * @param string matching option, exact|any|all
  47. * @param string ordering option, newest|oldest|popular|alpha|category
  48. */
  49. function onContentSearch($text, $phrase='', $ordering='', $areas=null)
  50. {
  51. $db = JFactory::getDbo();
  52. $app = JFactory::getApplication();
  53. $user = JFactory::getUser();
  54. $groups = implode(',', $user->getAuthorisedViewLevels());
  55. if (is_array($areas)) {
  56. if (!array_intersect($areas, array_keys($this->onContentSearchAreas()))) {
  57. return array();
  58. }
  59. }
  60. $sContent = $this->params->get('search_content', 1);
  61. $sArchived = $this->params->get('search_archived', 1);
  62. $limit = $this->params->def('search_limit', 50);
  63. $state = array();
  64. if ($sContent) {
  65. $state[]=1;
  66. }
  67. if ($sArchived) {
  68. $state[]=2;
  69. }
  70. $text = trim($text);
  71. if ($text == '') {
  72. return array();
  73. }
  74. $section = JText::_('PLG_SEARCH_CONTACTS_CONTACTS');
  75. switch ($ordering) {
  76. case 'alpha':
  77. $order = 'a.name ASC';
  78. break;
  79. case 'category':
  80. $order = 'c.title ASC, a.name ASC';
  81. break;
  82. case 'popular':
  83. case 'newest':
  84. case 'oldest':
  85. default:
  86. $order = 'a.name DESC';
  87. }
  88. $text = $db->Quote('%'.$db->escape($text, true).'%', false);
  89. $rows = array();
  90. if (!empty($state)) {
  91. $query = $db->getQuery(true);
  92. //sqlsrv changes
  93. $case_when = ' CASE WHEN ';
  94. $case_when .= $query->charLength('a.alias');
  95. $case_when .= ' THEN ';
  96. $a_id = $query->castAsChar('a.id');
  97. $case_when .= $query->concatenate(array($a_id, 'a.alias'), ':');
  98. $case_when .= ' ELSE ';
  99. $case_when .= $a_id.' END as slug';
  100. $case_when1 = ' CASE WHEN ';
  101. $case_when1 .= $query->charLength('c.alias');
  102. $case_when1 .= ' THEN ';
  103. $c_id = $query->castAsChar('c.id');
  104. $case_when1 .= $query->concatenate(array($c_id, 'c.alias'), ':');
  105. $case_when1 .= ' ELSE ';
  106. $case_when1 .= $c_id.' END as catslug';
  107. $query->select('a.name AS title, \'\' AS created, a.con_position, a.misc, '
  108. .$case_when.','.$case_when1.', '
  109. . $query->concatenate(array("a.name", "a.con_position", "a.misc"), ",").' AS text,'
  110. . $query->concatenate(array($db->Quote($section), "c.title"), " / ").' AS section,'
  111. . '\'2\' AS browsernav');
  112. $query->from('#__contact_details AS a');
  113. $query->innerJoin('#__categories AS c ON c.id = a.catid');
  114. $query->where('(a.name LIKE '. $text .'OR a.misc LIKE '. $text .'OR a.con_position LIKE '. $text
  115. .'OR a.address LIKE '. $text .'OR a.suburb LIKE '. $text .'OR a.state LIKE '. $text
  116. .'OR a.country LIKE '. $text .'OR a.postcode LIKE '. $text .'OR a.telephone LIKE '. $text
  117. .'OR a.fax LIKE '. $text .') AND a.published IN ('.implode(',', $state).') AND c.published=1 '
  118. .'AND a.access IN ('. $groups. ') AND c.access IN ('. $groups. ')' );
  119. $query->group('a.id, a.con_position, a.misc');
  120. $query->order($order);
  121. // Filter by language
  122. if ($app->isSite() && $app->getLanguageFilter()) {
  123. $tag = JFactory::getLanguage()->getTag();
  124. $query->where('a.language in (' . $db->Quote($tag) . ',' . $db->Quote('*') . ')');
  125. $query->where('c.language in (' . $db->Quote($tag) . ',' . $db->Quote('*') . ')');
  126. }
  127. $db->setQuery($query, 0, $limit);
  128. $rows = $db->loadObjectList();
  129. if ($rows) {
  130. foreach($rows as $key => $row) {
  131. $rows[$key]->href = 'index.php?option=com_contact&view=contact&id='.$row->slug.'&catid='.$row->catslug;
  132. $rows[$key]->text = $row->title;
  133. $rows[$key]->text .= ($row->con_position) ? ', '.$row->con_position : '';
  134. $rows[$key]->text .= ($row->misc) ? ', '.$row->misc : '';
  135. }
  136. }
  137. }
  138. return $rows;
  139. }
  140. }