Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3281832
ArcanistListWorkflow.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
ArcanistListWorkflow.php
View Options
<?php
/**
* Lists open revisions in Differential.
*/
final
class
ArcanistListWorkflow
extends
ArcanistWorkflow
{
public
function
getWorkflowName
(
)
{
return
'list'
;
}
public
function
getCommandSynopses
(
)
{
return
phutil_console_format
(
<<<EOTEXT
**list**
EOTEXT
)
;
}
public
function
getCommandHelp
(
)
{
return
phutil_console_format
(
<<<EOTEXT
Supports: git, svn, hg
List your open Differential revisions.
EOTEXT
)
;
}
public
function
requiresConduit
(
)
{
return
true
;
}
public
function
requiresRepositoryAPI
(
)
{
return
true
;
}
public
function
requiresAuthentication
(
)
{
return
true
;
}
public
function
run
(
)
{
static
$color_map
=
array
(
'Closed'
=>
'cyan'
,
'Needs Review'
=>
'magenta'
,
'Needs Revision'
=>
'red'
,
'Changes Planned'
=>
'red'
,
'Accepted'
=>
'green'
,
'No Revision'
=>
'blue'
,
'Abandoned'
=>
'default'
,
)
;
$revisions
=
$this
->
getConduit
(
)
->
callMethodSynchronous
(
'differential.query'
,
array
(
'authors'
=>
array
(
$this
->
getUserPHID
(
)
)
,
'status'
=>
'status-open'
,
)
)
;
if
(
!
$revisions
)
{
echo
pht
(
'You have no open Differential revisions.'
)
.
"\n"
;
return
0
;
}
$repository_api
=
$this
->
getRepositoryAPI
(
)
;
$info
=
array
(
)
;
foreach
(
$revisions
as
$key
=>
$revision
)
{
$revision_path
=
Filesystem
::
resolvePath
(
$revision
[
'sourcePath'
]
)
;
$current_path
=
Filesystem
::
resolvePath
(
$repository_api
->
getPath
(
)
)
;
if
(
$revision_path
==
$current_path
)
{
$info
[
$key
]
[
'exists'
]
=
1
;
}
else
{
$info
[
$key
]
[
'exists'
]
=
0
;
}
$info
[
$key
]
[
'sort'
]
=
sprintf
(
'%d%04d%08d'
,
$info
[
$key
]
[
'exists'
]
,
$revision
[
'status'
]
,
$revision
[
'id'
]
)
;
$info
[
$key
]
[
'statusName'
]
=
$revision
[
'statusName'
]
;
$info
[
$key
]
[
'color'
]
=
idx
(
$color_map
,
$revision
[
'statusName'
]
,
'default'
)
;
}
$table
=
id
(
new
PhutilConsoleTable
(
)
)
->
setShowHeader
(
false
)
->
addColumn
(
'exists'
,
array
(
'title'
=>
''
)
)
->
addColumn
(
'status'
,
array
(
'title'
=>
pht
(
'Status'
)
)
)
->
addColumn
(
'title'
,
array
(
'title'
=>
pht
(
'Title'
)
)
)
;
$info
=
isort
(
$info
,
'sort'
)
;
foreach
(
$info
as
$key
=>
$spec
)
{
$revision
=
$revisions
[
$key
]
;
$table
->
addRow
(
array
(
'exists'
=>
$spec
[
'exists'
]
?
tsprintf
(
'**%s**'
,
'*'
)
:
''
,
'status'
=>
tsprintf
(
"<fg:{$spec['color']}>%s</fg>"
,
$spec
[
'statusName'
]
)
,
'title'
=>
tsprintf
(
'**D%d:** %s'
,
$revision
[
'id'
]
,
$revision
[
'title'
]
)
,
)
)
;
}
$table
->
draw
(
)
;
return
0
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Mar 24, 01:54 (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1112984
Default Alt Text
ArcanistListWorkflow.php (2 KB)
Attached To
Mode
rARC Arcanist
Attached
Detach File
Event Timeline
Log In to Comment