Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15466458
D20134.id48075.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
D20134.id48075.diff
View Options
diff --git a/src/applications/typeahead/controller/PhabricatorTypeaheadModularDatasourceController.php b/src/applications/typeahead/controller/PhabricatorTypeaheadModularDatasourceController.php
--- a/src/applications/typeahead/controller/PhabricatorTypeaheadModularDatasourceController.php
+++ b/src/applications/typeahead/controller/PhabricatorTypeaheadModularDatasourceController.php
@@ -35,7 +35,26 @@
if (isset($sources[$class])) {
$source = $sources[$class];
- $source->setParameters($request->getRequestData());
+
+ $parameters = array();
+
+ $raw_parameters = $request->getStr('parameters');
+ if (strlen($raw_parameters)) {
+ try {
+ $parameters = phutil_json_decode($raw_parameters);
+ } catch (PhutilJSONParserException $ex) {
+ return $this->newDialog()
+ ->setTitle(pht('Invalid Parameters'))
+ ->appendParagraph(
+ pht(
+ 'The HTTP parameter named "parameters" for this request is '.
+ 'not a valid JSON parameter. JSON is required. Exception: %s',
+ $ex->getMessage()))
+ ->addCancelButton('/');
+ }
+ }
+
+ $source->setParameters($parameters);
$source->setViewer($viewer);
// NOTE: Wrapping the source in a Composite datasource ensures we perform
diff --git a/src/applications/typeahead/datasource/PhabricatorTypeaheadDatasource.php b/src/applications/typeahead/datasource/PhabricatorTypeaheadDatasource.php
--- a/src/applications/typeahead/datasource/PhabricatorTypeaheadDatasource.php
+++ b/src/applications/typeahead/datasource/PhabricatorTypeaheadDatasource.php
@@ -100,7 +100,7 @@
public function getDatasourceURI() {
$uri = new PhutilURI('/typeahead/class/'.get_class($this).'/');
- $uri->setQueryParams($this->parameters);
+ $uri->setQueryParams($this->newURIParameters());
return (string)$uri;
}
@@ -110,10 +110,22 @@
}
$uri = new PhutilURI('/typeahead/browse/'.get_class($this).'/');
- $uri->setQueryParams($this->parameters);
+ $uri->setQueryParams($this->newURIParameters());
return (string)$uri;
}
+ private function newURIParameters() {
+ if (!$this->parameters) {
+ return array();
+ }
+
+ $map = array(
+ 'parameters' => phutil_json_encode($this->parameters),
+ );
+
+ return $map;
+ }
+
abstract public function getPlaceholderText();
public function getBrowseTitle() {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Apr 4, 5:42 AM (1 d, 14 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7576257
Default Alt Text
D20134.id48075.diff (2 KB)
Attached To
Mode
D20134: Allow typeaheads to pass nonscalar data to datasources
Attached
Detach File
Event Timeline
Log In to Comment