Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F3295288
PhortunePaymentMethodQuery.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
3 KB
Referenced Files
None
Subscribers
None
PhortunePaymentMethodQuery.php
View Options
<?php
final
class
PhortunePaymentMethodQuery
extends
PhabricatorCursorPagedPolicyAwareQuery
{
private
$ids
;
private
$phids
;
private
$accountPHIDs
;
private
$merchantPHIDs
;
private
$statuses
;
public
function
withIDs
(
array
$ids
)
{
$this
->
ids
=
$ids
;
return
$this
;
}
public
function
withPHIDs
(
array
$phids
)
{
$this
->
phids
=
$phids
;
return
$this
;
}
public
function
withAccountPHIDs
(
array
$phids
)
{
$this
->
accountPHIDs
=
$phids
;
return
$this
;
}
public
function
withMerchantPHIDs
(
array
$phids
)
{
$this
->
merchantPHIDs
=
$phids
;
return
$this
;
}
public
function
withStatuses
(
array
$statuses
)
{
$this
->
statuses
=
$statuses
;
return
$this
;
}
public
function
newResultObject
(
)
{
return
new
PhortunePaymentMethod
(
)
;
}
protected
function
willFilterPage
(
array
$methods
)
{
$accounts
=
id
(
new
PhortuneAccountQuery
(
)
)
->
setViewer
(
$this
->
getViewer
(
)
)
->
withPHIDs
(
mpull
(
$methods
,
'getAccountPHID'
)
)
->
execute
(
)
;
$accounts
=
mpull
(
$accounts
,
null
,
'getPHID'
)
;
foreach
(
$methods
as
$key
=>
$method
)
{
$account
=
idx
(
$accounts
,
$method
->
getAccountPHID
(
)
)
;
if
(
!
$account
)
{
unset
(
$methods
[
$key
]
)
;
$this
->
didRejectResult
(
$method
)
;
continue
;
}
$method
->
attachAccount
(
$account
)
;
}
if
(
!
$methods
)
{
return
$methods
;
}
$merchants
=
id
(
new
PhortuneMerchantQuery
(
)
)
->
setViewer
(
$this
->
getViewer
(
)
)
->
withPHIDs
(
mpull
(
$methods
,
'getMerchantPHID'
)
)
->
execute
(
)
;
$merchants
=
mpull
(
$merchants
,
null
,
'getPHID'
)
;
foreach
(
$methods
as
$key
=>
$method
)
{
$merchant
=
idx
(
$merchants
,
$method
->
getMerchantPHID
(
)
)
;
if
(
!
$merchant
)
{
unset
(
$methods
[
$key
]
)
;
$this
->
didRejectResult
(
$method
)
;
continue
;
}
$method
->
attachMerchant
(
$merchant
)
;
}
if
(
!
$methods
)
{
return
$methods
;
}
$provider_configs
=
id
(
new
PhortunePaymentProviderConfigQuery
(
)
)
->
setViewer
(
$this
->
getViewer
(
)
)
->
withPHIDs
(
mpull
(
$methods
,
'getProviderPHID'
)
)
->
execute
(
)
;
$provider_configs
=
mpull
(
$provider_configs
,
null
,
'getPHID'
)
;
foreach
(
$methods
as
$key
=>
$method
)
{
$provider_config
=
idx
(
$provider_configs
,
$method
->
getProviderPHID
(
)
)
;
if
(
!
$provider_config
)
{
unset
(
$methods
[
$key
]
)
;
$this
->
didRejectResult
(
$method
)
;
continue
;
}
$method
->
attachProviderConfig
(
$provider_config
)
;
}
return
$methods
;
}
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
->
accountPHIDs
!==
null
)
{
$where
[
]
=
qsprintf
(
$conn
,
'accountPHID IN (%Ls)'
,
$this
->
accountPHIDs
)
;
}
if
(
$this
->
merchantPHIDs
!==
null
)
{
$where
[
]
=
qsprintf
(
$conn
,
'merchantPHID IN (%Ls)'
,
$this
->
merchantPHIDs
)
;
}
if
(
$this
->
statuses
!==
null
)
{
$where
[
]
=
qsprintf
(
$conn
,
'status IN (%Ls)'
,
$this
->
statuses
)
;
}
return
$where
;
}
public
function
getQueryApplicationClass
(
)
{
return
PhabricatorPhortuneApplication
::
class
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Thu, Mar 27, 01:40 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1177206
Default Alt Text
PhortunePaymentMethodQuery.php (3 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment