mirror of
https://we.phorge.it/source/phorge.git
synced 2025-04-03 16:08:19 +02:00
Allow custom queries to be deleted
Summary: Ref T2625. Currently, custom saved queries can be edited but not deleted. Allow them to be deleted. Also: - Clean up an unused property in `PhabricatorPasteViewController`. - Fix an issue with left nav highlighting of builtin queries. - Improve submit behavior for edits. - Add a cancel button on edits. Test Plan: Saved, edited and deleted queries. Reviewers: btrahan, blc Reviewed By: btrahan CC: aran Maniphest Tasks: T2625 Differential Revision: https://secure.phabricator.com/D6059
This commit is contained in:
parent
451ddd76bf
commit
3db82cb2ec
8 changed files with 99 additions and 8 deletions
|
@ -1362,6 +1362,7 @@ phutil_register_library_map(array(
|
||||||
'PhabricatorSearchConfigOptions' => 'applications/search/config/PhabricatorSearchConfigOptions.php',
|
'PhabricatorSearchConfigOptions' => 'applications/search/config/PhabricatorSearchConfigOptions.php',
|
||||||
'PhabricatorSearchController' => 'applications/search/controller/PhabricatorSearchController.php',
|
'PhabricatorSearchController' => 'applications/search/controller/PhabricatorSearchController.php',
|
||||||
'PhabricatorSearchDAO' => 'applications/search/storage/PhabricatorSearchDAO.php',
|
'PhabricatorSearchDAO' => 'applications/search/storage/PhabricatorSearchDAO.php',
|
||||||
|
'PhabricatorSearchDeleteController' => 'applications/search/controller/PhabricatorSearchDeleteController.php',
|
||||||
'PhabricatorSearchDocument' => 'applications/search/storage/document/PhabricatorSearchDocument.php',
|
'PhabricatorSearchDocument' => 'applications/search/storage/document/PhabricatorSearchDocument.php',
|
||||||
'PhabricatorSearchDocumentField' => 'applications/search/storage/document/PhabricatorSearchDocumentField.php',
|
'PhabricatorSearchDocumentField' => 'applications/search/storage/document/PhabricatorSearchDocumentField.php',
|
||||||
'PhabricatorSearchDocumentIndexer' => 'applications/search/index/PhabricatorSearchDocumentIndexer.php',
|
'PhabricatorSearchDocumentIndexer' => 'applications/search/index/PhabricatorSearchDocumentIndexer.php',
|
||||||
|
@ -3147,6 +3148,7 @@ phutil_register_library_map(array(
|
||||||
'PhabricatorSearchConfigOptions' => 'PhabricatorApplicationConfigOptions',
|
'PhabricatorSearchConfigOptions' => 'PhabricatorApplicationConfigOptions',
|
||||||
'PhabricatorSearchController' => 'PhabricatorSearchBaseController',
|
'PhabricatorSearchController' => 'PhabricatorSearchBaseController',
|
||||||
'PhabricatorSearchDAO' => 'PhabricatorLiskDAO',
|
'PhabricatorSearchDAO' => 'PhabricatorLiskDAO',
|
||||||
|
'PhabricatorSearchDeleteController' => 'PhabricatorSearchBaseController',
|
||||||
'PhabricatorSearchDocument' => 'PhabricatorSearchDAO',
|
'PhabricatorSearchDocument' => 'PhabricatorSearchDAO',
|
||||||
'PhabricatorSearchDocumentField' => 'PhabricatorSearchDAO',
|
'PhabricatorSearchDocumentField' => 'PhabricatorSearchDAO',
|
||||||
'PhabricatorSearchDocumentRelationship' => 'PhabricatorSearchDAO',
|
'PhabricatorSearchDocumentRelationship' => 'PhabricatorSearchDAO',
|
||||||
|
|
|
@ -38,6 +38,11 @@ final class PhabricatorPasteQueriesController
|
||||||
$item->setBarColor('grey');
|
$item->setBarColor('grey');
|
||||||
} else {
|
} else {
|
||||||
$item->addIcon('none', $date_created);
|
$item->addIcon('none', $date_created);
|
||||||
|
$item->addAction(
|
||||||
|
id(new PhabricatorMenuItemView())
|
||||||
|
->setIcon('delete')
|
||||||
|
->setHref('/search/delete/'.$named_query->getQueryKey().'/')
|
||||||
|
->setWorkflow(true));
|
||||||
$item->addAction(
|
$item->addAction(
|
||||||
id(new PhabricatorMenuItemView())
|
id(new PhabricatorMenuItemView())
|
||||||
->setIcon('edit')
|
->setIcon('edit')
|
||||||
|
|
|
@ -2,13 +2,12 @@
|
||||||
|
|
||||||
final class PhabricatorPasteViewController extends PhabricatorPasteController {
|
final class PhabricatorPasteViewController extends PhabricatorPasteController {
|
||||||
|
|
||||||
|
private $id;
|
||||||
|
|
||||||
public function shouldAllowPublic() {
|
public function shouldAllowPublic() {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
private $id;
|
|
||||||
private $handles;
|
|
||||||
|
|
||||||
public function willProcessRequest(array $data) {
|
public function willProcessRequest(array $data) {
|
||||||
$this->id = $data['id'];
|
$this->id = $data['id'];
|
||||||
}
|
}
|
||||||
|
|
|
@ -84,6 +84,10 @@ final class PhabricatorPasteSearchEngine
|
||||||
return '/paste/query/'.$query->getQueryKey().'/';
|
return '/paste/query/'.$query->getQueryKey().'/';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getQueryManagementURI() {
|
||||||
|
return '/paste/savedqueries/';
|
||||||
|
}
|
||||||
|
|
||||||
public function getBuiltinQueryNames() {
|
public function getBuiltinQueryNames() {
|
||||||
$names = array(
|
$names = array(
|
||||||
'all' => pht('All Pastes'),
|
'all' => pht('All Pastes'),
|
||||||
|
@ -99,6 +103,7 @@ final class PhabricatorPasteSearchEngine
|
||||||
public function buildSavedQueryFromBuiltin($query_key) {
|
public function buildSavedQueryFromBuiltin($query_key) {
|
||||||
|
|
||||||
$query = $this->newSavedQuery();
|
$query = $this->newSavedQuery();
|
||||||
|
$query->setQueryKey($query_key);
|
||||||
|
|
||||||
switch ($query_key) {
|
switch ($query_key) {
|
||||||
case 'all':
|
case 'all':
|
||||||
|
|
|
@ -35,6 +35,7 @@ final class PhabricatorApplicationSearch extends PhabricatorApplication {
|
||||||
'hovercard/(?P<mode>retrieve|test)/' =>
|
'hovercard/(?P<mode>retrieve|test)/' =>
|
||||||
'PhabricatorSearchHovercardController',
|
'PhabricatorSearchHovercardController',
|
||||||
'edit/(?P<queryKey>[^/]+)/' => 'PhabricatorSearchEditController',
|
'edit/(?P<queryKey>[^/]+)/' => 'PhabricatorSearchEditController',
|
||||||
|
'delete/(?P<queryKey>[^/]+)/' => 'PhabricatorSearchDeleteController',
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,60 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @group search
|
||||||
|
*/
|
||||||
|
final class PhabricatorSearchDeleteController
|
||||||
|
extends PhabricatorSearchBaseController {
|
||||||
|
|
||||||
|
private $queryKey;
|
||||||
|
|
||||||
|
public function willProcessRequest(array $data) {
|
||||||
|
$this->queryKey = idx($data, 'queryKey');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function processRequest() {
|
||||||
|
$request = $this->getRequest();
|
||||||
|
$user = $request->getUser();
|
||||||
|
|
||||||
|
$saved_query = id(new PhabricatorSavedQueryQuery())
|
||||||
|
->setViewer($user)
|
||||||
|
->withQueryKeys(array($this->queryKey))
|
||||||
|
->executeOne();
|
||||||
|
|
||||||
|
if (!$saved_query) {
|
||||||
|
return new Aphront404Response();
|
||||||
|
}
|
||||||
|
|
||||||
|
$engine = $saved_query->newEngine();
|
||||||
|
|
||||||
|
$named_query = id(new PhabricatorNamedQueryQuery())
|
||||||
|
->setViewer($user)
|
||||||
|
->withQueryKeys(array($saved_query->getQueryKey()))
|
||||||
|
->withUserPHIDs(array($user->getPHID()))
|
||||||
|
->executeOne();
|
||||||
|
if (!$named_query) {
|
||||||
|
return new Aphront404Response();
|
||||||
|
}
|
||||||
|
|
||||||
|
$return_uri = $engine->getQueryManagementURI();
|
||||||
|
|
||||||
|
if ($request->isDialogFormPost()) {
|
||||||
|
$named_query->delete();
|
||||||
|
return id(new AphrontRedirectResponse())->setURI($return_uri);
|
||||||
|
}
|
||||||
|
|
||||||
|
$dialog = id(new AphrontDialogView())
|
||||||
|
->setUser($user)
|
||||||
|
->setTitle(pht("Really Delete Query?"))
|
||||||
|
->appendChild(
|
||||||
|
pht(
|
||||||
|
'Really delete the query "%s"? You can not undo this. Remember '.
|
||||||
|
'all the great times you had filtering results together?',
|
||||||
|
$named_query->getQueryName()))
|
||||||
|
->addCancelButton($return_uri)
|
||||||
|
->addSubmitButton(pht('Delete Query'));
|
||||||
|
|
||||||
|
return id(new AphrontDialogResponse())->setDialog($dialog);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
|
@ -25,7 +25,10 @@ final class PhabricatorSearchEditController
|
||||||
return new Aphront404Response();
|
return new Aphront404Response();
|
||||||
}
|
}
|
||||||
|
|
||||||
$engine = $saved_query->newEngine();
|
$engine = $saved_query->newEngine()->setViewer($user);
|
||||||
|
|
||||||
|
$complete_uri = $engine->getQueryManagementURI();
|
||||||
|
$cancel_uri = $complete_uri;
|
||||||
|
|
||||||
$named_query = id(new PhabricatorNamedQueryQuery())
|
$named_query = id(new PhabricatorNamedQueryQuery())
|
||||||
->setViewer($user)
|
->setViewer($user)
|
||||||
|
@ -37,6 +40,11 @@ final class PhabricatorSearchEditController
|
||||||
->setUserPHID($user->getPHID())
|
->setUserPHID($user->getPHID())
|
||||||
->setQueryKey($saved_query->getQueryKey())
|
->setQueryKey($saved_query->getQueryKey())
|
||||||
->setEngineClassName($saved_query->getEngineClassName());
|
->setEngineClassName($saved_query->getEngineClassName());
|
||||||
|
|
||||||
|
// If we haven't saved the query yet, this is a "Save..." operation, so
|
||||||
|
// take the user back to the query if they cancel instead of back to the
|
||||||
|
// management interface.
|
||||||
|
$cancel_uri = $engine->getQueryResultsPageURI($saved_query);
|
||||||
}
|
}
|
||||||
|
|
||||||
$e_name = true;
|
$e_name = true;
|
||||||
|
@ -53,9 +61,7 @@ final class PhabricatorSearchEditController
|
||||||
|
|
||||||
if (!$errors) {
|
if (!$errors) {
|
||||||
$named_query->save();
|
$named_query->save();
|
||||||
|
return id(new AphrontRedirectResponse())->setURI($complete_uri);
|
||||||
$results_uri = $engine->getQueryResultsPageURI($saved_query);
|
|
||||||
return id(new AphrontRedirectResponse())->setURI($results_uri);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -76,7 +82,8 @@ final class PhabricatorSearchEditController
|
||||||
|
|
||||||
$form->appendChild(
|
$form->appendChild(
|
||||||
id(new AphrontFormSubmitControl())
|
id(new AphrontFormSubmitControl())
|
||||||
->setValue(pht('Save Query')));
|
->setValue(pht('Save Query'))
|
||||||
|
->addCancelButton($cancel_uri));
|
||||||
|
|
||||||
if ($named_query->getID()) {
|
if ($named_query->getID()) {
|
||||||
$title = pht('Edit Saved Query');
|
$title = pht('Edit Saved Query');
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
* creating and storing saved queries.
|
* creating and storing saved queries.
|
||||||
*
|
*
|
||||||
* @task builtin Builtin Queries
|
* @task builtin Builtin Queries
|
||||||
|
* @task uri Query URIs
|
||||||
*
|
*
|
||||||
* @group search
|
* @group search
|
||||||
*/
|
*/
|
||||||
|
@ -57,10 +58,21 @@ abstract class PhabricatorApplicationSearchEngine {
|
||||||
*
|
*
|
||||||
* @param PhabricatorSavedQuery The query to build a URI for.
|
* @param PhabricatorSavedQuery The query to build a URI for.
|
||||||
* @return string URI where the query can be executed.
|
* @return string URI where the query can be executed.
|
||||||
|
* @task uri
|
||||||
*/
|
*/
|
||||||
abstract public function getQueryResultsPageURI(PhabricatorSavedQuery $query);
|
abstract public function getQueryResultsPageURI(PhabricatorSavedQuery $query);
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Return an application URI for query management. This is used when, e.g.,
|
||||||
|
* a query deletion operation is cancelled.
|
||||||
|
*
|
||||||
|
* @return string URI where queries can be managed.
|
||||||
|
* @task uri
|
||||||
|
*/
|
||||||
|
abstract public function getQueryManagementURI();
|
||||||
|
|
||||||
|
|
||||||
public function newSavedQuery() {
|
public function newSavedQuery() {
|
||||||
return id(new PhabricatorSavedQuery())
|
return id(new PhabricatorSavedQuery())
|
||||||
->setEngineClassName(get_class($this));
|
->setEngineClassName(get_class($this));
|
||||||
|
|
Loading…
Add table
Reference in a new issue