Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F102381442
DrydockResourceSearchEngine.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, Feb 20, 03:02
Size
2 KB
Mime Type
text/x-php
Expires
Sat, Feb 22, 03:02 (2 d)
Engine
blob
Format
Raw Data
Handle
24187907
Attached To
rPH Phabricator
DrydockResourceSearchEngine.php
View Options
<?php
final
class
DrydockResourceSearchEngine
extends
PhabricatorApplicationSearchEngine
{
private
$blueprint
;
public
function
setBlueprint
(
DrydockBlueprint
$blueprint
)
{
$this
->
blueprint
=
$blueprint
;
return
$this
;
}
public
function
getBlueprint
()
{
return
$this
->
blueprint
;
}
public
function
getResultTypeDescription
()
{
return
pht
(
'Drydock Resources'
);
}
public
function
getApplicationClassName
()
{
return
'PhabricatorDrydockApplication'
;
}
public
function
newQuery
()
{
$query
=
new
DrydockResourceQuery
();
$blueprint
=
$this
->
getBlueprint
();
if
(
$blueprint
)
{
$query
->
withBlueprintPHIDs
(
array
(
$blueprint
->
getPHID
()));
}
return
$query
;
}
protected
function
buildQueryFromParameters
(
array
$map
)
{
$query
=
$this
->
newQuery
();
if
(
$map
[
'statuses'
])
{
$query
->
withStatuses
(
$map
[
'statuses'
]);
}
return
$query
;
}
protected
function
buildCustomSearchFields
()
{
return
array
(
id
(
new
PhabricatorSearchCheckboxesField
())
->
setLabel
(
pht
(
'Statuses'
))
->
setKey
(
'statuses'
)
->
setOptions
(
DrydockResourceStatus
::
getStatusMap
()),
);
}
protected
function
getURI
(
$path
)
{
$blueprint
=
$this
->
getBlueprint
();
if
(
$blueprint
)
{
$id
=
$blueprint
->
getID
();
return
"/drydock/blueprint/{$id}/resources/"
.
$path
;
}
else
{
return
'/drydock/resource/'
.
$path
;
}
}
protected
function
getBuiltinQueryNames
()
{
return
array
(
'active'
=>
pht
(
'Active Resources'
),
'all'
=>
pht
(
'All Resources'
),
);
}
public
function
buildSavedQueryFromBuiltin
(
$query_key
)
{
$query
=
$this
->
newSavedQuery
();
$query
->
setQueryKey
(
$query_key
);
switch
(
$query_key
)
{
case
'active'
:
return
$query
->
setParameter
(
'statuses'
,
array
(
DrydockResourceStatus
::
STATUS_PENDING
,
DrydockResourceStatus
::
STATUS_ACTIVE
,
));
case
'all'
:
return
$query
;
}
return
parent
::
buildSavedQueryFromBuiltin
(
$query_key
);
}
protected
function
renderResultList
(
array
$resources
,
PhabricatorSavedQuery
$query
,
array
$handles
)
{
$list
=
id
(
new
DrydockResourceListView
())
->
setUser
(
$this
->
requireViewer
())
->
setResources
(
$resources
);
$result
=
new
PhabricatorApplicationSearchResultView
();
$result
->
setTable
(
$list
);
return
$result
;
}
}
Event Timeline
Log In to Comment