Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91060197
PhabricatorSearchNameController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Nov 7, 10:59
Size
1 KB
Mime Type
text/x-php
Expires
Sat, Nov 9, 10:59 (2 d)
Engine
blob
Format
Raw Data
Handle
22186844
Attached To
rPH Phabricator
PhabricatorSearchNameController.php
View Options
<?php
/**
* @group search
*/
final
class
PhabricatorSearchNameController
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
();
if
(
$request
->
isFormPost
())
{
$named_query
=
id
(
new
PhabricatorNamedQuery
())
->
setUserPHID
(
$user
->
getPHID
())
->
setQueryKey
(
$saved_query
->
getQueryKey
())
->
setQueryName
(
$request
->
getStr
(
'name'
))
->
setEngineClassName
(
$saved_query
->
getEngineClassName
());
try
{
$named_query
->
save
();
}
catch
(
AphrontQueryDuplicateKeyException
$ex
)
{
// Ignore, the user is naming an identical query.
}
return
id
(
new
AphrontRedirectResponse
())
->
setURI
(
$engine
->
getQueryResultsPageURI
(
$saved_query
));
}
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$user
);
$form
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setName
(
'name'
)
->
setLabel
(
pht
(
'Query Name'
)));
$form
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
pht
(
'Save'
)));
return
$this
->
buildStandardPageResponse
(
array
(
$form
,
),
array
(
'title'
=>
'Name Query'
,
));
}
}
Event Timeline
Log In to Comment