Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90817045
PhortuneController.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
Tue, Nov 5, 01:07
Size
2 KB
Mime Type
text/x-php
Expires
Thu, Nov 7, 01:07 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22139909
Attached To
rPH Phabricator
PhortuneController.php
View Options
<?php
abstract
class
PhortuneController
extends
PhabricatorController
{
protected
function
addAccountCrumb
(
$crumbs
,
PhortuneAccount
$account
,
$link
=
true
)
{
$name
=
$account
->
getName
();
$href
=
null
;
if
(
$link
)
{
$href
=
$this
->
getApplicationURI
(
$account
->
getID
().
'/'
);
$crumbs
->
addTextCrumb
(
$name
,
$href
);
}
else
{
$crumbs
->
addTextCrumb
(
$name
);
}
}
protected
function
addMerchantCrumb
(
$crumbs
,
PhortuneMerchant
$merchant
,
$link
=
true
)
{
$name
=
$merchant
->
getName
();
$href
=
null
;
$crumbs
->
addTextCrumb
(
pht
(
'Merchants'
),
$this
->
getApplicationURI
(
'merchant/'
));
if
(
$link
)
{
$href
=
$this
->
getApplicationURI
(
'merchant/'
.
$merchant
->
getID
().
'/'
);
$crumbs
->
addTextCrumb
(
$name
,
$href
);
}
else
{
$crumbs
->
addTextCrumb
(
$name
);
}
}
private
function
loadEnabledProvidersForMerchant
(
PhortuneMerchant
$merchant
)
{
$viewer
=
$this
->
getRequest
()->
getUser
();
$provider_configs
=
id
(
new
PhortunePaymentProviderConfigQuery
())
->
setViewer
(
$viewer
)
->
withMerchantPHIDs
(
array
(
$merchant
->
getPHID
()))
->
execute
();
$providers
=
mpull
(
$provider_configs
,
'buildProvider'
,
'getID'
);
foreach
(
$providers
as
$key
=>
$provider
)
{
if
(!
$provider
->
isEnabled
())
{
unset
(
$providers
[
$key
]);
}
}
return
$providers
;
}
protected
function
loadCreatePaymentMethodProvidersForMerchant
(
PhortuneMerchant
$merchant
)
{
$providers
=
$this
->
loadEnabledProvidersForMerchant
(
$merchant
);
foreach
(
$providers
as
$key
=>
$provider
)
{
if
(!
$provider
->
canCreatePaymentMethods
())
{
unset
(
$providers
[
$key
]);
continue
;
}
}
return
$providers
;
}
protected
function
loadOneTimePaymentProvidersForMerchant
(
PhortuneMerchant
$merchant
)
{
$providers
=
$this
->
loadEnabledProvidersForMerchant
(
$merchant
);
foreach
(
$providers
as
$key
=>
$provider
)
{
if
(!
$provider
->
canProcessOneTimePayments
())
{
unset
(
$providers
[
$key
]);
continue
;
}
}
return
$providers
;
}
}
Event Timeline
Log In to Comment