materio_search_api.pages.inc 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. <?php
  2. /**
  3. * materiobase_search_autocomplete_dbselect()
  4. *
  5. * inspired by taxonomy_autocomplete()
  6. *
  7. * OBSOLETE : this fonction use a direct dbselect request to provide results forautocomplete
  8. *
  9. */
  10. function materio_search_api_autocomplete_dbselect($typed = ''){
  11. // If the request has a '/' in the search text, then the menu system will have
  12. // split it into multiple arguments, recover the intended $tags_typed.
  13. $args = func_get_args();
  14. $typed = implode('/', $args);
  15. /*
  16. TODO riche serach engine + \\ etc gmail like
  17. */
  18. if ($typed != '') {
  19. // Part of the criteria for the query come from the field's own settings.
  20. $vids = array();
  21. $vocabularies = taxonomy_vocabulary_get_names();
  22. foreach ($vocabularies as $voc) {
  23. $vids[] = $voc->vid;
  24. }
  25. $query = db_select('taxonomy_term_data', 't');
  26. $query->addTag('translatable');
  27. $query->addTag('term_access');
  28. // Select rows that match by term name.
  29. $tags_return = $query
  30. ->fields('t', array('tid', 'name'))
  31. ->condition('t.vid', $vids)
  32. ->condition('t.name', '%' . db_like($typed) . '%', 'LIKE')
  33. ->range(0, 10)
  34. ->execute()
  35. ->fetchAllKeyed();
  36. $term_matches = array();
  37. foreach ($tags_return as $tid => $name) {
  38. $n = $name;
  39. // Term names containing commas or quotes must be wrapped in quotes.
  40. // if (strpos($name, ',') !== FALSE || strpos($name, '"') !== FALSE) {
  41. // $n = '"' . str_replace('"', '""', $name) . '"';
  42. // }
  43. $term_matches[$n] = check_plain($name);
  44. }
  45. }
  46. drupal_json_output($term_matches);
  47. }
  48. /**
  49. * materio_search_api_autocomplete_searchapi($typed = '')
  50. *
  51. * GOOD one using searchapi (SOLR)
  52. */
  53. function materio_search_api_autocomplete_searchapi($typed = ''){
  54. // If the request has a '/' in the search text, then the menu system will have
  55. // split it into multiple arguments, recover the intended $tags_typed.
  56. $args = func_get_args();
  57. $typed = implode('/', $args);
  58. // dsm($typed, 'typed');
  59. if ($typed != '') {
  60. // search for patterns like key -another key +lastkey
  61. // and provide auto completion for the last key
  62. preg_match_all('/\s?[\+|-]?[^\s]+/', $typed, $adv_search_q);
  63. // dsm($adv_search_q, "adv_search_q");
  64. preg_match('/^(\+|-)?(.*)$/', trim(array_pop($adv_search_q[0])), $last);
  65. // dsm($last, "last");
  66. $tosearch = isset($last[2]) ? $last[2] : $typed;
  67. // build the query
  68. global $language;
  69. $index_machine_name = variable_get('autocompletesearchindex_'.$language->language, -1);
  70. $query = search_api_query($index_machine_name);
  71. // $query_filter = $query->createFilter();
  72. // $query_filter->condition('name', $tosearch);
  73. // $query_filter->condition('type', 'article');
  74. // $query->filter($query_filter);
  75. $query->keys($tosearch);
  76. $tags_return = $query->execute();
  77. // dsm($tags_return, '$tags_return');
  78. if($tags_return['result count']){
  79. $term_matches = array();
  80. $index = search_api_index_load($index_machine_name);
  81. $delta = 0;
  82. foreach ($index->loadItems(array_keys($tags_return['results'])) as $item) {
  83. //dsm($item, '$item');
  84. //$term_matches[$item->tid] = check_plain($item->name);
  85. // $term_matches[check_plain($item->name)] = check_plain($item->name);
  86. // TODO: leave tags with nodes
  87. $itemname = $item->name;
  88. $term_matches[trim(implode(' ', $adv_search_q[0]).' "'.$last[1].$itemname).'"'] = check_plain($itemname);
  89. $delta++;
  90. if($delta > 15)
  91. break;
  92. }
  93. drupal_json_output($term_matches);
  94. }else{
  95. drupal_json_output(array());
  96. }
  97. }else{
  98. return;
  99. }
  100. // dsm($term_matches, 'term_matches');
  101. // return 'debug mode of materio_search_api_autocomplete_searchapi';
  102. }
  103. /**
  104. * materio_search_api_results_search()
  105. *
  106. *
  107. */
  108. function materio_search_api_results_search(){
  109. //dsm("materio_search_api_results_search");
  110. // retreive typed words separated by slashes as a sentence
  111. $args = func_get_args();
  112. // dsm($args, 'args');
  113. $keys = $args;
  114. // $keys = explode(' ',implode(' ',$args));
  115. // dsm($keys, 'keys');
  116. $typed = implode(' ', $keys);
  117. // dsm($typed, 'typed');
  118. # with parse mode terms we use a single string of words seperated by spaces wich will be OR or AND regarding the conjunction query option
  119. # had to add q.op = OR on solr requesthandler on solrconfig.xml
  120. // remove query page params
  121. preg_match_all('/\?page=([0-9]+)/', $typed, $pages);
  122. //dsm($pages, '$pages');
  123. if($pages[0]){
  124. $typed = str_replace($pages[0][0], '', $typed);
  125. }
  126. // dsm($typed, 'typed');
  127. if ($typed) {
  128. global $language;
  129. global $user;
  130. # retrieve viewmode and then use it to define the query range
  131. $viewmode = isset($user->data['materiosearchapi_viewmode'])
  132. ? $user->data['materiosearchapi_viewmode']
  133. : variable_get('defaultviewmode', 'full');
  134. $limit = variable_get($viewmode.'_limite', '10');
  135. $offset = pager_find_page() * $limit; //$page*$limit;//
  136. # Normal search
  137. if(user_access('use materio search api')){
  138. // dsm('normal search');
  139. $results = msa_solrquery_materiauxbreves($typed, $language, $user, $offset, $limit);
  140. }
  141. # only breves search (+ related materials)
  142. # not used anymore as free users not exists anymore
  143. else if(user_access('use materio search api for breves')){
  144. // dsm('limited search');
  145. $results = msa_solrquery_breves($typed, $language, $user, $offset, $limit);
  146. }
  147. // for all case
  148. $ret['results']['#results'] = $results;
  149. $ret['results']['#items'] = $results['items'];
  150. $ret['results']['#index'] = $results['index'];
  151. $ret['results']['#theme'] = 'materio_search_api_results';
  152. $ret['results']['#keys'] = $typed;
  153. $ret['results']['#view_mode'] = $viewmode;
  154. // page title
  155. $page_title = $typed;
  156. drupal_set_title('<i class="icon-materio-search"></i>'.check_plain($page_title), PASS_THROUGH);
  157. // render results
  158. if(isset($results)){
  159. // Load pager.
  160. // if ($results['result count'] > $page->options['per_page']) {
  161. pager_default_initialize($results['result count'], $limit);
  162. $ret['results']['#pager'] = theme('pager');
  163. // }
  164. if (!empty($results['ignored'])) {
  165. drupal_set_message(
  166. t('The following search keys are too short or too common and were therefore ignored: "@list".',
  167. array( '@list' => implode(t('", "'), $results['ignored']) ) ),
  168. 'warning'
  169. );
  170. }
  171. if (!empty($results['warnings'])) {
  172. foreach ($results['warnings'] as $warning) {
  173. drupal_set_message($warning, 'warning');
  174. }
  175. }
  176. }
  177. }
  178. // dsm($ret, 'ret');
  179. return $ret;
  180. }
  181. function msa_solrquery_materiauxbreves($keys, $language, $user, $offset, $limit){
  182. // dsm($offset, 'offset');
  183. // dsm($limit, 'limit');
  184. // -- communs --//
  185. # define default bundle option (materiaux, breves)
  186. $default_bundles = array();
  187. if(isset($taxo_index->options['data_alter_callbacks']['search_api_alter_bundle_filter']['settings']['bundles'])){
  188. $indexed_bundles = $taxo_index->options['data_alter_callbacks']['search_api_alter_bundle_filter']['settings']['bundles'];
  189. foreach ($indexed_bundles as $bundle) { $default_bundles[] = $bundle; }
  190. }
  191. # choose solr query bundle option
  192. $bundles_filter = isset($user->data['materiosearchapi_bundlesfilter'])
  193. ? $user->data['materiosearchapi_bundlesfilter']
  194. : $default_bundles;
  195. // -- -- taxo search AND -- -- //
  196. # define search api solr index
  197. $taxo_index_machine_name = variable_get('taxonomysearchindex_'.$language->language, -1);
  198. $taxo_index = search_api_index_load($taxo_index_machine_name);
  199. # choose solr query options
  200. $query_options = array('conjunction'=>'AND', 'parse mode'=>'terms');
  201. #create the solr query for taxonomy search
  202. $taxo_query = search_api_query($taxo_index_machine_name, $query_options)
  203. ->keys($keys);
  204. # apply bundle options to solr query if usefull
  205. if(count($bundles_filter)){
  206. $filter = $taxo_query->createFilter('OR');
  207. foreach ($bundles_filter as $type)
  208. $filter->condition('type', $type, '=');
  209. $taxo_query->filter($filter);
  210. }
  211. // $query->setOption('search_api_bypass_access', true);
  212. # add user access solr query option
  213. $taxo_query->setOption('search_api_access_account', $user);
  214. $taxo_query->setOption('q.op', 'OR');
  215. #execute first time to get the all items, to be able to filter the full text research
  216. $taxo_total_results = $taxo_query->execute();
  217. // dsm($taxo_total_results, "taxo total results");
  218. # add range to retriev the real current results
  219. $taxo_query->range($offset, $limit);
  220. # execute solr query and record results
  221. $taxo_results = $taxo_query->execute();
  222. // dsm($taxo_results, "taxo results");
  223. $taxo_items = $taxo_index->loadItems(array_keys($taxo_results['results']));
  224. // dsm($taxo_items, 'taxo items');
  225. $taxo_results['items'] = $taxo_items;
  226. $taxo_results['index'] = $taxo_index;//search_api_index_load($index_machine_name);
  227. // -- -- full text search -- -- //
  228. #define search api solr index
  229. $fulltxt_index_machine_name = variable_get('fulltextsearchindex_'.$language->language, -1);
  230. $fulltxt_index = search_api_index_load($fulltxt_index_machine_name);
  231. #then calculate the good offset and limit for the complementary search
  232. $fulltxt_offset = $offset - $taxo_results['result count'];
  233. # choose solr query options
  234. $query_options = array('conjunction'=>'OR', 'parse mode'=>'terms');
  235. #create the solr query for taxonomy search
  236. $fulltxt_query = search_api_query($fulltxt_index_machine_name, $query_options)
  237. ->keys($keys)
  238. ->range(($fulltxt_offset > 0 ? $fulltxt_offset : 0), $limit); // change offset to match with the first query (taxonomy)
  239. # apply bundle options to solr query if usefull
  240. if(count($bundles_filter)){
  241. $filter = $fulltxt_query->createFilter('OR');
  242. foreach ($bundles_filter as $type)
  243. $filter->condition('type', $type, '=');
  244. $fulltxt_query->filter($filter);
  245. }
  246. # filter to remove precedent search query
  247. # !!!!!! THIS WILL NOT WORK, IT DOESN'T KNOW THE ITEMS FROM PAGES BEFORE THE CURRENT ONE ...
  248. $nid_filter = $fulltxt_query->createFilter('AND');
  249. foreach ($taxo_total_results['results'] as $nid => $item)
  250. $nid_filter->condition('nid', $nid, '<>');
  251. $fulltxt_query->filter($nid_filter);
  252. # add user access solr query option
  253. $fulltxt_query->setOption('search_api_access_account', $user);
  254. # execute solr query and record results
  255. $fulltxt_results = $fulltxt_query->execute();
  256. // dsm($fulltxt_results, "fulltxt_results");
  257. # add the full text result count to the taxo result to have the total of items
  258. $taxo_results['result count'] += $fulltxt_results['result count'];
  259. # if we are at the end of the first search results list
  260. if($fulltxt_offset >= 0){
  261. $fulltxt_items = $fulltxt_index->loadItems(array_keys($fulltxt_results['results']));
  262. // dsm($fulltxt_items, 'full txt items');
  263. $taxo_results['items'] += $fulltxt_items;
  264. }
  265. # TODO: cache the results with cache graceful : http://drupal.org/project/cache_graceful
  266. return $taxo_results;
  267. }
  268. function msa_solrquery_breves($typed, $language, $user, $offset, $limit){
  269. $index_machine_name = variable_get('brevessearchindex_'.$language->language, -1);
  270. // dsm($index_machine_name, '$index_machine_name');
  271. $index = search_api_index_load($index_machine_name);
  272. # choose solr query options
  273. $query_options = array('conjunction'=>'OR', 'parse mode'=>'direct');
  274. #create the solr query
  275. $query = search_api_query($index_machine_name, $query_options)
  276. ->keys($typed)
  277. ->range($offset, $limit);
  278. // $query->setOption('search_api_bypass_access', true);
  279. # add user access solr query option
  280. $query->setOption('search_api_access_account', $user);
  281. # execute solr query and record results
  282. $results = $query->execute();
  283. // dsm($results, 'results');
  284. $results['index'] = $index;//search_api_index_load($index_machine_name);
  285. #could
  286. $could_index_machine_name = variable_get('fulltextsearchindex_'.$language->language, -1);
  287. $could_index = search_api_index_load($could_index_machine_name);
  288. # in case of free user search, run a real search to indicate how much items you could find
  289. $could_query = search_api_query($could_index_machine_name, array('conjunction'=>'OR', 'parse mode'=>'direct'))
  290. ->keys($typed);
  291. $could_results = $could_query->execute();
  292. // dsm($could_results, 'could_results');
  293. $results['could results'] = $could_results;
  294. # add items : breve + materials wich are in the could result
  295. $items = array();
  296. $breves = $index->loadItems(array_keys($results['results']));
  297. foreach ($breves as $nid => $breve) {
  298. if(!node_access('view', $breve))
  299. continue;
  300. $items[] = $breve;
  301. $materiaux = field_get_items('node',$breve,'field_materiau_ref');
  302. // dsm($materiaux, 'materiaux');
  303. if($materiaux){
  304. foreach ($materiaux as $value) {
  305. if(!isset($could_results['results'][$value['target_id']]))
  306. continue;
  307. $materiau = node_load($value['target_id']);
  308. if(node_access('view', $materiau))
  309. $items[] = $materiau;
  310. }
  311. }
  312. }
  313. $results['items'] = $items;
  314. $results['breves count'] = $results['result count'];
  315. $results['result count'] = count($items);
  316. // dsm($results, "results");
  317. # TODO: cache the results with cache graceful : http://drupal.org/project/cache_graceful
  318. return $results;
  319. }
  320. /**
  321. * materio_search_api_actuality()
  322. *
  323. */
  324. # only breves search (+ related materials)
  325. # NOT USED ANYMORE as free users not exists anymore
  326. function materio_search_api_actuality(){
  327. global $user;
  328. if(isset($user->roles[1])){
  329. $date_limit = strtotime('-6 month');
  330. // dsm(date('d m y', $date_limit));
  331. }
  332. # retrieve viewmode and then use it to define the query range
  333. $viewmode = user_access('access to materio database')
  334. ? isset($user->data['materiosearchapi_viewmode'])
  335. ? $user->data['materiosearchapi_viewmode']
  336. : variable_get('defaultviewmode', 'cardmedium')
  337. : 'cardbig';
  338. $limit = 10;//variable_get($viewmode.'_limite', '10');
  339. $offset = pager_find_page() * $limit;
  340. // dsm($offset);
  341. $query = new EntityFieldQuery;
  342. $query
  343. ->entityCondition('entity_type', 'node')
  344. ->propertyCondition('status', 1)
  345. ->entityCondition('bundle', array('breve'))
  346. ->propertyOrderBy('created', 'DESC')
  347. ->range($offset,$limit);
  348. if(isset($user->roles[1])){
  349. $query->propertyCondition('created', $date_limit, '>');
  350. }
  351. $result = $query->execute();
  352. // dsm($result, '$result');
  353. $count_query = new EntityFieldQuery;
  354. $count_query
  355. ->entityCondition('entity_type', 'node')
  356. ->propertyCondition('status', 1)
  357. ->entityCondition('bundle', array('breve'));
  358. // dsm($count, 'count');
  359. if(isset($user->roles[1])){
  360. $count_query->propertyCondition('created', $date_limit, '>');
  361. }
  362. $count = $count_query->count()->execute();
  363. pager_default_initialize($count, $limit);
  364. $items = array();
  365. if(isset($result['node'])){
  366. foreach ($result['node'] as $nid => $n) {
  367. $breve = node_load($nid);
  368. if(!node_access('view', $breve))
  369. continue;
  370. $items[] = $breve;
  371. // if(user_access('access to materio database')){
  372. $materiaux = field_get_items('node',$breve,'field_materiau_ref');
  373. // dsm($materiaux, 'materiaux');
  374. if($materiaux){
  375. foreach ($materiaux as $value) {
  376. $materiau = node_load($value['target_id']);
  377. if(node_access('view', $materiau))
  378. $items[] = $materiau;
  379. }
  380. }
  381. // }
  382. }
  383. }
  384. // drupal_set_title(t('Actualities'));
  385. drupal_set_title(t(''));
  386. return theme('materio_search_api_actuality', array(
  387. 'items' => $items,
  388. 'view_mode' => $viewmode,
  389. 'count' => $count,
  390. 'pager' => theme('pager'),
  391. ));
  392. }
  393. function materio_search_api_viewmode_change($vm){
  394. //dsm($vm, 'materio_search_api_viewmode_change');
  395. $rep = _materio_search_api_change_viewmode($vm);
  396. //return 'debug mode for materio_search_api_viewmode_change';
  397. // drupal_json_output($rep);
  398. drupal_goto();
  399. }