Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104571319
AlmanacQuery.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, 13:55
Size
1 KB
Mime Type
text/x-php
Expires
Wed, Mar 12, 13:55 (1 d, 20 h)
Engine
blob
Format
Raw Data
Handle
24814594
Attached To
rPH Phabricator
AlmanacQuery.php
View Options
<?php
abstract
class
AlmanacQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$needProperties
;
public
function
needProperties
(
$need_properties
)
{
$this
->
needProperties
=
$need_properties
;
return
$this
;
}
protected
function
getNeedProperties
()
{
return
$this
->
needProperties
;
}
protected
function
didFilterPage
(
array
$objects
)
{
$has_properties
=
(
head
(
$objects
)
instanceof
AlmanacPropertyInterface
);
if
(
$has_properties
&&
$this
->
needProperties
)
{
$property_query
=
id
(
new
AlmanacPropertyQuery
())
->
setViewer
(
$this
->
getViewer
())
->
setParentQuery
(
$this
)
->
withObjects
(
$objects
);
$properties
=
$property_query
->
execute
();
$properties
=
mgroup
(
$properties
,
'getObjectPHID'
);
foreach
(
$objects
as
$object
)
{
$object_properties
=
idx
(
$properties
,
$object
->
getPHID
(),
array
());
$object_properties
=
mpull
(
$object_properties
,
null
,
'getFieldName'
);
// Create synthetic properties for defaults on the object itself.
$specs
=
$object
->
getAlmanacPropertyFieldSpecifications
();
foreach
(
$specs
as
$key
=>
$spec
)
{
if
(
empty
(
$object_properties
[
$key
]))
{
$object_properties
[
$key
]
=
id
(
new
AlmanacProperty
())
->
setObjectPHID
(
$object
->
getPHID
())
->
setFieldName
(
$key
)
->
setFieldValue
(
$spec
->
getValueForTransaction
());
}
}
foreach
(
$object_properties
as
$property
)
{
$property
->
attachObject
(
$object
);
}
$object
->
attachAlmanacProperties
(
$object_properties
);
}
}
return
$objects
;
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorAlmanacApplication'
;
}
}
Event Timeline
Log In to Comment