2011-12-22 21:24:12 +01:00
|
|
|
<?php
|
|
|
|
|
2015-05-22 09:27:56 +02:00
|
|
|
echo pht('Stripping remotes from repository default branches...')."\n";
|
2011-12-22 21:24:12 +01:00
|
|
|
|
|
|
|
$table = new PhabricatorRepository();
|
2013-01-17 02:55:39 +01:00
|
|
|
$table->openTransaction();
|
2011-12-22 21:24:12 +01:00
|
|
|
$conn_w = $table->establishConnection('w');
|
|
|
|
|
|
|
|
$repos = queryfx_all(
|
|
|
|
$conn_w,
|
2013-01-17 02:55:39 +01:00
|
|
|
'SELECT id, name, details FROM %T WHERE versionControlSystem = %s FOR UPDATE',
|
2011-12-22 21:24:12 +01:00
|
|
|
$table->getTableName(),
|
|
|
|
'git');
|
|
|
|
|
|
|
|
foreach ($repos as $repo) {
|
|
|
|
$details = json_decode($repo['details'], true);
|
|
|
|
|
|
|
|
$old = idx($details, 'default-branch', '');
|
|
|
|
if (strpos($old, '/') === false) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$parts = explode('/', $old);
|
|
|
|
$parts = array_filter($parts);
|
|
|
|
$new = end($parts);
|
|
|
|
|
|
|
|
$details['default-branch'] = $new;
|
|
|
|
$new_details = json_encode($details);
|
|
|
|
|
|
|
|
$id = $repo['id'];
|
|
|
|
$name = $repo['name'];
|
|
|
|
|
2015-05-22 09:27:56 +02:00
|
|
|
echo pht(
|
|
|
|
"Updating default branch for repository #%d '%s' from ".
|
|
|
|
"'%s' to '%s' to remove the explicit remote.\n",
|
|
|
|
$id,
|
|
|
|
$name,
|
|
|
|
$old,
|
|
|
|
$new);
|
2011-12-22 21:24:12 +01:00
|
|
|
queryfx(
|
|
|
|
$conn_w,
|
|
|
|
'UPDATE %T SET details = %s WHERE id = %d',
|
|
|
|
$table->getTableName(),
|
|
|
|
$new_details,
|
|
|
|
$id);
|
|
|
|
}
|
|
|
|
|
2013-01-17 02:55:39 +01:00
|
|
|
$table->saveTransaction();
|
2015-05-22 09:27:56 +02:00
|
|
|
echo pht('Done.')."\n";
|