Landing flow: set/get token/card_id
This commit is contained in:
parent
dc28186fe9
commit
9bf8992ff4
1 changed files with 62 additions and 20 deletions
|
@ -282,14 +282,55 @@ class PaymentOrderView(FormView):
|
||||||
)
|
)
|
||||||
if address_form.is_valid():
|
if address_form.is_valid():
|
||||||
token = address_form.cleaned_data.get('token')
|
token = address_form.cleaned_data.get('token')
|
||||||
|
owner = self.request.user
|
||||||
|
if token is '':
|
||||||
|
card_id = address_form.cleaned_data.get('card')
|
||||||
|
customer = owner.stripecustomer
|
||||||
|
try:
|
||||||
|
user_card_detail = UserCardDetail.objects.get(id=card_id)
|
||||||
|
if not request.user.has_perm(
|
||||||
|
'view_usercarddetail', user_card_detail
|
||||||
|
):
|
||||||
|
raise UserCardDetail.DoesNotExist(
|
||||||
|
_("{user} does not have permission to access the "
|
||||||
|
"card").format(user=request.user.email)
|
||||||
|
)
|
||||||
|
except UserCardDetail.DoesNotExist as e:
|
||||||
|
ex = str(e)
|
||||||
|
logger.error("Card Id: {card_id}, Exception: {ex}".format(
|
||||||
|
card_id=card_id, ex=ex
|
||||||
|
)
|
||||||
|
)
|
||||||
|
msg = _("An error occurred. Details: {}".format(ex))
|
||||||
|
messages.add_message(
|
||||||
|
self.request, messages.ERROR, msg,
|
||||||
|
extra_tags='make_charge_error'
|
||||||
|
)
|
||||||
|
return HttpResponseRedirect(
|
||||||
|
reverse('datacenterlight:payment') + '#payment_error'
|
||||||
|
)
|
||||||
|
request.session['card_id'] = user_card_detail.id
|
||||||
|
else:
|
||||||
|
# Get or create stripe customer
|
||||||
|
customer = StripeCustomer.get_or_create(
|
||||||
|
email=owner.email, token=token
|
||||||
|
)
|
||||||
|
if not customer:
|
||||||
|
msg = _("Invalid credit card")
|
||||||
|
messages.add_message(
|
||||||
|
self.request, messages.ERROR, msg,
|
||||||
|
extra_tags='make_charge_error')
|
||||||
|
return HttpResponseRedirect(
|
||||||
|
reverse('datacenterlight:payment') + '#payment_error')
|
||||||
|
request.session['token'] = token
|
||||||
if request.user.is_authenticated():
|
if request.user.is_authenticated():
|
||||||
this_user = {
|
this_user = {
|
||||||
'email': request.user.email,
|
'email': request.user.email,
|
||||||
'name': request.user.name
|
'name': request.user.name
|
||||||
}
|
}
|
||||||
customer = StripeCustomer.get_or_create(
|
customer = StripeCustomer.get_or_create(
|
||||||
email=this_user.get('email'),
|
email=this_user.get('email'), token=token
|
||||||
token=token)
|
)
|
||||||
else:
|
else:
|
||||||
user_email = address_form.cleaned_data.get('email')
|
user_email = address_form.cleaned_data.get('email')
|
||||||
user_name = address_form.cleaned_data.get('name')
|
user_name = address_form.cleaned_data.get('name')
|
||||||
|
@ -337,7 +378,6 @@ class PaymentOrderView(FormView):
|
||||||
billing_address_form=address_form
|
billing_address_form=address_form
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
request.session['token'] = token
|
|
||||||
if type(customer) is StripeCustomer:
|
if type(customer) is StripeCustomer:
|
||||||
request.session['customer'] = customer.stripe_id
|
request.session['customer'] = customer.stripe_id
|
||||||
else:
|
else:
|
||||||
|
@ -358,32 +398,34 @@ class OrderConfirmationView(DetailView):
|
||||||
|
|
||||||
@cache_control(no_cache=True, must_revalidate=True, no_store=True)
|
@cache_control(no_cache=True, must_revalidate=True, no_store=True)
|
||||||
def get(self, request, *args, **kwargs):
|
def get(self, request, *args, **kwargs):
|
||||||
|
context = {}
|
||||||
if 'specs' not in request.session or 'user' not in request.session:
|
if 'specs' not in request.session or 'user' not in request.session:
|
||||||
return HttpResponseRedirect(reverse('datacenterlight:index'))
|
return HttpResponseRedirect(reverse('datacenterlight:index'))
|
||||||
if 'token' not in request.session:
|
if 'token' in self.request.session:
|
||||||
return HttpResponseRedirect(reverse('datacenterlight:payment'))
|
token = self.request.session['token']
|
||||||
stripe_api_cus_id = request.session.get('customer')
|
stripe_utils = StripeUtils()
|
||||||
stripe_utils = StripeUtils()
|
card_details = stripe_utils.get_cards_details_from_token(
|
||||||
card_details = stripe_utils.get_card_details(stripe_api_cus_id,
|
token
|
||||||
request.session.get(
|
)
|
||||||
'token'))
|
if not card_details.get('response_object'):
|
||||||
if not card_details.get('response_object'):
|
return HttpResponseRedirect(reverse('hosting:payment'))
|
||||||
msg = card_details.get('error')
|
card_details_response = card_details['response_object']
|
||||||
messages.add_message(self.request, messages.ERROR, msg,
|
context['cc_last4'] = card_details_response['last4']
|
||||||
extra_tags='failed_payment')
|
context['cc_brand'] = card_details_response['brand']
|
||||||
return HttpResponseRedirect(
|
else:
|
||||||
reverse('datacenterlight:payment') + '#payment_error')
|
card_id = self.request.session.get('card_id')
|
||||||
context = {
|
card_detail = UserCardDetail.objects.get(id=card_id)
|
||||||
|
context['cc_last4'] = card_detail.last4
|
||||||
|
context['cc_brand'] = card_detail.brand
|
||||||
|
context.update({
|
||||||
'site_url': reverse('datacenterlight:index'),
|
'site_url': reverse('datacenterlight:index'),
|
||||||
'cc_last4': card_details.get('response_object').get('last4'),
|
|
||||||
'cc_brand': card_details.get('response_object').get('brand'),
|
|
||||||
'vm': request.session.get('specs'),
|
'vm': request.session.get('specs'),
|
||||||
'page_header_text': _('Confirm Order'),
|
'page_header_text': _('Confirm Order'),
|
||||||
'billing_address_data': (
|
'billing_address_data': (
|
||||||
request.session.get('billing_address_data')
|
request.session.get('billing_address_data')
|
||||||
),
|
),
|
||||||
'cms_integration': get_cms_integration('default'),
|
'cms_integration': get_cms_integration('default'),
|
||||||
}
|
})
|
||||||
return render(request, self.template_name, context)
|
return render(request, self.template_name, context)
|
||||||
|
|
||||||
def post(self, request, *args, **kwargs):
|
def post(self, request, *args, **kwargs):
|
||||||
|
|
Loading…
Reference in a new issue