Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3282342
ArcanistCallConduitWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
2 KB
Referenced Files
None
Subscribers
None
ArcanistCallConduitWorkflow.php
View Options
<?php
final
class
ArcanistCallConduitWorkflow
extends
ArcanistArcWorkflow
{
public
function
getWorkflowName
(
)
{
return
'call-conduit'
;
}
public
function
getWorkflowInformation
(
)
{
$help
=
pht
(
<<<EOTEXT
Allows you to make a raw Conduit method call:
- Run this command from a working directory.
- Call parameters are required, and read as a JSON blob from stdin.
- Results are written to stdout as a JSON blob.
This workflow is primarily useful for writing scripts which integrate
with Phabricator. Examples:
$ echo '{}' | arc call-conduit -- conduit.ping
$ echo '{"phid":"PHID-FILE-xxxx"}' | arc call-conduit -- file.download
EOTEXT
)
;
return
$this
->
newWorkflowInformation
(
)
->
setSynopsis
(
pht
(
'Call Conduit API methods.'
)
)
->
addExample
(
'**call-conduit** -- __method__'
)
->
setHelp
(
$help
)
;
}
public
function
getWorkflowArguments
(
)
{
return
array
(
$this
->
newWorkflowArgument
(
'method'
)
->
setWildcard
(
true
)
,
)
;
}
public
function
runWorkflow
(
)
{
$method
=
$this
->
getArgument
(
'method'
)
;
if
(
count
(
$method
)
!==
1
)
{
throw
new
PhutilArgumentUsageException
(
pht
(
'Provide exactly one Conduit method name to call.'
)
)
;
}
$method
=
head
(
$method
)
;
$params
=
$this
->
readStdin
(
)
;
try
{
$params
=
phutil_json_decode
(
$params
)
;
}
catch
(
PhutilJSONParserException
$ex
)
{
throw
new
ArcanistUsageException
(
pht
(
'Provide method parameters on stdin as a JSON blob.'
)
)
;
}
$engine
=
$this
->
getConduitEngine
(
)
;
$conduit_future
=
$engine
->
newFuture
(
$method
,
$params
)
;
$error
=
null
;
$error_message
=
null
;
try
{
$result
=
$conduit_future
->
resolve
(
)
;
}
catch
(
ConduitClientException
$ex
)
{
$error
=
$ex
->
getErrorCode
(
)
;
$error_message
=
$ex
->
getMessage
(
)
;
$result
=
null
;
}
echo
id
(
new
PhutilJSON
(
)
)
->
encodeFormatted
(
array
(
'error'
=>
$error
,
'errorMessage'
=>
$error_message
,
'response'
=>
$result
,
)
)
;
return
0
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Mar 24, 07:06 (1 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1194693
Default Alt Text
ArcanistCallConduitWorkflow.php (2 KB)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment