Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F12656606
ArcanistVersionWorkflow.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
ArcanistVersionWorkflow.php
View Options
<?php
/**
* Display the current version of Arcanist.
*/
final
class
ArcanistVersionWorkflow
extends
ArcanistWorkflow
{
public
function
getWorkflowName
()
{
return
'version'
;
}
public
function
getCommandSynopses
()
{
return
phutil_console_format
(
<<<EOTEXT
**version** [__options__]
EOTEXT
);
}
public
function
getCommandHelp
()
{
return
phutil_console_format
(
pht
(
<<<EOTEXT
Supports: cli
Shows the current version of arcanist.
EOTEXT
));
}
public
function
run
()
{
$console
=
PhutilConsole
::
getConsole
();
if
(!
Filesystem
::
binaryExists
(
'git'
))
{
throw
new
ArcanistUsageException
(
pht
(
'Cannot display current version without having `%s` installed.'
,
'git'
));
}
$roots
=
array
(
'arcanist'
=>
dirname
(
phutil_get_library_root
(
'arcanist'
)),
'libphutil'
=>
dirname
(
phutil_get_library_root
(
'phutil'
)),
);
foreach
(
$roots
as
$lib
=>
$root
)
{
$working_copy
=
ArcanistWorkingCopyIdentity
::
newFromPath
(
$root
);
$configuration_manager
=
clone
$this
->
getConfigurationManager
();
$configuration_manager
->
setWorkingCopyIdentity
(
$working_copy
);
$repository
=
ArcanistRepositoryAPI
::
newAPIFromConfigurationManager
(
$configuration_manager
);
if
(!
Filesystem
::
pathExists
(
$repository
->
getMetadataPath
()))
{
throw
new
ArcanistUsageException
(
pht
(
'%s is not a git working copy.'
,
$lib
));
}
list
(
$stdout
)
=
$repository
->
execxLocal
(
'log -1 --format=%s'
,
'%H %ct'
);
list
(
$commit
,
$timestamp
)
=
explode
(
' '
,
$stdout
);
$console
->
writeOut
(
"%s %s (%s)
\n
"
,
$lib
,
$commit
,
date
(
'j M Y'
,
(
int
)
$timestamp
));
}
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Nov 28, 15:12 (1 d, 3 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1053496
Default Alt Text
ArcanistVersionWorkflow.php (1 KB)
Attached To
Mode
R118 Arcanist - fork
Attached
Detach File
Event Timeline
Log In to Comment