Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104611275
PhabricatorCustomFieldSearchEngineExtension.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 10, 21:22
Size
3 KB
Mime Type
text/x-php
Expires
Wed, Mar 12, 21:22 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24825051
Attached To
rPH Phabricator
PhabricatorCustomFieldSearchEngineExtension.php
View Options
<?php
final
class
PhabricatorCustomFieldSearchEngineExtension
extends
PhabricatorSearchEngineExtension
{
const
EXTENSIONKEY
=
'customfield'
;
public
function
isExtensionEnabled
()
{
return
true
;
}
public
function
getExtensionName
()
{
return
pht
(
'Support for Custom Fields'
);
}
public
function
supportsObject
(
$object
)
{
return
(
$object
instanceof
PhabricatorCustomFieldInterface
);
}
public
function
getExtensionOrder
()
{
return
9000
;
}
public
function
getSearchFields
(
$object
)
{
$engine
=
$this
->
getSearchEngine
();
$custom_fields
=
$this
->
getCustomFields
(
$object
);
$fields
=
array
();
foreach
(
$custom_fields
as
$field
)
{
$fields
[]
=
id
(
new
PhabricatorSearchCustomFieldProxyField
())
->
setSearchEngine
(
$engine
)
->
setCustomField
(
$field
);
}
return
$fields
;
}
public
function
applyConstraintsToQuery
(
$object
,
$query
,
PhabricatorSavedQuery
$saved
,
array
$map
)
{
$engine
=
$this
->
getSearchEngine
();
$fields
=
$this
->
getCustomFields
(
$object
);
foreach
(
$fields
as
$field
)
{
$field
->
applyApplicationSearchConstraintToQuery
(
$engine
,
$query
,
$saved
->
getParameter
(
'custom:'
.
$field
->
getFieldIndex
()));
}
}
private
function
getCustomFields
(
$object
)
{
$fields
=
PhabricatorCustomField
::
getObjectFields
(
$object
,
PhabricatorCustomField
::
ROLE_APPLICATIONSEARCH
);
$fields
->
setViewer
(
$this
->
getViewer
());
return
$fields
->
getFields
();
}
public
function
getFieldSpecificationsForConduit
(
$object
)
{
$fields
=
PhabricatorCustomField
::
getObjectFields
(
$object
,
PhabricatorCustomField
::
ROLE_CONDUIT
);
$map
=
array
();
foreach
(
$fields
->
getFields
()
as
$field
)
{
$key
=
$field
->
getModernFieldKey
();
// TODO: These should have proper types.
$map
[]
=
id
(
new
PhabricatorConduitSearchFieldSpecification
())
->
setKey
(
$key
)
->
setType
(
'wild'
)
->
setDescription
(
$field
->
getFieldDescription
());
}
return
$map
;
}
public
function
loadExtensionConduitData
(
array
$objects
)
{
$viewer
=
$this
->
getViewer
();
$field_map
=
array
();
foreach
(
$objects
as
$object
)
{
$object_phid
=
$object
->
getPHID
();
$fields
=
PhabricatorCustomField
::
getObjectFields
(
$object
,
PhabricatorCustomField
::
ROLE_CONDUIT
);
$fields
->
setViewer
(
$viewer
)
->
readFieldsFromObject
(
$object
);
$field_map
[
$object_phid
]
=
$fields
;
}
$all_fields
=
array
();
foreach
(
$field_map
as
$field_list
)
{
foreach
(
$field_list
->
getFields
()
as
$field
)
{
$all_fields
[]
=
$field
;
}
}
id
(
new
PhabricatorCustomFieldStorageQuery
())
->
addFields
(
$all_fields
)
->
execute
();
return
array
(
'fields'
=>
$field_map
,
);
}
public
function
getFieldValuesForConduit
(
$object
,
$data
)
{
$fields
=
$data
[
'fields'
][
$object
->
getPHID
()];
$map
=
array
();
foreach
(
$fields
->
getFields
()
as
$field
)
{
$key
=
$field
->
getModernFieldKey
();
$map
[
$key
]
=
$field
->
getConduitDictionaryValue
();
}
return
$map
;
}
}
Event Timeline
Log In to Comment