Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F546620
PhabricatorTokenGivenQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
PhabricatorTokenGivenQuery.php
View Options
<?php
final
class
PhabricatorTokenGivenQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$authorPHIDs
;
private
$objectPHIDs
;
private
$tokenPHIDs
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withTokenPHIDs
(
array
$token_phids
)
{
$this
->
tokenPHIDs
=
$token_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
newResultObject
()
{
return
new
PhabricatorTokenGiven
();
}
protected
function
buildWhereClauseParts
(
AphrontDatabaseConnection
$conn
)
{
$where
=
parent
::
buildWhereClauseParts
(
$conn
);
if
(
$this
->
ids
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'id IN (%Ld)'
,
$this
->
ids
);
}
if
(
$this
->
authorPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'authorPHID IN (%Ls)'
,
$this
->
authorPHIDs
);
}
if
(
$this
->
objectPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'objectPHID IN (%Ls)'
,
$this
->
objectPHIDs
);
}
if
(
$this
->
tokenPHIDs
!==
null
)
{
$where
[]
=
qsprintf
(
$conn
,
'tokenPHID IN (%Ls)'
,
$this
->
tokenPHIDs
);
}
return
$where
;
}
protected
function
willFilterPage
(
array
$results
)
{
$viewer
=
$this
->
getViewer
();
$object_phids
=
mpull
(
$results
,
'getObjectPHID'
);
$objects
=
id
(
new
PhabricatorObjectQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
$object_phids
)
->
execute
();
$objects
=
mpull
(
$objects
,
null
,
'getPHID'
);
foreach
(
$results
as
$key
=>
$result
)
{
$object
=
idx
(
$objects
,
$result
->
getObjectPHID
());
if
(
$object
)
{
if
(
$object
instanceof
PhabricatorTokenReceiverInterface
)
{
$result
->
attachObject
(
$object
);
continue
;
}
}
$this
->
didRejectResult
(
$result
);
unset
(
$results
[
$key
]);
}
if
(!
$results
)
{
return
$results
;
}
$token_phids
=
mpull
(
$results
,
'getTokenPHID'
);
$tokens
=
id
(
new
PhabricatorTokenQuery
())
->
setViewer
(
$viewer
)
->
withPHIDs
(
$token_phids
)
->
execute
();
$tokens
=
mpull
(
$tokens
,
null
,
'getPHID'
);
foreach
(
$results
as
$key
=>
$result
)
{
$token_phid
=
$result
->
getTokenPHID
();
$token
=
idx
(
$tokens
,
$token_phid
);
if
(!
$token
)
{
$this
->
didRejectResult
(
$result
);
unset
(
$results
[
$key
]);
continue
;
}
$result
->
attachToken
(
$token
);
}
return
$results
;
}
public
function
getQueryApplicationClass
()
{
return
PhabricatorTokensApplication
::
class
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Mon, May 12, 1:18 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
107735
Default Alt Text
PhabricatorTokenGivenQuery.php (2 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment