Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F100837332
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
Mon, Feb 3, 04:04
Size
5 KB
Mime Type
text/x-php
Expires
Wed, Feb 5, 04:04 (2 d)
Engine
blob
Format
Raw Data
Handle
24039596
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
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
(
'applicationNames'
,
$request
->
getStrList
(
'applicationNames'
));
$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
);
$names
=
$saved
->
getParameter
(
'applicationNames'
,
array
());
if
(
$names
)
{
$query
->
withApplicationNames
(
$names
);
}
$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'
)));
$names
=
$saved
->
getParameter
(
'applicationNames'
,
array
());
$form
->
appendChild
(
id
(
new
AphrontFormTextControl
())
->
setLabel
(
pht
(
'Applications'
))
->
setName
(
'applicationNames'
)
->
setValue
(
implode
(
', '
,
$names
))
->
setCaption
(
pht
(
'Example: %s'
,
phutil_tag
(
'tt'
,
array
(),
'differential, paste'
))));
$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
;
}
$list
->
addItem
(
$item
);
}
if
(
$list
)
{
$out
[]
=
$list
;
}
$result
=
new
PhabricatorApplicationSearchResultView
();
$result
->
setContent
(
$out
);
return
$result
;
}
}
Event Timeline
Log In to Comment