Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91306796
DrydockRepositoryOperationQuery.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, 20:41
Size
3 KB
Mime Type
text/x-php
Expires
Mon, Nov 11, 20:41 (2 d)
Engine
blob
Format
Raw Data
Handle
22240084
Attached To
rPH Phabricator
DrydockRepositoryOperationQuery.php
View Options
<?php
final
class
DrydockRepositoryOperationQuery
extends
DrydockQuery
{
private
$ids
;
private
$phids
;
private
$objectPHIDs
;
private
$repositoryPHIDs
;
private
$operationStates
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withObjectPHIDs
(
array
$object_phids
)
{
$this
->
objectPHIDs
=
$object_phids
;
return
$this
;
}
public
function
withRepositoryPHIDs
(
array
$repository_phids
)
{
$this
->
repositoryPHIDs
=
$repository_phids
;
return
$this
;
}
public
function
withOperationStates
(
array
$states
)
{
$this
->
operationStates
=
$states
;
return
$this
;
}
public
function
newResultObject
()
{
return
new
DrydockRepositoryOperation
();
}
protected
function
loadPage
()
{
return
$this
->
loadStandardPage
(
$this
->
newResultObject
());
}
protected
function
willFilterPage
(
array
$operations
)
{
$implementations
=
DrydockRepositoryOperationType
::
getAllOperationTypes
();
foreach
(
$operations
as
$key
=>
$operation
)
{
$impl
=
idx
(
$implementations
,
$operation
->
getOperationType
());
if
(!
$impl
)
{
$this
->
didRejectResult
(
$operation
);
unset
(
$operations
[
$key
]);
continue
;
}
$impl
=
clone
$impl
;
$operation
->
attachImplementation
(
$impl
);
}
$repository_phids
=
mpull
(
$operations
,
'getRepositoryPHID'
);
if
(
$repository_phids
)
{
$repositories
=
id
(
new
PhabricatorRepositoryQuery
())
->
setViewer
(
$this
->
getViewer
())
->
setParentQuery
(
$this
)
->
withPHIDs
(
$repository_phids
)
->
execute
();
$repositories
=
mpull
(
$repositories
,
null
,
'getPHID'
);
}
else
{
$repositories
=
array
();
}
foreach
(
$operations
as
$key
=>
$operation
)
{
$repository
=
idx
(
$repositories
,
$operation
->
getRepositoryPHID
());
if
(!
$repository
)
{
$this
->
didRejectResult
(
$operation
);
unset
(
$operations
[
$key
]);
continue
;
}
$operation
->
attachRepository
(
$repository
);
}
return
$operations
;
}
protected
function
didFilterPage
(
array
$operations
)
{
$object_phids
=
mpull
(
$operations
,
'getObjectPHID'
);
if
(
$object_phids
)
{
$objects
=
id
(
new
PhabricatorObjectQuery
())
->
setViewer
(
$this
->
getViewer
())
->
setParentQuery
(
$this
)
->
withPHIDs
(
$object_phids
)
->
execute
();
$objects
=
mpull
(
$objects
,
null
,
'getPHID'
);
}
else
{
$objects
=
array
();
}
foreach
(
$operations
as
$key
=>
$operation
)
{
$object
=
idx
(
$objects
,
$operation
->
getObjectPHID
());
$operation
->
attachObject
(
$object
);
}
return
$operations
;
}
protected
function
buildWhereClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$where
=
parent
::
buildWhereClauseParts
(
$conn
);
if
(
$this
->
ids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
phids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'phid IN (%Ls)'
,
$this
->
phids
);
}
if
(
$this
->
objectPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'objectPHID IN (%Ls)'
,
$this
->
objectPHIDs
);
}
if
(
$this
->
repositoryPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'repositoryPHID IN (%Ls)'
,
$this
->
repositoryPHIDs
);
}
if
(
$this
->
operationStates
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'operationState IN (%Ls)'
,
$this
->
operationStates
);
}
return
$where
;
}
}
Event Timeline
Log In to Comment