Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15408704
D7358.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D7358.diff
View Options
Index: src/__phutil_library_map__.php
===================================================================
--- src/__phutil_library_map__.php
+++ src/__phutil_library_map__.php
@@ -157,6 +157,7 @@
'ArcanistUsageException' => 'exception/ArcanistUsageException.php',
'ArcanistUserAbortException' => 'exception/usage/ArcanistUserAbortException.php',
'ArcanistWhichWorkflow' => 'workflow/ArcanistWhichWorkflow.php',
+ 'ArcanistWhoamiWorkflow' => 'workflow/ArcanistWhoamiWorkflow.php',
'ArcanistWorkingCopyIdentity' => 'workingcopyidentity/ArcanistWorkingCopyIdentity.php',
'ArcanistXHPASTLintNamingHook' => 'lint/linter/xhpast/ArcanistXHPASTLintNamingHook.php',
'ArcanistXHPASTLintNamingHookTestCase' => 'lint/linter/xhpast/__tests__/ArcanistXHPASTLintNamingHookTestCase.php',
@@ -303,6 +304,7 @@
'ArcanistUsageException' => 'Exception',
'ArcanistUserAbortException' => 'ArcanistUsageException',
'ArcanistWhichWorkflow' => 'ArcanistBaseWorkflow',
+ 'ArcanistWhoamiWorkflow' => 'ArcanistBaseWorkflow',
'ArcanistXHPASTLintNamingHookTestCase' => 'ArcanistTestCase',
'ArcanistXHPASTLintTestSwitchHook' => 'ArcanistXHPASTLintSwitchHook',
'ArcanistXHPASTLinter' => 'ArcanistBaseXHPASTLinter',
Index: src/workflow/ArcanistWhoamiWorkflow.php
===================================================================
--- /dev/null
+++ src/workflow/ArcanistWhoamiWorkflow.php
@@ -0,0 +1,47 @@
+<?php
+
+/**
+ * Displays the user name
+ *
+ * @group workflow
+ */
+final class ArcanistWhoamiWorkflow extends ArcanistBaseWorkflow {
+
+ public function getWorkflowName() {
+ return 'whoami';
+ }
+
+ public function getCommandSynopses() {
+ return phutil_console_format(<<<EOTEXT
+ **whoami**
+EOTEXT
+ );
+ }
+
+ public function getCommandHelp() {
+ return phutil_console_format(<<<EOTEXT
+ View the user name associated with your current login.
+EOTEXT
+ );
+ }
+
+ public function requiresConduit() {
+ return true;
+ }
+
+ public function requiresAuthentication() {
+ return true;
+ }
+
+ public function run() {
+ $conduit = $this->getConduit();
+ $user_info = $conduit->callMethodSynchronous(
+ 'user.whoami',
+ array());
+ echo phutil_console_format(
+ "Logged in as <fg:blue>**%s**</fg> (<fg:blue>**%s**</fg>)\n",
+ $user_info['userName'],
+ $user_info['realName']);
+ }
+
+}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Mar 20, 12:52 AM (2 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7712257
Default Alt Text
D7358.diff (2 KB)
Attached To
Mode
D7358: Add a 'whoami' command for arcanist.
Attached
Detach File
Event Timeline
Log In to Comment