Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F538178
DiffusionGitUploadPackSSHWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
DiffusionGitUploadPackSSHWorkflow.php
View Options
<?php
final
class
DiffusionGitUploadPackSSHWorkflow
extends
DiffusionGitSSHWorkflow
{
protected
function
didConstruct
()
{
$this
->
setName
(
'git-upload-pack'
);
$this
->
setArguments
(
array
(
array
(
'name'
=>
'dir'
,
'wildcard'
=>
true
,
),
));
}
protected
function
executeRepositoryOperations
()
{
$is_proxy
=
$this
->
shouldProxy
();
if
(
$is_proxy
)
{
return
$this
->
executeRepositoryProxyOperations
(
$for_write
=
false
);
}
$viewer
=
$this
->
getSSHUser
();
$repository
=
$this
->
getRepository
();
$device
=
AlmanacKeys
::
getLiveDevice
();
$skip_sync
=
$this
->
shouldSkipReadSynchronization
();
$command
=
csprintf
(
'git-upload-pack -- %s'
,
$repository
->
getLocalPath
());
if
(!
$skip_sync
)
{
$cluster_engine
=
id
(
new
DiffusionRepositoryClusterEngine
())
->
setViewer
(
$viewer
)
->
setRepository
(
$repository
)
->
setLog
(
$this
)
->
synchronizeWorkingCopyBeforeRead
();
if
(
$device
)
{
$this
->
writeClusterEngineLogMessage
(
pht
(
"# Cleared to fetch on cluster host
\"
%s
\"
.
\n
"
,
$device
->
getName
()));
}
}
$command
=
PhabricatorDaemon
::
sudoCommandAsDaemonUser
(
$command
);
$pull_event
=
$this
->
newPullEvent
();
$future
=
id
(
new
ExecFuture
(
'%C'
,
$command
))
->
setEnv
(
$this
->
getEnvironment
());
$log
=
$this
->
newProtocolLog
(
$is_proxy
);
if
(
$log
)
{
$this
->
setProtocolLog
(
$log
);
$log
->
didStartSession
(
$command
);
}
if
(
PhabricatorEnv
::
getEnvConfig
(
'phabricator.show-prototypes'
))
{
$protocol
=
new
DiffusionGitUploadPackWireProtocol
();
if
(
$log
)
{
$protocol
->
setProtocolLog
(
$log
);
}
$this
->
setWireProtocol
(
$protocol
);
}
$err
=
$this
->
newPassthruCommand
()
->
setIOChannel
(
$this
->
getIOChannel
())
->
setCommandChannelFromExecFuture
(
$future
)
->
execute
();
if
(
$log
)
{
$log
->
didEndSession
();
}
if
(
$err
)
{
$pull_event
->
setResultType
(
PhabricatorRepositoryPullEvent
::
RESULT_ERROR
)
->
setResultCode
(
$err
);
}
else
{
$pull_event
->
setResultType
(
PhabricatorRepositoryPullEvent
::
RESULT_PULL
)
->
setResultCode
(
0
);
}
$pull_event
->
save
();
if
(!
$err
)
{
$this
->
waitForGitClient
();
}
return
$err
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 8:36 AM (1 d, 21 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
119917
Default Alt Text
DiffusionGitUploadPackSSHWorkflow.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment