Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F106790688
PhabricatorConfigClusterSearchController.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
Mon, Mar 31, 16:46
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Apr 2, 16:46 (2 d)
Engine
blob
Format
Raw Data
Handle
25275452
Attached To
rPH Phabricator
PhabricatorConfigClusterSearchController.php
View Options
<?php
final
class
PhabricatorConfigClusterSearchController
extends
PhabricatorConfigController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$nav
=
$this
->
buildSideNavView
();
$nav
->
selectFilter
(
'cluster/search/'
);
$title
=
pht
(
'Cluster Search'
);
$doc_href
=
PhabricatorEnv
::
getDoclink
(
'Cluster: Search'
);
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
$title
)
->
setProfileHeader
(
true
)
->
addActionLink
(
id
(
new
PHUIButtonView
())
->
setIcon
(
'fa-book'
)
->
setHref
(
$doc_href
)
->
setTag
(
'a'
)
->
setText
(
pht
(
'Documentation'
)));
$crumbs
=
$this
->
buildApplicationCrumbs
(
$nav
)
->
addTextCrumb
(
$title
)
->
setBorder
(
true
);
$search_status
=
$this
->
buildClusterSearchStatus
();
$content
=
id
(
new
PhabricatorConfigPageView
())
->
setHeader
(
$header
)
->
setContent
(
$search_status
);
return
$this
->
newPage
()
->
setTitle
(
$title
)
->
setCrumbs
(
$crumbs
)
->
setNavigation
(
$nav
)
->
appendChild
(
$content
)
->
addClass
(
'white-background'
);
}
private
function
buildClusterSearchStatus
()
{
$viewer
=
$this
->
getViewer
();
$services
=
PhabricatorSearchService
::
getAllServices
();
Javelin
::
initBehavior
(
'phabricator-tooltips'
);
$view
=
array
();
foreach
(
$services
as
$service
)
{
$view
[]
=
$this
->
renderStatusView
(
$service
);
}
return
$view
;
}
private
function
renderStatusView
(
$service
)
{
$head
=
array_merge
(
array
(
pht
(
'Type'
)),
array_keys
(
$service
->
getStatusViewColumns
()),
array
(
pht
(
'Status'
)));
$rows
=
array
();
$status_map
=
PhabricatorSearchService
::
getConnectionStatusMap
();
$stats
=
false
;
$stats_view
=
false
;
foreach
(
$service
->
getHosts
()
as
$host
)
{
try
{
$status
=
$host
->
getConnectionStatus
();
$status
=
idx
(
$status_map
,
$status
,
array
());
}
catch
(
Exception
$ex
)
{
$status
[
'icon'
]
=
'fa-times'
;
$status
[
'label'
]
=
pht
(
'Connection Error'
);
$status
[
'color'
]
=
'red'
;
$host
->
didHealthCheck
(
false
);
}
if
(!
$stats_view
)
{
try
{
$stats
=
$host
->
getEngine
()->
getIndexStats
(
$host
);
$stats_view
=
$this
->
renderIndexStats
(
$stats
);
}
catch
(
Exception
$e
)
{
$stats_view
=
false
;
}
}
$type_icon
=
'fa-search sky'
;
$type_tip
=
$host
->
getDisplayName
();
$type_icon
=
id
(
new
PHUIIconView
())
->
setIcon
(
$type_icon
);
$status_view
=
array
(
id
(
new
PHUIIconView
())->
setIcon
(
$status
[
'icon'
].
' '
.
$status
[
'color'
]),
' '
,
$status
[
'label'
],
);
$row
=
array
(
array
(
$type_icon
,
' '
,
$type_tip
));
$row
=
array_merge
(
$row
,
array_values
(
$host
->
getStatusViewColumns
()));
$row
[]
=
$status_view
;
$rows
[]
=
$row
;
}
$table
=
id
(
new
AphrontTableView
(
$rows
))
->
setNoDataString
(
pht
(
'No search servers are configured.'
))
->
setHeaders
(
$head
);
$view
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
$service
->
getDisplayName
())
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
setTable
(
$table
);
if
(
$stats_view
)
{
$view
->
addPropertyList
(
$stats_view
);
}
return
$view
;
}
private
function
renderIndexStats
(
$stats
)
{
$view
=
id
(
new
PHUIPropertyListView
());
if
(
$stats
!==
false
)
{
foreach
(
$stats
as
$label
=>
$val
)
{
$view
->
addProperty
(
$label
,
$val
);
}
}
return
$view
;
}
}
Event Timeline
Log In to Comment