|
@@ -1,8 +1,79 @@
|
|
|
+diff --git a/includes/service.inc b/includes/service.inc
|
|
|
+index 4455235..20e57b8 100644
|
|
|
+--- a/includes/service.inc
|
|
|
++++ b/includes/service.inc
|
|
|
+@@ -27,28 +27,6 @@ class SearchApiSolrService extends SearchApiAbstractService {
|
|
|
+ protected $solr;
|
|
|
+
|
|
|
+ /**
|
|
|
+- * An array of all recognized types.
|
|
|
+- *
|
|
|
+- * Maps the type names to the prefixes used for identifying them in the Solr
|
|
|
+- * schema.
|
|
|
+- *
|
|
|
+- * @var array
|
|
|
+- */
|
|
|
+- protected static $type_prefixes = array(
|
|
|
+- 'text' => 'tm',
|
|
|
+- 'tokens' => 'tm',
|
|
|
+- 'string' => 's',
|
|
|
+- 'integer' => 'i',
|
|
|
+- 'decimal' => 'f',
|
|
|
+- 'date' => 'd',
|
|
|
+- 'duration' => 'i',
|
|
|
+- 'boolean' => 'b',
|
|
|
+- 'uri' => 's',
|
|
|
+- 'location' => 'loc',
|
|
|
+- 'geohash' => 'geo',
|
|
|
+- );
|
|
|
+-
|
|
|
+- /**
|
|
|
+ * Static cache for getFieldNames().
|
|
|
+ *
|
|
|
+ * @var array
|
|
|
+@@ -290,7 +268,8 @@ class SearchApiSolrService extends SearchApiAbstractService {
|
|
|
+ * Overrides SearchApiAbstractService::supportsFeature().
|
|
|
+ */
|
|
|
+ public function supportsFeature($feature) {
|
|
|
+- $supported = drupal_map_assoc(array(
|
|
|
++ // Search API features.
|
|
|
++ $supported = array(
|
|
|
+ 'search_api_autocomplete',
|
|
|
+ 'search_api_facets',
|
|
|
+ 'search_api_facets_operator_or',
|
|
|
+@@ -300,7 +279,14 @@ class SearchApiSolrService extends SearchApiAbstractService {
|
|
|
+ 'search_api_spellcheck',
|
|
|
+ 'search_api_data_type_location',
|
|
|
+ 'search_api_data_type_geohash',
|
|
|
+- ));
|
|
|
++ );
|
|
|
++
|
|
|
++ // Custom data types.
|
|
|
++ foreach (search_api_solr_get_dynamic_field_info() as $type => $info) {
|
|
|
++ $supported[] = 'search_api_data_type_' . $type;
|
|
|
++ }
|
|
|
++
|
|
|
++ $supported = drupal_map_assoc($supported);
|
|
|
+ return isset($supported[$feature]);
|
|
|
+ }
|
|
|
+
|
|
|
+@@ -495,8 +481,9 @@ class SearchApiSolrService extends SearchApiAbstractService {
|
|
|
+ }
|
|
|
+
|
|
|
+ $inner_type = search_api_extract_inner_type($type);
|
|
|
+- $pref = isset(self::$type_prefixes[$inner_type]) ? self::$type_prefixes[$inner_type] : '';
|
|
|
+- if ($pref != 'tm') {
|
|
|
++ $type_info = search_api_solr_get_dynamic_field_info($inner_type);
|
|
|
++ $pref = isset($type_info['prefix']) ? $type_info['prefix']: '';
|
|
|
++ if (empty($type_info['always multiValued'])) {
|
|
|
+ $pref .= $type == $inner_type ? 's' : 'm';
|
|
|
+ }
|
|
|
+ if (!empty($this->options['clean_ids'])) {
|
|
|
diff --git a/search_api_solr.api.php b/search_api_solr.api.php
|
|
|
-index f407407..ec4b190 100644
|
|
|
+index a64c477..cc9b208 100644
|
|
|
--- a/search_api_solr.api.php
|
|
|
+++ b/search_api_solr.api.php
|
|
|
-@@ -85,5 +85,45 @@ function hook_search_api_solr_multi_query_alter(array &$call_args, SearchApiMult
|
|
|
+@@ -101,5 +101,45 @@ function hook_search_api_solr_multi_query_alter(array &$call_args, SearchApiMult
|
|
|
}
|
|
|
|
|
|
/**
|
|
@@ -49,15 +120,13 @@ index f407407..ec4b190 100644
|
|
|
* @} End of "addtogroup hooks".
|
|
|
*/
|
|
|
diff --git a/search_api_solr.module b/search_api_solr.module
|
|
|
-index 9e30397..b75319b 100644
|
|
|
+index cfab380..52ae956 100644
|
|
|
--- a/search_api_solr.module
|
|
|
+++ b/search_api_solr.module
|
|
|
-@@ -143,3 +143,81 @@ function search_api_solr_cron() {
|
|
|
- }
|
|
|
- }
|
|
|
+@@ -113,6 +113,84 @@ function search_api_solr_search_api_server_update(SearchApiServer $server) {
|
|
|
}
|
|
|
-+
|
|
|
-+/**
|
|
|
+
|
|
|
+ /**
|
|
|
+ * Returns either all dynamic field types, or a specific one.
|
|
|
+ *
|
|
|
+ * @param $type
|
|
@@ -113,93 +182,29 @@ index 9e30397..b75319b 100644
|
|
|
+ 'always multiValued' => FALSE,
|
|
|
+ ),
|
|
|
+ 'duration' => array(
|
|
|
-+ 'i',
|
|
|
++ 'prefix' => 'i',
|
|
|
+ 'always multiValued' => FALSE,
|
|
|
+ ),
|
|
|
+ 'boolean' => array(
|
|
|
-+ 'b',
|
|
|
++ 'prefix' => 'b',
|
|
|
+ 'always multiValued' => FALSE,
|
|
|
+ ),
|
|
|
+ 'uri' => array(
|
|
|
-+ 's',
|
|
|
++ 'prefix' => 's',
|
|
|
+ 'always multiValued' => FALSE,
|
|
|
+ ),
|
|
|
+ 'location' => array(
|
|
|
-+ 'loc',
|
|
|
++ 'prefix' => 'loc',
|
|
|
+ 'always multiValued' => FALSE,
|
|
|
+ ),
|
|
|
+ 'geohash' => array(
|
|
|
-+ 'geohash',
|
|
|
++ 'prefix' => 'geohash',
|
|
|
+ 'always multiValued' => FALSE,
|
|
|
+ ),
|
|
|
+ );
|
|
|
+}
|
|
|
-diff --git a/service.inc b/service.inc
|
|
|
-index 0e8dbee..5054c51 100644
|
|
|
---- a/service.inc
|
|
|
-+++ b/service.inc
|
|
|
-@@ -18,26 +18,6 @@ class SearchApiSolrService extends SearchApiAbstractService {
|
|
|
- protected $solr;
|
|
|
-
|
|
|
- /**
|
|
|
-- * An array of all recognized types mapped to a prefix used for identifying
|
|
|
-- * them in the Solr schema.
|
|
|
-- *
|
|
|
-- * @var array
|
|
|
-- */
|
|
|
-- protected static $type_prefixes = array(
|
|
|
-- 'text' => 'tm',
|
|
|
-- 'tokens' => 'tm',
|
|
|
-- 'string' => 's',
|
|
|
-- 'integer' => 'i',
|
|
|
-- 'decimal' => 'f',
|
|
|
-- 'date' => 'd',
|
|
|
-- 'duration' => 'i',
|
|
|
-- 'boolean' => 'b',
|
|
|
-- 'uri' => 's',
|
|
|
-- 'location' => 'loc',
|
|
|
-- 'geohash' => 'geohash',
|
|
|
-- );
|
|
|
--
|
|
|
-- /**
|
|
|
- * @var array
|
|
|
- */
|
|
|
- protected $fieldNames = array();
|
|
|
-@@ -222,7 +202,8 @@ class SearchApiSolrService extends SearchApiAbstractService {
|
|
|
- }
|
|
|
-
|
|
|
- public function supportsFeature($feature) {
|
|
|
-- $supported = drupal_map_assoc(array(
|
|
|
-+ // Search API features.
|
|
|
-+ $supported = array(
|
|
|
- 'search_api_autocomplete',
|
|
|
- 'search_api_facets',
|
|
|
- 'search_api_facets_operator_or',
|
|
|
-@@ -231,7 +212,14 @@ class SearchApiSolrService extends SearchApiAbstractService {
|
|
|
- 'search_api_spellcheck',
|
|
|
- 'search_api_data_type_location',
|
|
|
- 'search_api_data_type_geohash',
|
|
|
-- ));
|
|
|
-+ );
|
|
|
+
|
|
|
-+ // Custom data types.
|
|
|
-+ foreach (search_api_solr_get_dynamic_field_info() as $type => $info) {
|
|
|
-+ $supported[] = 'search_api_data_type_' . $type;
|
|
|
-+ }
|
|
|
-+
|
|
|
-+ $supported = drupal_map_assoc($supported);
|
|
|
- return isset($supported[$feature]);
|
|
|
- }
|
|
|
-
|
|
|
-@@ -395,8 +383,9 @@ class SearchApiSolrService extends SearchApiAbstractService {
|
|
|
- }
|
|
|
-
|
|
|
- $inner_type = search_api_extract_inner_type($type);
|
|
|
-- $pref = isset(self::$type_prefixes[$inner_type]) ? self::$type_prefixes[$inner_type] : '';
|
|
|
-- if ($pref != 'tm') {
|
|
|
-+ $type_info = search_api_solr_get_dynamic_field_info($inner_type);
|
|
|
-+ $pref = isset($type_info['prefix']) ? $type_info['prefix']: '';
|
|
|
-+ if (empty($type_info['always multiValued'])) {
|
|
|
- $pref .= $type == $inner_type ? 's' : 'm';
|
|
|
- }
|
|
|
- $name = $pref . '_' . $key;
|
|
|
++/**
|
|
|
+ * Retrieves a list of all config files of a server.
|
|
|
+ *
|
|
|
+ * @param SearchApiServer $server
|