Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105922444
PhabricatorApplicationTransactionQuery.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
Thu, Mar 20, 20:43
Size
3 KB
Mime Type
text/x-php
Expires
Sat, Mar 22, 20:43 (2 d)
Engine
blob
Format
Raw Data
Handle
25039837
Attached To
rPH Phabricator
PhabricatorApplicationTransactionQuery.php
View Options
<?php
abstract
class
PhabricatorApplicationTransactionQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$phids
;
private
$objectPHIDs
;
private
$authorPHIDs
;
private
$needComments
=
true
;
private
$needHandles
=
true
;
abstract
protected
function
getTemplateApplicationTransaction
();
protected
function
buildMoreWhereClauses
(
AphrontDatabaseConnection
$conn_r
)
{
return
array
();
}
protected
function
getReversePaging
()
{
return
true
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withObjectPHIDs
(
array
$object_phids
)
{
$this
->
objectPHIDs
=
$object_phids
;
return
$this
;
}
public
function
withAuthorPHIDs
(
array
$author_phids
)
{
$this
->
authorPHIDs
=
$author_phids
;
return
$this
;
}
public
function
needComments
(
$need
)
{
$this
->
needComments
=
$need
;
return
$this
;
}
public
function
needHandles
(
$need
)
{
$this
->
needHandles
=
$need
;
return
$this
;
}
protected
function
loadPage
()
{
$table
=
$this
->
getTemplateApplicationTransaction
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$data
=
queryfx_all
(
$conn_r
,
'SELECT * FROM %T x %Q %Q %Q'
,
$table
->
getTableName
(),
$this
->
buildWhereClause
(
$conn_r
),
$this
->
buildOrderClause
(
$conn_r
),
$this
->
buildLimitClause
(
$conn_r
));
$xactions
=
$table
->
loadAllFromArray
(
$data
);
if
(
$this
->
needComments
)
{
$comment_phids
=
array_filter
(
mpull
(
$xactions
,
'getCommentPHID'
));
$comments
=
array
();
if
(
$comment_phids
)
{
$comments
=
id
(
new
PhabricatorApplicationTransactionCommentQuery
())
->
setTemplate
(
$table
->
getApplicationTransactionCommentObject
())
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$comment_phids
)
->
execute
();
$comments
=
mpull
(
$comments
,
null
,
'getPHID'
);
}
foreach
(
$xactions
as
$xaction
)
{
if
(
$xaction
->
getCommentPHID
())
{
$comment
=
idx
(
$comments
,
$xaction
->
getCommentPHID
());
if
(
$comment
)
{
$xaction
->
attachComment
(
$comment
);
}
}
}
}
else
{
foreach
(
$xactions
as
$xaction
)
{
$xaction
->
setCommentNotLoaded
(
true
);
}
}
if
(
$this
->
needHandles
)
{
$phids
=
array
();
foreach
(
$xactions
as
$xaction
)
{
$phids
[
$xaction
->
getPHID
()]
=
$xaction
->
getRequiredHandlePHIDs
();
}
$handles
=
array
();
$merged
=
array_mergev
(
$phids
);
if
(
$merged
)
{
$handles
=
id
(
new
PhabricatorObjectHandleData
(
$merged
))
->
setViewer
(
$this
->
getViewer
())
->
loadHandles
();
}
foreach
(
$xactions
as
$xaction
)
{
$xaction
->
setHandles
(
array_select_keys
(
$handles
,
$phids
[
$xaction
->
getPHID
()]));
}
}
return
$xactions
;
}
private
function
buildWhereClause
(
AphrontDatabaseConnection
$conn_r
)
{
$where
=
array
();
if
(
$this
->
phids
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'phid IN (%Ls)'
,
$this
->
phids
);
}
if
(
$this
->
objectPHIDs
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'objectPHID IN (%Ls)'
,
$this
->
objectPHIDs
);
}
if
(
$this
->
authorPHIDs
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'authorPHID IN (%Ls)'
,
$this
->
authorPHIDs
);
}
foreach
(
$this
->
buildMoreWhereClauses
(
$conn_r
)
as
$clause
)
{
$where
[]
=
$clause
;
}
return
$this
->
formatWhereClause
(
$where
);
}
}
Event Timeline
Log In to Comment