mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-05 00:48:22 +02:00
Summary: Fixes T4245. When a repository has a short name, use `/source/shortname/` as its primary URI. Test Plan: - Cloned Git repositories from shortnames via HTTP and SSH. - Cloned Mercurial repositories from shortnames via HTTP and SSH. - Cloned Subversion repositories from shortnames via SSH. - Browsed Git, Mercurial and Subversion repositories. - Added and removed short names to various repositories. Reviewers: chad Reviewed By: chad Maniphest Tasks: T4245 Differential Revision: https://secure.phabricator.com/D16851
38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<?php
|
|
|
|
abstract class DiffusionGitSSHWorkflow
|
|
extends DiffusionSSHWorkflow
|
|
implements DiffusionRepositoryClusterEngineLogInterface {
|
|
|
|
protected function writeError($message) {
|
|
// Git assumes we'll add our own newlines.
|
|
return parent::writeError($message."\n");
|
|
}
|
|
|
|
public function writeClusterEngineLogMessage($message) {
|
|
parent::writeError($message);
|
|
$this->getErrorChannel()->update();
|
|
}
|
|
|
|
protected function identifyRepository() {
|
|
$args = $this->getArgs();
|
|
$path = head($args->getArg('dir'));
|
|
return $this->loadRepositoryWithPath(
|
|
$path,
|
|
PhabricatorRepositoryType::REPOSITORY_TYPE_GIT);
|
|
}
|
|
|
|
protected function waitForGitClient() {
|
|
$io_channel = $this->getIOChannel();
|
|
|
|
// If we don't wait for the client to close the connection, `git` will
|
|
// consider it an early abort and fail. Sit around until Git is comfortable
|
|
// that it really received all the data.
|
|
while ($io_channel->isOpenForReading()) {
|
|
$io_channel->update();
|
|
$this->getErrorChannel()->flush();
|
|
PhutilChannel::waitForAny(array($io_channel));
|
|
}
|
|
}
|
|
|
|
}
|