Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15445507
D19566.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D19566.id.diff
View Options
diff --git a/src/applications/conduit/management/PhabricatorConduitCallManagementWorkflow.php b/src/applications/conduit/management/PhabricatorConduitCallManagementWorkflow.php
--- a/src/applications/conduit/management/PhabricatorConduitCallManagementWorkflow.php
+++ b/src/applications/conduit/management/PhabricatorConduitCallManagementWorkflow.php
@@ -21,6 +21,13 @@
'File to read parameters from, or "-" to read from '.
'stdin.'),
),
+ array(
+ 'name' => 'as',
+ 'param' => 'username',
+ 'help' => pht(
+ 'Execute the call as the given user. (If omitted, the call will '.
+ 'be executed as an omnipotent user.)'),
+ ),
));
}
@@ -39,6 +46,22 @@
pht('Specify a file to read parameters from with "--input".'));
}
+ $as = $args->getArg('as');
+ if (strlen($as)) {
+ $actor = id(new PhabricatorPeopleQuery())
+ ->setViewer($viewer)
+ ->withUsernames(array($as))
+ ->executeOne();
+ if (!$actor) {
+ throw new PhutilArgumentUsageException(
+ pht(
+ 'No such user "%s" exists.',
+ $as));
+ }
+ } else {
+ $actor = $viewer;
+ }
+
if ($input === '-') {
fprintf(STDERR, tsprintf("%s\n", pht('Reading input from stdin...')));
$input_json = file_get_contents('php://stdin');
@@ -49,7 +72,7 @@
$params = phutil_json_decode($input_json);
$result = id(new ConduitCall($method, $params))
- ->setUser($viewer)
+ ->setUser($actor)
->execute();
$output = array(
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 28, 2:17 PM (1 w, 22 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7704689
Default Alt Text
D19566.id.diff (1 KB)
Attached To
Mode
D19566: Add an "--as" flag to "bin/conduit call ..." to improve flexibility and ease of profiling
Attached
Detach File
Event Timeline
Log In to Comment