Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F92297587
PhabricatorConduitSearchEngine.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
Tue, Nov 19, 04:47
Size
5 KB
Mime Type
text/x-php
Expires
Thu, Nov 21, 04:47 (2 d)
Engine
blob
Format
Raw Data
Handle
22416369
Attached To
rPH Phabricator
PhabricatorConduitSearchEngine.php
View Options
<?php
final
class
PhabricatorConduitSearchEngine
extends
PhabricatorApplicationSearchEngine
{
public
function
getResultTypeDescription
()
{
return
pht
(
'Conduit Methods'
);
}
public
function
getApplicationClassName
()
{
return
'PhabricatorConduitApplication'
;
}
public
function
canUseInPanelContext
()
{
return
false
;
}
public
function
getPageSize
(
PhabricatorSavedQuery
$saved
)
{
return
PHP_INT_MAX
-
1
;
}
public
function
buildSavedQueryFromRequest
(
AphrontRequest
$request
)
{
$saved
=
new
PhabricatorSavedQuery
();
$saved
->
setParameter
(
'isStable'
,
$request
->
getStr
(
'isStable'
));
$saved
->
setParameter
(
'isUnstable'
,
$request
->
getStr
(
'isUnstable'
));
$saved
->
setParameter
(
'isDeprecated'
,
$request
->
getStr
(
'isDeprecated'
));
$saved
->
setParameter
(
'nameContains'
,
$request
->
getStr
(
'nameContains'
));
return
$saved
;
}
public
function
buildQueryFromSavedQuery
(
PhabricatorSavedQuery
$saved
)
{
$query
=
id
(
new
PhabricatorConduitMethodQuery
());
$query
->
withIsStable
(
$saved
->
getParameter
(
'isStable'
));
$query
->
withIsUnstable
(
$saved
->
getParameter
(
'isUnstable'
));
$query
->
withIsDeprecated
(
$saved
->
getParameter
(
'isDeprecated'
));
$query
->
withIsInternal
(
false
);
$contains
=
$saved
->
getParameter
(
'nameContains'
);
if
(
strlen
(
$contains
))
{
$query
->
withNameContains
(
$contains
);
}
return
$query
;
}
public
function
buildSearchForm
(
AphrontFormView
$form
,
PhabricatorSavedQuery
$saved
)
{
$form
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
pht
(
'Name Contains'
))
->
setName
(
'nameContains'
)
->
setValue
(
$saved
->
getParameter
(
'nameContains'
)));
$is_stable
=
$saved
->
getParameter
(
'isStable'
);
$is_unstable
=
$saved
->
getParameter
(
'isUnstable'
);
$is_deprecated
=
$saved
->
getParameter
(
'isDeprecated'
);
$form
->
appendChild
(
id
(
new
AphrontFormCheckboxControl
())
->
setLabel
(
'Stability'
)
->
addCheckbox
(
'isStable'
,
1
,
hsprintf
(
'<strong>%s</strong>: %s'
,
pht
(
'Stable Methods'
),
pht
(
'Show established API methods with stable interfaces.'
)),
$is_stable
)
->
addCheckbox
(
'isUnstable'
,
1
,
hsprintf
(
'<strong>%s</strong>: %s'
,
pht
(
'Unstable Methods'
),
pht
(
'Show new methods which are subject to change.'
)),
$is_unstable
)
->
addCheckbox
(
'isDeprecated'
,
1
,
hsprintf
(
'<strong>%s</strong>: %s'
,
pht
(
'Deprecated Methods'
),
pht
(
'Show old methods which will be deleted in a future '
.
'version of Phabricator.'
)),
$is_deprecated
));
}
protected
function
getURI
(
$path
)
{
return
'/conduit/'
.
$path
;
}
protected
function
getBuiltinQueryNames
()
{
return
array
(
'modern'
=>
pht
(
'Modern Methods'
),
'all'
=>
pht
(
'All Methods'
),
);
}
public
function
buildSavedQueryFromBuiltin
(
$query_key
)
{
$query
=
$this
->
newSavedQuery
();
$query
->
setQueryKey
(
$query_key
);
switch
(
$query_key
)
{
case
'modern'
:
return
$query
->
setParameter
(
'isStable'
,
true
)
->
setParameter
(
'isUnstable'
,
true
);
case
'all'
:
return
$query
->
setParameter
(
'isStable'
,
true
)
->
setParameter
(
'isUnstable'
,
true
)
->
setParameter
(
'isDeprecated'
,
true
);
}
return
parent
::
buildSavedQueryFromBuiltin
(
$query_key
);
}
protected
function
renderResultList
(
array
$methods
,
PhabricatorSavedQuery
$query
,
array
$handles
)
{
assert_instances_of
(
$methods
,
'ConduitAPIMethod'
);
$viewer
=
$this
->
requireViewer
();
$out
=
array
();
$last
=
null
;
$list
=
null
;
foreach
(
$methods
as
$method
)
{
$app
=
$method
->
getApplicationName
();
if
(
$app
!==
$last
)
{
$last
=
$app
;
if
(
$list
)
{
$out
[]
=
$list
;
}
$list
=
id
(
new
PHUIObjectItemListView
());
$list
->
setHeader
(
$app
);
$app_object
=
$method
->
getApplication
();
if
(
$app_object
)
{
$app_name
=
$app_object
->
getName
();
}
else
{
$app_name
=
$app
;
}
}
$method_name
=
$method
->
getAPIMethodName
();
$item
=
id
(
new
PHUIObjectItemView
())
->
setHeader
(
$method_name
)
->
setHref
(
$this
->
getApplicationURI
(
'method/'
.
$method_name
.
'/'
))
->
addAttribute
(
$method
->
getMethodSummary
());
switch
(
$method
->
getMethodStatus
())
{
case
ConduitAPIMethod
::
METHOD_STATUS_STABLE
:
break
;
case
ConduitAPIMethod
::
METHOD_STATUS_UNSTABLE
:
$item
->
addIcon
(
'fa-warning'
,
pht
(
'Unstable'
));
$item
->
setStatusIcon
(
'fa-warning yellow'
);
break
;
case
ConduitAPIMethod
::
METHOD_STATUS_DEPRECATED
:
$item
->
addIcon
(
'fa-warning'
,
pht
(
'Deprecated'
));
$item
->
setStatusIcon
(
'fa-warning red'
);
break
;
case
ConduitAPIMethod
::
METHOD_STATUS_FROZEN
:
$item
->
addIcon
(
'fa-archive'
,
pht
(
'Frozen'
));
$item
->
setStatusIcon
(
'fa-archive grey'
);
break
;
}
$list
->
addItem
(
$item
);
}
if
(
$list
)
{
$out
[]
=
$list
;
}
$result
=
new
PhabricatorApplicationSearchResultView
();
$result
->
setContent
(
$out
);
return
$result
;
}
}
Event Timeline
Log In to Comment