Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F12656252
ArcanistStartWorkflow.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
ArcanistStartWorkflow.php
View Options
<?php
/**
* Start time tracking on an object
*/
final
class
ArcanistStartWorkflow
extends
ArcanistPhrequentWorkflow
{
public
function
getWorkflowName
()
{
return
'start'
;
}
public
function
getCommandSynopses
()
{
return
phutil_console_format
(
<<<EOTEXT
**start** __object__
EOTEXT
);
}
public
function
getCommandHelp
()
{
return
phutil_console_format
(
<<<EOTEXT
Start tracking work in Phrequent.
EOTEXT
);
}
public
function
requiresConduit
()
{
return
true
;
}
public
function
desiresWorkingCopy
()
{
return
false
;
}
public
function
requiresAuthentication
()
{
return
true
;
}
public
function
getArguments
()
{
return
array
(
'*'
=>
'name'
,
);
}
public
function
run
()
{
$conduit
=
$this
->
getConduit
();
$started_phids
=
array
();
$short_name
=
$this
->
getArgument
(
'name'
);
foreach
(
$short_name
as
$object_name
)
{
$object_lookup
=
$conduit
->
callMethodSynchronous
(
'phid.lookup'
,
array
(
'names'
=>
array
(
$object_name
),
));
if
(!
array_key_exists
(
$object_name
,
$object_lookup
))
{
echo
"No such object '"
.
$object_name
.
"' found.
\n
"
;
return
1
;
}
$object_phid
=
$object_lookup
[
$object_name
][
'phid'
];
$started_phids
[]
=
$conduit
->
callMethodSynchronous
(
'phrequent.push'
,
array
(
'objectPHID'
=>
$object_phid
,
));
}
$phid_query
=
$conduit
->
callMethodSynchronous
(
'phid.query'
,
array
(
'phids'
=>
$started_phids
,
));
$name
=
''
;
foreach
(
$phid_query
as
$ref
)
{
if
(
$name
===
''
)
{
$name
=
$ref
[
'fullName'
];
}
else
{
$name
.=
', '
.
$ref
[
'fullName'
];
}
}
echo
phutil_console_format
(
"Started: %s
\n\n
"
,
$name
);
$this
->
printCurrentTracking
(
true
);
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Nov 28, 15:10 (1 d, 17 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1045587
Default Alt Text
ArcanistStartWorkflow.php (1 KB)
Attached To
Mode
R118 Arcanist - fork
Attached
Detach File
Event Timeline
Log In to Comment