Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99509217
DiffusionSubversionCommandEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Jan 25, 02:24
Size
1 KB
Mime Type
text/x-php
Expires
Mon, Jan 27, 02:24 (2 d)
Engine
blob
Format
Raw Data
Handle
23808441
Attached To
rPH Phabricator
DiffusionSubversionCommandEngine.php
View Options
<?php
final
class
DiffusionSubversionCommandEngine
extends
DiffusionCommandEngine
{
protected
function
canBuildForRepository
(
PhabricatorRepository
$repository
)
{
return
$repository
->
isSVN
();
}
protected
function
newFormattedCommand
(
$pattern
,
array
$argv
)
{
$flags
=
array
();
$args
=
array
();
$flags
[]
=
'--non-interactive'
;
if
(
$this
->
isAnyHTTPProtocol
()
||
$this
->
isSVNProtocol
())
{
$flags
[]
=
'--no-auth-cache'
;
if
(
$this
->
isAnyHTTPProtocol
())
{
$flags
[]
=
'--trust-server-cert'
;
}
$credential_phid
=
$this
->
getCredentialPHID
();
if
(
$credential_phid
)
{
$key
=
PassphrasePasswordKey
::
loadFromPHID
(
$credential_phid
,
PhabricatorUser
::
getOmnipotentUser
());
$flags
[]
=
'--username %P'
;
$args
[]
=
$key
->
getUsernameEnvelope
();
$flags
[]
=
'--password %P'
;
$args
[]
=
$key
->
getPasswordEnvelope
();
}
}
$flags
=
implode
(
' '
,
$flags
);
$pattern
=
"svn {$flags} {$pattern}"
;
return
array
(
$pattern
,
array_merge
(
$args
,
$argv
));
}
protected
function
newCustomEnvironment
()
{
$env
=
array
();
if
(
$this
->
isAnySSHProtocol
())
{
$env
[
'SVN_SSH'
]
=
$this
->
getSSHWrapper
();
}
return
$env
;
}
}
Event Timeline
Log In to Comment