search_api_solr.install 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?php
  2. /**
  3. * Implements hook_requirements().
  4. */
  5. function search_api_solr_requirements($phase) {
  6. if ($phase == 'install') {
  7. $t = get_t();
  8. module_load_include('module', 'search_api_solr');
  9. spl_autoload_register('_search_api_solr_autoload');
  10. if (class_exists('Apache_Solr_Service')) {
  11. $version = trim(Apache_Solr_Service::SVN_REVISION, '$ :A..Za..z');
  12. if ($version < 59) {
  13. return array(
  14. 'search_api_solr' => array(
  15. 'title' => $t('Solr PHP library'),
  16. 'value' => $t('The library is correctly installed, but out of date'),
  17. 'description' => $t('It is suggested to install the newest version (@version).', array('@version' => 'r60')),
  18. 'severity' => REQUIREMENT_WARNING,
  19. ),
  20. );
  21. }
  22. return array(
  23. 'search_api_solr' => array(
  24. 'title' => $t('Solr PHP library'),
  25. 'value' => $t('The library was correctly installed'),
  26. 'severity' => REQUIREMENT_OK,
  27. ),
  28. );
  29. }
  30. else {
  31. return array(
  32. 'search_api_solr' => array(
  33. 'title' => $t('Solr PHP library'),
  34. 'value' => $t('The library was not correctly installed. Please see INSTALL.txt for instructions.'),
  35. 'severity' => REQUIREMENT_ERROR,
  36. ),
  37. );
  38. }
  39. }
  40. elseif ($phase == 'runtime') {
  41. $servers = search_api_server_load_multiple(FALSE, array('class' => 'search_api_solr_service', 'enabled' => TRUE));
  42. $count = 0;
  43. $unavailable = 0;
  44. $last = NULL;
  45. foreach ($servers as $server) {
  46. if (!$server->ping()) {
  47. ++$unavailable;
  48. $last = $server;
  49. }
  50. ++$count;
  51. }
  52. if (!$count) {
  53. return array();
  54. }
  55. $ret['search_api_solr'] = array(
  56. 'title' => t('Solr servers'),
  57. 'value' => format_plural($count, '1 server', '@count servers'),
  58. );
  59. if ($unavailable) {
  60. if ($unavailable == 1) {
  61. $ret['search_api_solr']['description'] = t('The Solr server of <a href="!url">%name</a> could not be reached.',
  62. array('!url' => url('admin/config/search/search_api/server/' . $last->machine_name), '%name' => $last->name));
  63. }
  64. else {
  65. $ret['search_api_solr']['description'] = t('@count Solr servers could not be reached.', array('@count' => $unavailable));
  66. }
  67. $ret['search_api_solr']['severity'] = REQUIREMENT_ERROR;
  68. }
  69. else {
  70. $ret['search_api_solr']['description'] = format_plural($count, 'The Solr server could be reached.', 'All @count Solr servers could be reached.');
  71. $ret['search_api_solr']['severity'] = REQUIREMENT_OK;
  72. }
  73. // Check version of the SolrPhpClient library.
  74. $version = trim(Apache_Solr_Service::SVN_REVISION, '$ :A..Za..z');
  75. if ($version < 59) {
  76. $ret['search_api_solr_client'] = array(
  77. 'title' => t('Solr PHP library'),
  78. 'value' => t('Version @version', array('@version' => "r$version")),
  79. 'description' => t('The library is correctly installed, but out of date. ' .
  80. 'It is suggested to install the <a href="@url">newest version</a> (@version).',
  81. array('@url' => 'http://code.google.com/p/solr-php-client/downloads/list', '@version' => 'r60')),
  82. 'severity' => REQUIREMENT_WARNING,
  83. );
  84. }
  85. return $ret;
  86. }
  87. }
  88. /**
  89. * Implements hook_install().
  90. *
  91. * We register our autoloader here because our hook_init() won't get called
  92. * until the next bootstrap (it registers the autoloader too.)
  93. */
  94. function search_api_solr_install() {
  95. spl_autoload_register('_search_api_solr_autoload');
  96. }
  97. /**
  98. * Implements hook_uninstall().
  99. */
  100. function search_api_solr_uninstall() {
  101. if (module_exists('search_api')) {
  102. db_delete('search_api_server')
  103. ->condition('class', 'search_api_solr_service')
  104. ->execute();
  105. }
  106. variable_del('search_api_solr_last_optimize');
  107. variable_del('search_api_solr_autocomplete_max_occurrences');
  108. }
  109. /**
  110. * Implements hook_update_dependencies().
  111. */
  112. function search_api_solr_update_dependencies() {
  113. // This update should run after primary IDs have been changed to machine names in the framework.
  114. $dependencies['search_api_solr'][7101] = array(
  115. 'search_api' => 7102,
  116. );
  117. return $dependencies;
  118. }
  119. /**
  120. * Implements hook_update_N().
  121. *
  122. * Implements transition from using the index IDs to using machine names.
  123. */
  124. function search_api_solr_update_7101() {
  125. foreach (search_api_server_load_multiple(FALSE, array('class' => 'search_api_solr_service')) as $server) {
  126. if ($server->enabled) {
  127. $server->deleteItems('all');
  128. }
  129. else {
  130. $tasks = variable_get('search_api_tasks', array());
  131. $tasks[$server->machine_name][''] = array('clear all');
  132. variable_set('search_api_tasks', $tasks);
  133. }
  134. $query = db_select('search_api_index', 'i')
  135. ->fields('i', array('machine_name'))
  136. ->condition('server', $server->machine_name);
  137. db_update('search_api_item')
  138. ->fields(array(
  139. 'changed' => REQUEST_TIME,
  140. ))
  141. ->condition('index_id', $query, 'IN')
  142. ->execute();
  143. }
  144. return t('The Solr search module was updated. ' .
  145. 'Please stop your Solr servers, replace their schema.xml with the new version and then start them again. ' .
  146. 'All data indexed on Solr servers will have to be reindexed.');
  147. }