Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15423637
D21613.id51459.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
D21613.id51459.diff
View Options
diff --git a/src/applications/differential/conduit/DifferentialQueryConduitAPIMethod.php b/src/applications/differential/conduit/DifferentialQueryConduitAPIMethod.php
--- a/src/applications/differential/conduit/DifferentialQueryConduitAPIMethod.php
+++ b/src/applications/differential/conduit/DifferentialQueryConduitAPIMethod.php
@@ -38,7 +38,7 @@
'authors' => 'optional list<phid>',
'ccs' => 'optional list<phid>',
'reviewers' => 'optional list<phid>',
- 'paths' => 'optional list<pair<callsign, path>>',
+ 'paths' => 'unsupported',
'commitHashes' => 'optional list<pair<'.$hash_const.', string>>',
'status' => 'optional '.$status_const,
'order' => 'optional '.$order_const,
@@ -92,48 +92,11 @@
}
if ($path_pairs) {
- $paths = array();
- foreach ($path_pairs as $pair) {
- list($callsign, $path) = $pair;
- $paths[] = $path;
- }
-
- $path_map = id(new DiffusionPathIDQuery($paths))->loadPathIDs();
- if (count($path_map) != count($paths)) {
- $unknown_paths = array();
- foreach ($paths as $p) {
- if (!idx($path_map, $p)) {
- $unknown_paths[] = $p;
- }
- }
- throw id(new ConduitException('ERR-INVALID-PARAMETER'))
- ->setErrorDescription(
- pht(
- 'Unknown paths: %s',
- implode(', ', $unknown_paths)));
- }
-
- $repos = array();
- foreach ($path_pairs as $pair) {
- list($callsign, $path) = $pair;
- if (!idx($repos, $callsign)) {
- $repos[$callsign] = id(new PhabricatorRepositoryQuery())
- ->setViewer($request->getUser())
- ->withCallsigns(array($callsign))
- ->executeOne();
-
- if (!$repos[$callsign]) {
- throw id(new ConduitException('ERR-INVALID-PARAMETER'))
- ->setErrorDescription(
- pht(
- 'Unknown repo callsign: %s',
- $callsign));
- }
- }
- $repo = $repos[$callsign];
-
- $query->withPath($repo->getID(), idx($path_map, $path));
- }
+ throw new Exception(
+ pht(
+ 'Parameter "paths" to Conduit API method "differential.query" is '.
+ 'no longer supported. Use the "paths" constraint to '.
+ '"differential.revision.search" instead. See T13639.'));
}
if ($commit_hashes) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sun, Mar 23, 4:25 PM (2 w, 1 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7584347
Default Alt Text
D21613.id51459.diff (2 KB)
Attached To
Mode
D21613: Remove support for "paths" parameter in "differential.query"
Attached
Detach File
Event Timeline
Log In to Comment