Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91302426
DifferentialDiffQuery.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
Sat, Nov 9, 19:50
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Nov 11, 19:50 (2 d)
Engine
blob
Format
Raw Data
Handle
22237884
Attached To
rPH Phabricator
DifferentialDiffQuery.php
View Options
<?php
final
class
DifferentialDiffQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$revisionIDs
;
private
$needChangesets
=
false
;
private
$needArcanistProjects
=
false
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withRevisionIDs
(
array
$revision_ids
)
{
$this
->
revisionIDs
=
$revision_ids
;
return
$this
;
}
public
function
needChangesets
(
$bool
)
{
$this
->
needChangesets
=
$bool
;
return
$this
;
}
public
function
needArcanistProjects
(
$bool
)
{
$this
->
needArcanistProjects
=
$bool
;
return
$this
;
}
public
function
loadPage
()
{
$table
=
new
DifferentialDiff
();
$conn_r
=
$table
->
establishConnection
(
'r'
);
$data
=
queryfx_all
(
$conn_r
,
'SELECT * FROM %T %Q %Q %Q'
,
$table
->
getTableName
(),
$this
->
buildWhereClause
(
$conn_r
),
$this
->
buildOrderClause
(
$conn_r
),
$this
->
buildLimitClause
(
$conn_r
));
return
$table
->
loadAllFromArray
(
$data
);
}
public
function
willFilterPage
(
array
$diffs
)
{
if
(
$this
->
needChangesets
)
{
$this
->
loadChangesets
(
$diffs
);
}
if
(
$this
->
needArcanistProjects
)
{
$this
->
loadArcanistProjects
(
$diffs
);
}
return
$diffs
;
}
private
function
loadChangesets
(
array
$diffs
)
{
foreach
(
$diffs
as
$diff
)
{
$diff
->
attachChangesets
(
$diff
->
loadRelatives
(
new
DifferentialChangeset
(),
'diffID'
));
foreach
(
$diff
->
getChangesets
()
as
$changeset
)
{
$changeset
->
attachHunks
(
$changeset
->
loadRelatives
(
new
DifferentialHunk
(),
'changesetID'
));
}
}
return
$diffs
;
}
private
function
loadArcanistProjects
(
array
$diffs
)
{
$phids
=
array_filter
(
mpull
(
$diffs
,
'getArcanistProjectPHID'
));
$projects
=
array
();
$project_map
=
array
();
if
(
$phids
)
{
$projects
=
id
(
new
PhabricatorRepositoryArcanistProject
())
->
loadAllWhere
(
'phid IN (%Ls)'
,
$phids
);
$project_map
=
mpull
(
$projects
,
null
,
'getPHID'
);
}
foreach
(
$diffs
as
$diff
)
{
$project
=
null
;
if
(
$diff
->
getArcanistProjectPHID
())
{
$project
=
idx
(
$project_map
,
$diff
->
getArcanistProjectPHID
());
}
$diff
->
attachArcanistProject
(
$project
);
}
return
$diffs
;
}
private
function
buildWhereClause
(
AphrontDatabaseConnection
$conn_r
)
{
$where
=
array
();
if
(
$this
->
ids
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
revisionIDs
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'revisionID IN (%Ld)'
,
$this
->
revisionIDs
);
}
$where
[]
=
$this
->
buildPagingClause
(
$conn_r
);
return
$this
->
formatWhereClause
(
$where
);
}
}
Event Timeline
Log In to Comment