Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F101066344
PhortunePaymentMethodCreateController.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
Wed, Feb 5, 09:43
Size
9 KB
Mime Type
text/x-php
Expires
Fri, Feb 7, 09:43 (1 d, 21 h)
Engine
blob
Format
Raw Data
Handle
24085359
Attached To
rPH Phabricator
PhortunePaymentMethodCreateController.php
View Options
<?php
final
class
PhortunePaymentMethodCreateController
extends
PhortuneController
{
public
function
handleRequest
(
AphrontRequest
$request
)
{
$viewer
=
$request
->
getViewer
();
$account_id
=
$request
->
getURIData
(
'accountID'
);
$account
=
id
(
new
PhortuneAccountQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$account_id
))
->
executeOne
();
if
(!
$account
)
{
return
new
Aphront404Response
();
}
$account_id
=
$account
->
getID
();
$merchant
=
id
(
new
PhortuneMerchantQuery
())
->
setViewer
(
$viewer
)
->
withIDs
(
array
(
$request
->
getInt
(
'merchantID'
)))
->
executeOne
();
if
(!
$merchant
)
{
return
new
Aphront404Response
();
}
$cart_id
=
$request
->
getInt
(
'cartID'
);
$subscription_id
=
$request
->
getInt
(
'subscriptionID'
);
if
(
$cart_id
)
{
$cancel_uri
=
$this
->
getApplicationURI
(
"cart/{$cart_id}/checkout/"
);
}
else
if
(
$subscription_id
)
{
$cancel_uri
=
$this
->
getApplicationURI
(
"{$account_id}/subscription/edit/{$subscription_id}/"
);
}
else
{
$cancel_uri
=
$this
->
getApplicationURI
(
$account
->
getID
().
'/'
);
}
$providers
=
$this
->
loadCreatePaymentMethodProvidersForMerchant
(
$merchant
);
if
(!
$providers
)
{
throw
new
Exception
(
pht
(
'There are no payment providers enabled that can add payment '
.
'methods.'
));
}
if
(
count
(
$providers
)
==
1
)
{
// If there's only one provider, always choose it.
$provider_id
=
head_key
(
$providers
);
}
else
{
$provider_id
=
$request
->
getInt
(
'providerID'
);
if
(
empty
(
$providers
[
$provider_id
]))
{
$choices
=
array
();
foreach
(
$providers
as
$provider
)
{
$choices
[]
=
$this
->
renderSelectProvider
(
$provider
);
}
$content
=
phutil_tag
(
'div'
,
array
(
'class'
=>
'phortune-payment-method-list'
,
),
$choices
);
return
$this
->
newDialog
()
->
setRenderDialogAsDiv
(
true
)
->
setTitle
(
pht
(
'Add Payment Method'
))
->
appendParagraph
(
pht
(
'Choose a payment method to add:'
))
->
appendChild
(
$content
)
->
addCancelButton
(
$cancel_uri
);
}
}
$provider
=
$providers
[
$provider_id
];
$errors
=
array
();
$display_exception
=
null
;
if
(
$request
->
isFormPost
()
&&
$request
->
getBool
(
'isProviderForm'
))
{
$method
=
id
(
new
PhortunePaymentMethod
())
->
setAccountPHID
(
$account
->
getPHID
())
->
setAuthorPHID
(
$viewer
->
getPHID
())
->
setMerchantPHID
(
$merchant
->
getPHID
())
->
setProviderPHID
(
$provider
->
getProviderConfig
()->
getPHID
())
->
setStatus
(
PhortunePaymentMethod
::
STATUS_ACTIVE
);
// Limit the rate at which you can attempt to add payment methods. This
// is intended as a line of defense against using Phortune to validate a
// large list of stolen credit card numbers.
PhabricatorSystemActionEngine
::
willTakeAction
(
array
(
$viewer
->
getPHID
()),
new
PhortuneAddPaymentMethodAction
(),
1
);
if
(!
$errors
)
{
$errors
=
$this
->
processClientErrors
(
$provider
,
$request
->
getStr
(
'errors'
));
}
if
(!
$errors
)
{
$client_token_raw
=
$request
->
getStr
(
'token'
);
$client_token
=
null
;
try
{
$client_token
=
phutil_json_decode
(
$client_token_raw
);
}
catch
(
PhutilJSONParserException
$ex
)
{
$errors
[]
=
pht
(
'There was an error decoding token information submitted by the '
.
'client. Expected a JSON-encoded token dictionary, received: %s.'
,
nonempty
(
$client_token_raw
,
pht
(
'nothing'
)));
}
if
(!
$provider
->
validateCreatePaymentMethodToken
(
$client_token
))
{
$errors
[]
=
pht
(
'There was an error with the payment token submitted by the '
.
'client. Expected a valid dictionary, received: %s.'
,
$client_token_raw
);
}
if
(!
$errors
)
{
try
{
$provider
->
createPaymentMethodFromRequest
(
$request
,
$method
,
$client_token
);
}
catch
(
PhortuneDisplayException
$exception
)
{
$display_exception
=
$exception
;
}
catch
(
Exception
$ex
)
{
$errors
=
array
(
pht
(
'There was an error adding this payment method:'
),
$ex
->
getMessage
(),
);
}
}
}
if
(!
$errors
&&
!
$display_exception
)
{
$method
->
save
();
// If we added this method on a cart flow, return to the cart to
// check out.
if
(
$cart_id
)
{
$next_uri
=
$this
->
getApplicationURI
(
"cart/{$cart_id}/checkout/?paymentMethodID="
.
$method
->
getID
());
}
else
if
(
$subscription_id
)
{
$next_uri
=
new
PhutilURI
(
$cancel_uri
);
$next_uri
->
replaceQueryParam
(
'added'
,
true
);
}
else
{
$account_uri
=
$this
->
getApplicationURI
(
$account
->
getID
().
'/'
);
$next_uri
=
new
PhutilURI
(
$account_uri
);
$next_uri
->
setFragment
(
'payment'
);
}
return
id
(
new
AphrontRedirectResponse
())->
setURI
(
$next_uri
);
}
else
{
if
(
$display_exception
)
{
$dialog_body
=
$display_exception
->
getView
();
}
else
{
$dialog_body
=
id
(
new
PHUIInfoView
())
->
setErrors
(
$errors
);
}
return
$this
->
newDialog
()
->
setTitle
(
pht
(
'Error Adding Payment Method'
))
->
appendChild
(
$dialog_body
)
->
addCancelButton
(
$request
->
getRequestURI
());
}
}
$form
=
$provider
->
renderCreatePaymentMethodForm
(
$request
,
$errors
);
$form
->
setUser
(
$viewer
)
->
setAction
(
$request
->
getRequestURI
())
->
setWorkflow
(
true
)
->
addHiddenInput
(
'providerID'
,
$provider_id
)
->
addHiddenInput
(
'cartID'
,
$request
->
getInt
(
'cartID'
))
->
addHiddenInput
(
'subscriptionID'
,
$request
->
getInt
(
'subscriptionID'
))
->
addHiddenInput
(
'isProviderForm'
,
true
)
->
appendChild
(
id
(
new
AphrontFormSubmitControl
())
->
setValue
(
pht
(
'Add Payment Method'
))
->
addCancelButton
(
$cancel_uri
));
$box
=
id
(
new
PHUIObjectBoxView
())
->
setHeaderText
(
pht
(
'Method'
))
->
setBackground
(
PHUIObjectBoxView
::
BLUE_PROPERTY
)
->
setForm
(
$form
);
$crumbs
=
$this
->
buildApplicationCrumbs
();
$crumbs
->
addTextCrumb
(
pht
(
'Add Payment Method'
));
$crumbs
->
setBorder
(
true
);
$header
=
id
(
new
PHUIHeaderView
())
->
setHeader
(
pht
(
'Add Payment Method'
))
->
setHeaderIcon
(
'fa-plus-square'
);
$view
=
id
(
new
PHUITwoColumnView
())
->
setHeader
(
$header
)
->
setFooter
(
array
(
$box
,
));
return
$this
->
newPage
()
->
setTitle
(
$provider
->
getPaymentMethodDescription
())
->
setCrumbs
(
$crumbs
)
->
appendChild
(
$view
);
}
private
function
renderSelectProvider
(
PhortunePaymentProvider
$provider
)
{
$request
=
$this
->
getRequest
();
$viewer
=
$request
->
getUser
();
$description
=
$provider
->
getPaymentMethodDescription
();
$icon_uri
=
$provider
->
getPaymentMethodIcon
();
$details
=
$provider
->
getPaymentMethodProviderDescription
();
$this
->
requireResource
(
'phortune-css'
);
$icon
=
id
(
new
PHUIIconView
())
->
setSpriteSheet
(
PHUIIconView
::
SPRITE_LOGIN
)
->
setSpriteIcon
(
$provider
->
getPaymentMethodIcon
());
$button
=
id
(
new
PHUIButtonView
())
->
setSize
(
PHUIButtonView
::
BIG
)
->
setColor
(
PHUIButtonView
::
GREY
)
->
setIcon
(
$icon
)
->
setText
(
$description
)
->
setSubtext
(
$details
)
->
setMetadata
(
array
(
'disableWorkflow'
=>
true
));
$form
=
id
(
new
AphrontFormView
())
->
setUser
(
$viewer
)
->
setAction
(
$request
->
getRequestURI
())
->
addHiddenInput
(
'providerID'
,
$provider
->
getProviderConfig
()->
getID
())
->
appendChild
(
$button
);
return
$form
;
}
private
function
processClientErrors
(
PhortunePaymentProvider
$provider
,
$client_errors_raw
)
{
$errors
=
array
();
$client_errors
=
null
;
try
{
$client_errors
=
phutil_json_decode
(
$client_errors_raw
);
}
catch
(
PhutilJSONParserException
$ex
)
{
$errors
[]
=
pht
(
'There was an error decoding error information submitted by the '
.
'client. Expected a JSON-encoded list of error codes, received: %s.'
,
nonempty
(
$client_errors_raw
,
pht
(
'nothing'
)));
}
foreach
(
array_unique
(
$client_errors
)
as
$key
=>
$client_error
)
{
$client_errors
[
$key
]
=
$provider
->
translateCreatePaymentMethodErrorCode
(
$client_error
);
}
foreach
(
array_unique
(
$client_errors
)
as
$client_error
)
{
switch
(
$client_error
)
{
case
PhortuneErrCode
::
ERR_CC_INVALID_NUMBER
:
$message
=
pht
(
'The card number you entered is not a valid card number. Check '
.
'that you entered it correctly.'
);
break
;
case
PhortuneErrCode
::
ERR_CC_INVALID_CVC
:
$message
=
pht
(
'The CVC code you entered is not a valid CVC code. Check that '
.
'you entered it correctly. The CVC code is a 3-digit or 4-digit '
.
'numeric code which usually appears on the back of the card.'
);
break
;
case
PhortuneErrCode
::
ERR_CC_INVALID_EXPIRY
:
$message
=
pht
(
'The card expiration date is not a valid expiration date. Check '
.
'that you entered it correctly. You can not add an expired card '
.
'as a payment method.'
);
break
;
default
:
$message
=
$provider
->
getCreatePaymentMethodErrorMessage
(
$client_error
);
if
(!
$message
)
{
$message
=
pht
(
"There was an unexpected error ('%s') processing payment "
.
"information."
,
$client_error
);
phlog
(
$message
);
}
break
;
}
$errors
[
$client_error
]
=
$message
;
}
return
$errors
;
}
}
Event Timeline
Log In to Comment