Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F933250
PhabricatorAppSearchEngine.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
8 KB
Referenced Files
None
Subscribers
None
PhabricatorAppSearchEngine.php
View Options
<?php
final
class
PhabricatorAppSearchEngine
extends
PhabricatorApplicationSearchEngine
{
public
function
getResultTypeDescription
()
{
return
pht
(
'Applications'
);
}
public
function
getApplicationClassName
()
{
return
PhabricatorApplicationsApplication
::
class
;
}
public
function
getPageSize
(
PhabricatorSavedQuery
$saved
)
{
return
INF
;
}
public
function
buildSavedQueryFromRequest
(
AphrontRequest
$request
)
{
$saved
=
new
PhabricatorSavedQuery
();
$saved
->
setParameter
(
'name'
,
$request
->
getStr
(
'name'
));
$saved
->
setParameter
(
'installed'
,
$this
->
readBoolFromRequest
(
$request
,
'installed'
));
$saved
->
setParameter
(
'prototypes'
,
$this
->
readBoolFromRequest
(
$request
,
'prototypes'
));
$saved
->
setParameter
(
'firstParty'
,
$this
->
readBoolFromRequest
(
$request
,
'firstParty'
));
$saved
->
setParameter
(
'launchable'
,
$this
->
readBoolFromRequest
(
$request
,
'launchable'
));
$saved
->
setParameter
(
'appemails'
,
$this
->
readBoolFromRequest
(
$request
,
'appemails'
));
return
$saved
;
}
public
function
buildQueryFromSavedQuery
(
PhabricatorSavedQuery
$saved
)
{
$query
=
id
(
new
PhabricatorApplicationQuery
())
->
setOrder
(
PhabricatorApplicationQuery
::
ORDER_NAME
)
->
withUnlisted
(
false
);
$name
=
$saved
->
getParameter
(
'name'
);
if
(
phutil_nonempty_string
(
$name
))
{
$query
->
withNameContains
(
$name
);
}
$installed
=
$saved
->
getParameter
(
'installed'
);
if
(
$installed
!==
null
)
{
$query
->
withInstalled
(
$installed
);
}
$prototypes
=
$saved
->
getParameter
(
'prototypes'
);
if
(
$prototypes
===
null
)
{
// NOTE: This is the old name of the 'prototypes' option, see T6084.
$prototypes
=
$saved
->
getParameter
(
'beta'
);
$saved
->
setParameter
(
'prototypes'
,
$prototypes
);
}
if
(
$prototypes
!==
null
)
{
$query
->
withPrototypes
(
$prototypes
);
}
$first_party
=
$saved
->
getParameter
(
'firstParty'
);
if
(
$first_party
!==
null
)
{
$query
->
withFirstParty
(
$first_party
);
}
$launchable
=
$saved
->
getParameter
(
'launchable'
);
if
(
$launchable
!==
null
)
{
$query
->
withLaunchable
(
$launchable
);
}
$appemails
=
$saved
->
getParameter
(
'appemails'
);
if
(
$appemails
!==
null
)
{
$query
->
withApplicationEmailSupport
(
$appemails
);
}
return
$query
;
}
public
function
buildSearchForm
(
AphrontFormView
$form
,
PhabricatorSavedQuery
$saved
)
{
$form
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
pht
(
'Name Contains'
))
->
setName
(
'name'
)
->
setValue
(
$saved
->
getParameter
(
'name'
)))
->
appendChild
(
id
(
new
AphrontFormSelectControl
())
->
setLabel
(
pht
(
'Installed'
))
->
setName
(
'installed'
)
->
setValue
(
$this
->
getBoolFromQuery
(
$saved
,
'installed'
))
->
setOptions
(
array
(
''
=>
pht
(
'Show All Applications'
),
'true'
=>
pht
(
'Show Installed Applications'
),
'false'
=>
pht
(
'Show Uninstalled Applications'
),
)))
->
appendChild
(
id
(
new
AphrontFormSelectControl
())
->
setLabel
(
pht
(
'Prototypes'
))
->
setName
(
'prototypes'
)
->
setValue
(
$this
->
getBoolFromQuery
(
$saved
,
'prototypes'
))
->
setOptions
(
array
(
''
=>
pht
(
'Show All Applications'
),
'true'
=>
pht
(
'Show Prototype Applications'
),
'false'
=>
pht
(
'Show Released Applications'
),
)))
->
appendChild
(
id
(
new
AphrontFormSelectControl
())
->
setLabel
(
pht
(
'Provenance'
))
->
setName
(
'firstParty'
)
->
setValue
(
$this
->
getBoolFromQuery
(
$saved
,
'firstParty'
))
->
setOptions
(
array
(
''
=>
pht
(
'Show All Applications'
),
'true'
=>
pht
(
'Show First-Party Applications'
),
'false'
=>
pht
(
'Show Third-Party Applications'
),
)))
->
appendChild
(
id
(
new
AphrontFormSelectControl
())
->
setLabel
(
pht
(
'Launchable'
))
->
setName
(
'launchable'
)
->
setValue
(
$this
->
getBoolFromQuery
(
$saved
,
'launchable'
))
->
setOptions
(
array
(
''
=>
pht
(
'Show All Applications'
),
'true'
=>
pht
(
'Show Launchable Applications'
),
'false'
=>
pht
(
'Show Non-Launchable Applications'
),
)))
->
appendChild
(
id
(
new
AphrontFormSelectControl
())
->
setLabel
(
pht
(
'Application Emails'
))
->
setName
(
'appemails'
)
->
setValue
(
$this
->
getBoolFromQuery
(
$saved
,
'appemails'
))
->
setOptions
(
array
(
''
=>
pht
(
'Show All Applications'
),
'true'
=>
pht
(
'Show Applications w/ App Email Support'
),
'false'
=>
pht
(
'Show Applications w/o App Email Support'
),
)));
}
protected
function
getURI
(
$path
)
{
return
'/applications/'
.
$path
;
}
protected
function
getBuiltinQueryNames
()
{
return
array
(
'launcher'
=>
pht
(
'Launcher'
),
'all'
=>
pht
(
'All Applications'
),
);
}
public
function
buildSavedQueryFromBuiltin
(
$query_key
)
{
$query
=
$this
->
newSavedQuery
();
$query
->
setQueryKey
(
$query_key
);
switch
(
$query_key
)
{
case
'launcher'
:
return
$query
->
setParameter
(
'installed'
,
true
)
->
setParameter
(
'launchable'
,
true
);
case
'all'
:
return
$query
;
}
return
parent
::
buildSavedQueryFromBuiltin
(
$query_key
);
}
protected
function
renderResultList
(
array
$all_applications
,
PhabricatorSavedQuery
$query
,
array
$handle
)
{
assert_instances_of
(
$all_applications
,
'PhabricatorApplication'
);
$all_applications
=
msort
(
$all_applications
,
'getName'
);
if
(
$query
->
getQueryKey
()
==
'launcher'
)
{
$groups
=
mgroup
(
$all_applications
,
'getApplicationGroup'
);
}
else
{
$groups
=
array
(
$all_applications
);
}
$group_names
=
PhabricatorApplication
::
getApplicationGroups
();
$groups
=
array_select_keys
(
$groups
,
array_keys
(
$group_names
))
+
$groups
;
$results
=
array
();
foreach
(
$groups
as
$group
=>
$applications
)
{
if
(
count
(
$groups
)
>
1
)
{
$results
[]
=
phutil_tag
(
'h1'
,
array
(
'class'
=>
'phui-oi-list-header'
,
),
idx
(
$group_names
,
$group
,
$group
));
}
$list
=
new
PHUIObjectItemListView
();
foreach
(
$applications
as
$application
)
{
$icon
=
$application
->
getIcon
();
if
(!
$icon
)
{
$icon
=
'application'
;
}
$description
=
$application
->
getShortDescription
();
$configure
=
id
(
new
PHUIButtonView
())
->
setTag
(
'a'
)
->
setIcon
(
'fa-gears'
)
->
setHref
(
'/applications/view/'
.
get_class
(
$application
).
'/'
)
->
setText
(
pht
(
'Configure'
))
->
setColor
(
PHUIButtonView
::
GREY
);
$name
=
$application
->
getName
();
$item
=
id
(
new
PHUIObjectItemView
())
->
setHeader
(
$name
)
->
setImageIcon
(
$icon
)
->
setSideColumn
(
$configure
);
if
(!
$application
->
isFirstParty
())
{
$extension_tag
=
id
(
new
PHUITagView
())
->
setName
(
pht
(
'Extension'
))
->
setIcon
(
'fa-plug'
)
->
setColor
(
PHUITagView
::
COLOR_INDIGO
)
->
setType
(
PHUITagView
::
TYPE_SHADE
)
->
setSlimShady
(
true
);
$item
->
addAttribute
(
$extension_tag
);
}
if
(
$application
->
isPrototype
())
{
$prototype_tag
=
id
(
new
PHUITagView
())
->
setName
(
pht
(
'Prototype'
))
->
setIcon
(
'fa-exclamation-circle'
)
->
setColor
(
PHUITagView
::
COLOR_ORANGE
)
->
setType
(
PHUITagView
::
TYPE_SHADE
)
->
setSlimShady
(
true
);
$item
->
addAttribute
(
$prototype_tag
);
}
if
(
$application
->
isDeprecated
())
{
$deprecated_tag
=
id
(
new
PHUITagView
())
->
setName
(
pht
(
'Deprecated'
))
->
setIcon
(
'fa-exclamation-triangle'
)
->
setColor
(
PHUITagView
::
COLOR_RED
)
->
setType
(
PHUITagView
::
TYPE_SHADE
)
->
setSlimShady
(
true
);
$item
->
addAttribute
(
$deprecated_tag
);
}
$item
->
addAttribute
(
$description
);
if
(
$application
->
getBaseURI
()
&&
$application
->
isInstalled
())
{
$item
->
setHref
(
$application
->
getBaseURI
());
}
if
(!
$application
->
isInstalled
())
{
$item
->
addAttribute
(
pht
(
'Uninstalled'
));
$item
->
setDisabled
(
true
);
}
$list
->
addItem
(
$item
);
}
$results
[]
=
$list
;
}
$result
=
new
PhabricatorApplicationSearchResultView
();
$result
->
setContent
(
$results
);
return
$result
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, Jun 16, 9:47 PM (1 d, 15 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
220694
Default Alt Text
PhabricatorAppSearchEngine.php (8 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment