mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-19 05:12:41 +01:00
27 lines
817 B
PHP
27 lines
817 B
PHP
|
<?php
|
||
|
|
||
|
$search_engine = PhabricatorFulltextStorageEngine::loadEngine();
|
||
|
$use_mysql = ($search_engine instanceof PhabricatorMySQLFulltextStorageEngine);
|
||
|
|
||
|
if ($use_mysql) {
|
||
|
$field = new PhabricatorSearchDocumentField();
|
||
|
$conn = $field->establishConnection('r');
|
||
|
|
||
|
// We're only going to require this if the index isn't empty: if you're on a
|
||
|
// fresh install, you don't have to do anything.
|
||
|
$any_documents = queryfx_one(
|
||
|
$conn,
|
||
|
'SELECT * FROM %T LIMIT 1',
|
||
|
$field->getTableName());
|
||
|
|
||
|
if ($any_documents) {
|
||
|
try {
|
||
|
id(new PhabricatorConfigManualActivity())
|
||
|
->setActivityType(PhabricatorConfigManualActivity::TYPE_REINDEX)
|
||
|
->save();
|
||
|
} catch (AphrontDuplicateKeyQueryException $ex) {
|
||
|
// If we've already noted that this activity is required, just move on.
|
||
|
}
|
||
|
}
|
||
|
}
|