Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F546463
PhabricatorSearchController.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
PhabricatorSearchController.php
View Options
<?php
final
class
PhabricatorSearchController
extends
PhabricatorSearchBaseController
{
const
SCOPE_CURRENT_APPLICATION
=
'application'
;
public
function
shouldAllowPublic
()
{
return
true
;
}
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$this
->
getViewer
();
$query
=
$request
->
getStr
(
'query'
);
if
(
$request
->
getStr
(
'jump'
)
!=
'no'
&&
phutil_nonempty_string
(
$query
))
{
$jump_uri
=
id
(
new
PhabricatorDatasourceEngine
())
->
setViewer
(
$viewer
)
->
newJumpURI
(
$query
);
if
(
$jump_uri
!==
null
)
{
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$jump_uri
);
}
}
$engine
=
new
PhabricatorSearchApplicationSearchEngine
();
$engine
->
setViewer
(
$viewer
);
// If we're coming from primary search, do some special handling to
// interpret the scope selector and query.
if
(
$request
->
getBool
(
'search:primary'
))
{
// If there's no query, just take the user to advanced search.
if
(!
strlen
(
$query
))
{
$advanced_uri
=
'/search/query/advanced/'
;
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$advanced_uri
);
}
// First, load or construct a template for the search by examining
// the current search scope.
$scope
=
$request
->
getStr
(
'search:scope'
);
$saved
=
null
;
if
(
$scope
==
self
::
SCOPE_CURRENT_APPLICATION
)
{
$application
=
id
(
new
PhabricatorApplicationQuery
())
->
setViewer
(
$viewer
)
->
withClasses
(
array
(
$request
->
getStr
(
'search:application'
)))
->
executeOne
();
if
(
$application
)
{
$types
=
$application
->
getApplicationSearchDocumentTypes
();
if
(
$types
)
{
$saved
=
id
(
new
PhabricatorSavedQuery
())
->
setEngineClassName
(
get_class
(
$engine
))
->
setParameter
(
'types'
,
$types
)
->
setParameter
(
'statuses'
,
array
(
'open'
));
}
}
}
if
(!
$saved
&&
!
$engine
->
isBuiltinQuery
(
$scope
))
{
$saved
=
id
(
new
PhabricatorSavedQueryQuery
())
->
setViewer
(
$viewer
)
->
withQueryKeys
(
array
(
$scope
))
->
executeOne
();
}
if
(!
$saved
)
{
if
(!
$engine
->
isBuiltinQuery
(
$scope
))
{
$scope
=
'all'
;
}
$saved
=
$engine
->
buildSavedQueryFromBuiltin
(
$scope
);
}
// Add the user's query, then save this as a new saved query and send
// the user to the results page.
$saved
->
setParameter
(
'query'
,
$query
);
$unguarded
=
AphrontWriteGuard
::
beginScopedUnguardedWrites
();
try
{
$saved
->
setID
(
null
)->
save
();
}
catch
(
AphrontDuplicateKeyQueryException
$ex
)
{
// Ignore, this is just a repeated search.
}
unset
(
$unguarded
);
$query_key
=
$saved
->
getQueryKey
();
$results_uri
=
$engine
->
getQueryResultsPageURI
(
$query_key
).
'#R'
;
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$results_uri
);
}
$controller
=
id
(
new
PhabricatorApplicationSearchController
())
->
setQueryKey
(
$request
->
getURIData
(
'queryKey'
))
->
setSearchEngine
(
$engine
)
->
setNavigation
(
$this
->
buildSideNavView
());
return
$this
->
delegateToController
(
$controller
);
}
public
function
buildSideNavView
(
$for_app
=
false
)
{
$viewer
=
$this
->
getViewer
();
$nav
=
new
AphrontSideNavFilterView
();
$nav
->
setBaseURI
(
new
PhutilURI
(
$this
->
getApplicationURI
()));
id
(
new
PhabricatorSearchApplicationSearchEngine
())
->
setViewer
(
$viewer
)
->
addNavigationItems
(
$nav
->
getMenu
());
$nav
->
selectFilter
(
null
);
return
$nav
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 1:15 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
122639
Default Alt Text
PhabricatorSearchController.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment