You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BuildSocialSearchIndex.php 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <?php
  2. /**
  3. * @copyright 2017 Georg Ehrke <oc.list@georgehrke.com>
  4. *
  5. * @author call-me-matt <nextcloud@matthiasheinisch.de>
  6. *
  7. * @license GNU AGPL version 3 or any later version
  8. *
  9. * This program is free software: you can redistribute it and/or modify
  10. * it under the terms of the GNU Affero General Public License as
  11. * published by the Free Software Foundation, either version 3 of the
  12. * License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU Affero General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Affero General Public License
  20. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. *
  22. */
  23. namespace OCA\DAV\Migration;
  24. use OCP\BackgroundJob\IJobList;
  25. use OCP\IConfig;
  26. use OCP\IDBConnection;
  27. use OCP\Migration\IOutput;
  28. use OCP\Migration\IRepairStep;
  29. class BuildSocialSearchIndex implements IRepairStep {
  30. /** @var IDBConnection */
  31. private $db;
  32. /** @var IJobList */
  33. private $jobList;
  34. /** @var IConfig */
  35. private $config;
  36. /**
  37. * @param IDBConnection $db
  38. * @param IJobList $jobList
  39. * @param IConfig $config
  40. */
  41. public function __construct(IDBConnection $db,
  42. IJobList $jobList,
  43. IConfig $config) {
  44. $this->db = $db;
  45. $this->jobList = $jobList;
  46. $this->config = $config;
  47. }
  48. /**
  49. * @return string
  50. */
  51. public function getName() {
  52. return 'Register building of social profile search index as background job';
  53. }
  54. /**
  55. * @param IOutput $output
  56. */
  57. public function run(IOutput $output) {
  58. // only run once
  59. if ($this->config->getAppValue('dav', 'builtSocialSearchIndex') === 'yes') {
  60. $output->info('Repair step already executed');
  61. return;
  62. }
  63. $query = $this->db->getQueryBuilder();
  64. $query->select($query->func()->max('cardid'))
  65. ->from('cards_properties')
  66. ->where($query->expr()->eq('name', $query->createNamedParameter('X-SOCIALPROFILE')));
  67. $maxId = (int)$query->execute()->fetchColumn();
  68. if ($maxId === 0) {
  69. return;
  70. }
  71. $output->info('Add background job');
  72. $this->jobList->add(BuildSocialSearchIndexBackgroundJob::class, [
  73. 'offset' => 0,
  74. 'stopAt' => $maxId
  75. ]);
  76. // no need to redo the repair during next upgrade
  77. $this->config->setAppValue('dav', 'builtSocialSearchIndex', 'yes');
  78. }
  79. }