123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835 |
- <?php
- function materio_search_api_permission() {
- return array(
- 'use materio search api' => array(
- 'title' => t('Use materio search api'),
- 'description' => t('Use materio search api.'),
- ),
- 'use materio search api for breves' => array(
- 'title' => t('Use materio search api for breves'),
- 'description' => t('Use materio search api for breves.'),
- ),
- 'use materio search api autocomplete' => array(
- 'title' => t('Use materio search api autocomplete'),
- 'description' => t('Use materio search api autocomplete.'),
- ),
- 'use materio search api viewmode selection' => array(
- 'title' => t('Use materio search api viewmode selection'),
- 'description' => t('Use materio search api viewmode selection.'),
- ),
- 'administer materio_search_api' => array(
- 'title' => t('administer Materio search api'),
- 'description' => t('Administer materio search api.'),
- ),
- 'use materio search api filters' => array(
- 'title' => t('use Materio search api filters'),
- 'description' => t('Use materio search api filters.'),
- ),
- );
- }
- function materio_search_api_menu() {
- $items = array();
- $base = array(
- 'type' => MENU_CALLBACK,
- 'file' => 'materio_search_api.pages.inc',
- );
- $items['admin/config/search/search_api/materiosearchapi'] = array(
- 'title' => 'Materio Search Api',
- 'page callback' => 'drupal_get_form',
- 'page arguments' => array('materio_search_api_settings'),
- 'access arguments' => array('administer materio_search_api'),
- 'file' => 'materio_search_api.admin.inc',
- 'type' => MENU_LOCAL_TASK,
- );
- $items['materiosearchapi/autocomplete/dbselect'] = $base+array(
- 'access arguments' => array('use materio search api autocomplete'),
- 'page callback' => 'materio_search_api_autocomplete_dbselect',
- );
- $items['materiosearchapi/autocomplete/searchapi'] = $base+array(
- 'access arguments' => array('use materio search api autocomplete'),
- 'page callback' => 'materio_search_api_autocomplete_searchapi',
- );
- $items['explore'] = $base+array(
-
- 'access callback' => 'materio_search_api_access_search',
- 'page callback' => 'materio_search_api_results_search',
- 'title' => t('Explore'),
-
- );
- $items['actuality'] = $base+array(
-
- 'page callback' => 'materio_search_api_actuality',
-
- 'access callback' => TRUE,
- );
- $items['materiosearchapi/viewmode/change'] = $base+array(
- 'access arguments' => array('use materio search api viewmode selection'),
- 'page callback' => 'materio_search_api_viewmode_change',
- 'page argument' => array(3),
- );
- return $items;
- }
- function materio_search_api_access_search(){
- return user_access('use materio search api for breves') || user_access('use materio search api');
- }
- function materio_search_api_search_api_data_type_info() {
- return array(
- 'edge_n2_kw_text' => array(
- 'name' => t('Fulltext (partial matching)'),
- 'fallback' => 'text',
- 'prefix' => 'tem',
- 'always multiValued' => TRUE,
- ),
- 'edge_n2_kw_mapped_text' => array(
- 'name' => t('Fulltext without accents (partial matching)'),
- 'fallback' => 'text',
- 'prefix' => 'temmap',
- 'always multiValued' => TRUE,
- ),
- );
- }
- function materio_search_api_search_api_solr_dynamic_field_info() {
- return array(
- 'edge_n2_kw_text' => array(
- 'prefix' => 'tem',
- 'always multiValued' => TRUE,
- ),
- 'edge_n2_kw_mapped_text' => array(
- 'prefix' => 'temmap',
- 'always multiValued' => TRUE,
- ),
- );
- }
- function materio_search_api_entity_property_info_alter(&$info){
-
-
- $node_props = &$info['node']['properties'];
- for ($i=1; $i <= 5 ; $i++) {
- $node_props['materio_search_api_onthologie_term_'.$i.'_text'] = array(
- 'type'=>'text',
- 'label'=> t('Main onthologie term '.$i. ' as text (+ synonyms)'),
-
- 'getter callback'=>'materio_search_api_get_onthologie_term_'.$i.'_text',
- );
- }
- $node_props['materio_search_api_onthologie_term_others_text'] = array(
- 'type'=>'list<text>',
- 'label'=> t('Others onthologie terms as text (+ synonyms)'),
-
- 'getter callback'=>'materio_search_api_get_taxonomy_terms_others_text',
- );
- $node_props['materio_search_api_taglibres_text'] = array(
- 'type'=>'list<text>',
- 'label'=> t('Tag libres terms as text (+ synonyms)'),
-
- 'getter callback'=>'materio_search_api_get_taglibres_terms_text',
- );
- $node_materiau_props = &$info['node']['bundles']['materiau']['properties'];
- $node_materiau_props['materio_search_api_node_propertie_companie'] = array(
- 'type'=>'list<text>',
- 'label'=> t('Manufacturers and distributors companies localised (dont addresse)'),
-
- 'getter callback'=>'materio_search_api_get_node_propertie_companie',
- );
- $term_props = &$info['taxonomy_term']['properties'];
- $term_props['materio_search_api_term_property_dup_name'] = array(
- 'label' => t("Term name field dup"),
- 'description' => t("Duplicate the term name field to apply different filter in solr (remove accents for instance)"),
- 'type' => 'text',
- 'getter callback' => 'materio_search_api_term_property_dup_name',
- );
- }
- function materio_search_api_get_onthologie_term_1_text($item){
-
- return materio_search_api_get_taxo_term_field_text($item, "field_onthologie", 0);
- }
- function materio_search_api_get_onthologie_term_2_text($item){
-
- return materio_search_api_get_taxo_term_field_text($item, "field_onthologie", 1);
- }
- function materio_search_api_get_onthologie_term_3_text($item){
-
- return materio_search_api_get_taxo_term_field_text($item, "field_onthologie", 2);
- }
- function materio_search_api_get_onthologie_term_4_text($item){
-
- return materio_search_api_get_taxo_term_field_text($item, "field_onthologie", 3);
- }
- function materio_search_api_get_onthologie_term_5_text($item){
-
- return materio_search_api_get_taxo_term_field_text($item, "field_onthologie", 4);
- }
- function materio_search_api_get_taxonomy_terms_others_text($item){
-
- $delta = 5;
- $terms = array();
- while( isset($item->field_onthologie['und'][$delta]) ){
- $terms[] = materio_search_api_get_taxo_term_field_text($item, "field_onthologie", $delta);
- $delta++;
- }
- return $terms;
- }
- function materio_search_api_get_taglibres_terms_text($item){
-
- $delta = 0;
- $terms = array();
- while( isset($item->field_tags_libres['und'][$delta]) ){
- $terms[] = materio_search_api_get_taxo_term_field_text($item, "field_tags_libres", $delta);
- $delta++;
- }
- return $terms;
- }
- function materio_search_api_get_taxo_term_field_text($item, $field_name, $delta){
-
-
- if(isset($item->{$field_name}['und'][$delta])){
-
-
- $term = taxonomy_term_load($item->{$field_name}['und'][$delta]['tid']);
-
- $wrapper = entity_metadata_wrapper('taxonomy_term', $term);
-
-
-
- $keywords[] = $wrapper->language($item->language)->name_field->raw();
-
-
-
-
-
- $synonymes = array();
- foreach ($wrapper->language($item->language)->synonyms_synonym->value() as $index => $synonym) {
-
-
-
- $keywords[] = $synonym;
- }
- return implode(" ", $keywords);
- }
- return null;
- }
- function materio_search_api_get_node_propertie_companie($item){
-
- $lang = "fr";
- $languages = language_list();
- global $language;
- $language = $languages[$lang];
- $cies = array();
- $cie_fields = array("field_company_fab", "field_company_distrib");
- foreach ($cie_fields as $cie_field_name) {
- $delta = 0;
- while( isset($item->{$cie_field_name}['und'][$delta]) ){
- $tid = $item->{$cie_field_name}['und'][$delta]['tid'];
- $cie_term = taxonomy_term_load($tid);
- if($cie_node = company_get_tode_node($cie_term)){
- $cie_node->language = $lang;
- $cie_view = node_view($cie_node, "full", $lang);
- $cie_rendered = rip_tags(drupal_render($cie_view));
-
- $cies[] = $cie_rendered;
- }
- $delta++;
- }
- }
- return $cies;
- }
- function company_get_tode_node($term){
- if(module_exists('tode'))
- if( $entitys = tode_get_nids_from_term($term))
- if(isset($entitys['node']))
- foreach ($entitys['node'] as $nid => $n)
- return node_load($nid);
- return false;
- }
- function rip_tags($string) {
-
- $string = preg_replace ('/<[^>]*>/', ' ', $string);
-
- $string = str_replace("\r", '', $string);
- $string = str_replace("\n", ' ', $string);
- $string = str_replace("\t", ' ', $string);
-
-
-
- $string = trim(preg_replace('/ {2,}/', ' ', $string));
-
- preg_match_all('/&[^;]+;/', $string, $entities);
- foreach ($entities[0] as $entity) {
- $string = str_replace($entity, mb_convert_encoding($entity, 'UTF-8', 'HTML-ENTITIES'), $string);
- }
- return $string;
- }
- function materio_search_api_term_property_dup_name($term){
- $lang = $term->language;
- return $term->name_field[$lang][0]['value'];
- }
- function materio_search_api_block_info() {
-
- $blocks['materio_search_api_search'] = array(
- 'info' => t('Materio search api search'),
- 'cache' => DRUPAL_NO_CACHE
- );
- $blocks['materio_search_api_viewmode'] = array(
- 'info' => t('Materio search api view mode selection'),
- 'cache' => DRUPAL_NO_CACHE
- );
-
-
-
-
- return $blocks;
- }
- function materio_search_api_block_view($delta = '') {
-
-
- $block = array();
- switch ($delta) {
- case 'materio_search_api_search':
- if (user_access('use materio search api') || user_access('use materio search api for breves')) {
- $block['subject'] = t('Search');
- $block['content'] = theme('materio_search_api_search_block', array());
- }
- break;
- case 'materio_search_api_viewmode':
-
- $block_is_visible = true;
- $q = parse_url($_GET['q']);
- $parts = explode('/', $q['path']);
- if($parts[0] == "node"){
- $node = node_load($parts[1]);
- $block_is_visible = in_array($node->type, array('materiau','breve')) ? true : false;
- }
- if (user_access('use materio search api viewmode selection') && $block_is_visible) {
- $block['subject'] = t('View mode');
- $block['content'] = theme('materio_search_api_select_viewmode_block', array());
- }
- break;
-
-
-
-
-
-
- }
- return $block;
- }
- function materio_search_api_entity_info_alter(&$entity_info) {
- $entity_info['node']['view modes']['cardsmall'] = array(
- 'label' => t('Small cards'),
- 'custom settings' => TRUE,
- );
- $entity_info['node']['view modes']['cardmedium'] = array(
- 'label' => t('Medium cards'),
- 'custom settings' => TRUE,
- );
- $entity_info['node']['view modes']['cardbig'] = array(
- 'label' => t('Big cards'),
- 'custom settings' => TRUE,
- );
- $entity_info['node']['view modes']['cardfull'] = array(
- 'label' => t('Full cards'),
- 'custom settings' => TRUE,
- );
- }
- function materio_search_api_node_view_alter(&$build) {
- $node = $build['#node'];
- if (arg(0) == 'node' && arg(1) == $node->nid) {
-
- global $user;
- $viewmode = isset($user->data['materiosearchapi_viewmode']) ? $user->data['materiosearchapi_viewmode'] : variable_get('defaultviewmode', 'full');
-
- $node = $build['#node'];
- if($build['#view_mode'] != $viewmode && $build['#view_mode'] != "bookmark" & in_array($node->type, array('breve', 'materiau'))){
- $build = node_view($node, $viewmode);
- }
- }
- }
- function materio_search_api_node_view($node, $view_mode, $langcode) {
- if (in_array($view_mode, array('cardsmall','cardmedium', 'cardbig', 'cardfull'))) {
-
- print_node_view($node, 'full');
- print_pdf_node_view($node, 'full');
-
-
-
- }
- }
- function materio_search_api_search_form($form, &$form_state){
-
-
- global $user;
- $form = array();
- $args = arg();
- $path = array_shift($args);
- $keys = implode('/', $args);
- if(user_access('use materio search api autocomplete')){
- $query = new EntityFieldQuery();
- $query->entityCondition('entity_type', 'node')
- ->entityCondition('bundle', 'materiau')
- ->propertyCondition('status', 1);
- $count = $query->count()->execute();
- $default_value = t("search among our !fiches cards", array("!fiches"=>$count));
- }else{
- $default_value = '';
- }
- $form['searchfield'] = array(
- '#type' => 'textfield',
- '#default_value' => $path == 'explore' ? $keys : $default_value,
-
- '#autocomplete_path' => 'materiosearchapi/autocomplete/searchapi',
-
- '#size' => 30,
- '#maxlength' => 1024,
- '#attributes' => array("default"=>$default_value),
- );
- if(user_access('use materio search api filters')){
- $index = search_api_index_load(variable_get('mainsearchindex', -1));
- $indexed_bundles = $index->options['data_alter_callbacks']['search_api_alter_bundle_filter']['settings']['bundles'];
- foreach ($indexed_bundles as $bundle) {
- $bundles_options[$bundle] = $bundle;
- $default_bundles[] = $bundle;
- }
- $user_bundles_filter = isset($user->data['materiosearchapi_bundlesfilter']) ? $user->data['materiosearchapi_bundlesfilter'] : $default_bundles;
- $form['bundles_filter'] = array(
- '#type'=>'checkboxes',
- '#options' => $bundles_options,
- '#default_value' => $user_bundles_filter,
-
- );
- }
- $form['create'] = array(
- '#type' => 'image_button',
- '#src' => drupal_get_path('module', 'materio_search_api') . '/images/search.png',
- '#value' => t('Search'),
- );
- return $form;
- }
- function materio_search_api_search_form_validate($form, &$form_state){
-
-
-
- if (strlen(trim($form_state['values']['searchfield'])) <= 1) {
- form_set_error('searchfield', 'Please enter at least 2 characters keyword.');
- }
- }
- function materio_search_api_search_form_submit($form, &$form_state){
-
- global $user;
- if(user_access('use materio search api filters')){
- foreach($form_state['values']['bundles_filter'] as $bundle => $value)
- if($value)
- $bundles[] = $bundle;
-
- if(!isset($bundles))
- foreach($form_state['values']['bundles_filter'] as $bundle => $value)
- $bundles[] = $bundle;
- }else{
-
- $index = search_api_index_load(variable_get('mainsearchindex', -1));
- $indexed_bundles = $index->options['data_alter_callbacks']['search_api_alter_bundle_filter']['settings']['bundles'];
- foreach ($indexed_bundles as $bundle) {
- $bundles[] = $bundle;
- }
- }
- user_save($user, array("data"=>array('materiosearchapi_bundlesfilter' => $bundles)));
- $form_state['redirect'] = 'explore/'.$form_state['values']['searchfield'];
- }
- function _materio_search_api_change_viewmode($vm){
-
- global $user;
-
- $entity_infos = entity_get_info();
-
- if (in_array($vm, variable_get('availableviewmodes', array()))) {
- user_save($user, array("data"=>array('materiosearchapi_viewmode' => $vm)));
- $rep = array('statut'=>'saved');
- }else{
- $rep = array('statut'=>'viewmode not allowed');
- }
- return $rep;
- }
- function materio_search_api_theme($existing, $type, $theme, $path) {
- return array(
- 'materio_search_api_search_block' => array(
- 'arguments' => array(),
- 'template' => 'materio-search-api-search-block',
- 'path' => drupal_get_path('module', 'materio_search_api').'/templates',
- ),
- 'materio_search_api_select_viewmode_block' => array(
- 'arguments' => array(),
- 'template' => 'materio-search-api-select-viewmode-block',
- 'path' => drupal_get_path('module', 'materio_search_api').'/templates',
- ),
-
-
-
-
-
- 'materio_search_api_results' => array(
- 'arguments' => array(),
- 'template' => 'materio-search-api-results',
- 'path' => drupal_get_path('module', 'materio_search_api').'/templates',
- 'variables' => array(
- 'index' => NULL,
- 'results' => array('result count' => 0),
- 'items' => array(),
- 'view_mode' => 'teaser',
- 'keys' => '',
-
- 'spellcheck' => NULL,
- 'pager' => NULL,
- ),
- ),
-
-
-
- 'materio_search_api_actuality' => array(
- 'template' => 'materio-search-api-actuality',
- 'path' => drupal_get_path('module', 'materio_search_api').'/templates',
- 'arguments' => array(
- 'items' => array(),
- 'view_mode' => "teaser",
- 'pager' => NULL,
- 'count' => 0,
- )
- )
- );
- }
- function template_preprocess_materio_search_api_search_block(&$vars){
-
- $vars['searchform'] = drupal_get_form("materio_search_api_search_form");
- }
- function template_preprocess_materio_search_api_select_viewmode_block(&$vars){
- global $user;
- $active = isset($user->data['materiosearchapi_viewmode']) ? $user->data['materiosearchapi_viewmode'] : variable_get('defaultviewmode', 'full');
- $availableviewmodes = variable_get('availableviewmodes', -1);
-
- $entity_infos = entity_get_info();
-
- $content = '<div class="btn-group btn-group-vertical">';
- foreach ($entity_infos['node']['view modes'] as $viewmode => $value) {
- if(in_array($viewmode, $availableviewmodes)){
- $link = l(
- '<i class="icon-materio-viewmode-'.$viewmode.($active == $viewmode ? " active" : '').'"></i><span class="inner">'.$value['label'].'</span>',
- 'materiosearchapi/viewmode/change/'.$viewmode,
- array(
- 'query' => drupal_get_destination(),
- 'html' => true,
- 'attributes' => array(
- 'class' => array(
- 'viewmode-link',
- 'viewmode-'.$viewmode,
- $active == $viewmode ? " active" : ''
- ),
- 'rel' => $viewmode
- )
- )
- );
- $content .= $link;
- }
- }
- $content .= '</div>';
- $vars['content'] = $content;
- }
- function template_preprocess_materio_search_api_results(array &$variables) {
-
- $results = $variables['results'];
- $keys = $variables['keys'];
-
- $variables['result_count'] = $results['result count'];
- $variables['sec'] = round($results['performance']['complete'], 3);
- if(isset($results['breves count'])){
- $variables['search_performance'] = format_plural(
- $results['breves count'],
- 'The search found 1 news ',
- 'The search found @count news '
- );
- $variables['search_performance'] .= format_plural(
- $variables['result_count'] - $results['breves count'],
- 'with 1 associated matter.',
- 'with @count associated matters.'
- );
- $variables['search_performance'] .= format_plural(
- $results['could results']['result count'],
- ' You could find 1 result with a ',
- ' You could find <strong>@count results</strong> with a '
- );
- $variables['search_performance'] .= l(t('full access to materiO\'.'), 'node/11187');
- }else{
- $variables['search_performance'] = format_plural(
-
- $variables['result_count'],
- 'The search found 1 result.',
- 'The search found @count results.'
- );
- }
-
- }
- function template_preprocess_materio_search_api_actuality(&$vars){
-
-
- $vars['actualities_infos'] = t('');
- }
- function materio_search_api_block_view_alter(&$data, $block) {
-
- if ($block->module == 'search_api_page') {
- $page = search_api_page_load($block->delta);
- $item = menu_get_item();
- if (isset($page->path) && $page->path == $item['path']) {
- $keys = arg(count(arg(NULL, $page->path)));
- if ($keys) {
- $data['content']['keys_' . $page->id]['#default_value'] = $keys;
- $data['content']['keys_' . $page->id]['#value'] = $keys;
- }
- }
- }
- }
|