Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F73150
D7358.diff
All Users
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
diff --git a/src/__phutil_library_map__.php b/src/__phutil_library_map__.php
--- a/src/__phutil_library_map__.php
+++ b/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',
diff --git a/src/workflow/ArcanistWhoamiWorkflow.php b/src/workflow/ArcanistWhoamiWorkflow.php
new file mode 100644
--- /dev/null
+++ b/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/x-diff
Storage Engine
amazon-s3
Storage Format
Raw Data
Storage Handle
phabricator/zn/us/c2jv4rzyv5neho3p
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