Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2890988
PhabricatorRepositoryManagementImportingWorkflow.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
PhabricatorRepositoryManagementImportingWorkflow.php
View Options
<?php
final
class
PhabricatorRepositoryManagementImportingWorkflow
extends
PhabricatorRepositoryManagementWorkflow
{
public
function
didConstruct
(
)
{
$this
->
setName
(
'importing'
)
->
setExamples
(
'**importing** __repository__ ...'
)
->
setSynopsis
(
'Show commits in __repository__, named by callsign, which are still '
.
'importing.'
)
->
setArguments
(
array
(
array
(
'name'
=>
'simple'
,
'help'
=>
'Show simpler output.'
,
)
,
array
(
'name'
=>
'repos'
,
'wildcard'
=>
true
,
)
,
)
)
;
}
public
function
execute
(
PhutilArgumentParser
$args
)
{
$repos
=
$this
->
loadRepositories
(
$args
,
'repos'
)
;
if
(
!
$repos
)
{
throw
new
PhutilArgumentUsageException
(
"Specify one or more repositories to find importing commits for, "
.
"by callsign."
)
;
}
$repos
=
mpull
(
$repos
,
null
,
'getID'
)
;
$table
=
new
PhabricatorRepositoryCommit
(
)
;
$conn_r
=
$table
->
establishConnection
(
'r'
)
;
$rows
=
queryfx_all
(
$conn_r
,
'SELECT repositoryID, commitIdentifier, importStatus FROM %T
WHERE repositoryID IN (%Ld) AND importStatus != %d'
,
$table
->
getTableName
(
)
,
array_keys
(
$repos
)
,
PhabricatorRepositoryCommit
::
IMPORTED_ALL
)
;
$console
=
PhutilConsole
::
getConsole
(
)
;
if
(
$rows
)
{
foreach
(
$rows
as
$row
)
{
$repo
=
$repos
[
$row
[
'repositoryID'
]
]
;
$identifier
=
$row
[
'commitIdentifier'
]
;
$console
->
writeOut
(
"%s"
,
'r'
.
$repo
->
getCallsign
(
)
.
$identifier
)
;
if
(
!
$args
->
getArg
(
'simple'
)
)
{
$status
=
$row
[
'importStatus'
]
;
$need
=
array
(
)
;
if
(
!
(
$status
&
PhabricatorRepositoryCommit
::
IMPORTED_MESSAGE
)
)
{
$need
[
]
=
'Message'
;
}
if
(
!
(
$status
&
PhabricatorRepositoryCommit
::
IMPORTED_CHANGE
)
)
{
$need
[
]
=
'Change'
;
}
if
(
!
(
$status
&
PhabricatorRepositoryCommit
::
IMPORTED_OWNERS
)
)
{
$need
[
]
=
'Owners'
;
}
if
(
!
(
$status
&
PhabricatorRepositoryCommit
::
IMPORTED_HERALD
)
)
{
$need
[
]
=
'Herald'
;
}
$console
->
writeOut
(
" %s"
,
implode
(
', '
,
$need
)
)
;
}
$console
->
writeOut
(
"\n"
)
;
}
}
else
{
$console
->
writeErr
(
"%s\n"
,
pht
(
'No importing commits found.'
)
)
;
}
return
0
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 14:26 (3 w, 2 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1125493
Default Alt Text
PhabricatorRepositoryManagementImportingWorkflow.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment