Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91237284
PhabricatorRepositoryPushLogQuery.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, 06:15
Size
2 KB
Mime Type
text/x-php
Expires
Mon, Nov 11, 06:15 (2 d)
Engine
blob
Format
Raw Data
Handle
22226959
Attached To
rPH Phabricator
PhabricatorRepositoryPushLogQuery.php
View Options
<?php
final
class
PhabricatorRepositoryPushLogQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$repositoryPHIDs
;
private
$pusherPHIDs
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withRepositoryPHIDs
(
array
$repository_phids
)
{
$this
->
repositoryPHIDs
=
$repository_phids
;
return
$this
;
}
public
function
withPusherPHIDs
(
array
$pusher_phids
)
{
$this
->
pusherPHIDs
=
$pusher_phids
;
return
$this
;
}
protected
function
loadPage
()
{
$table
=
new
PhabricatorRepositoryPushLog
();
$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
$logs
)
{
$repository_phids
=
mpull
(
$logs
,
'getRepositoryPHID'
);
if
(
$repository_phids
)
{
$repositories
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
$this
->
getViewer
())
->
withPHIDs
(
$repository_phids
)
->
execute
();
$repositories
=
mpull
(
$repositories
,
null
,
'getPHID'
);
}
else
{
$repositories
=
array
();
}
foreach
(
$logs
as
$key
=>
$log
)
{
$phid
=
$log
->
getRepositoryPHID
();
if
(
empty
(
$repositories
[
$phid
]))
{
unset
(
$logs
[
$key
]);
continue
;
}
$log
->
attachRepository
(
$repositories
[
$phid
]);
}
return
$logs
;
}
private
function
buildWhereClause
(
AphrontDatabaseConnection
$conn_r
)
{
$where
=
array
();
if
(
$this
->
ids
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
repositoryPHIDs
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'repositoryPHID IN (%Ls)'
,
$this
->
repositoryPHIDs
);
}
if
(
$this
->
pusherPHIDs
)
{
$where
[]
=
qsprintf
(
$conn_r
,
'pusherPHID in (%Ls)'
,
$this
->
pusherPHIDs
);
}
$where
[]
=
$this
->
buildPagingClause
(
$conn_r
);
return
$this
->
formatWhereClause
(
$where
);
}
public
function
getQueryApplicationClass
()
{
return
'PhabricatorApplicationDiffusion'
;
}
}
Event Timeline
Log In to Comment