Refactored the logic to OrderConfirmationView from the PaymentOrderView
This commit is contained in:
parent
a2153777e4
commit
cb6aeae1ae
1 changed files with 115 additions and 112 deletions
|
@ -13,11 +13,12 @@ from django.core.exceptions import ValidationError
|
||||||
from django.views.decorators.cache import cache_control
|
from django.views.decorators.cache import cache_control
|
||||||
from django.conf import settings
|
from django.conf import settings
|
||||||
from utils.forms import BillingAddressForm, UserBillingAddressForm
|
from utils.forms import BillingAddressForm, UserBillingAddressForm
|
||||||
|
from utils.models import BillingAddress
|
||||||
from membership.models import StripeCustomer
|
from membership.models import StripeCustomer
|
||||||
from hosting.models import HostingOrder, HostingBill
|
from hosting.models import HostingOrder, HostingBill
|
||||||
from utils.stripe_utils import StripeUtils
|
from utils.stripe_utils import StripeUtils
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from membership.models import CustomUser, StripeCustomer
|
from membership.models import CustomUser, StripeCustomer, CreditCards
|
||||||
|
|
||||||
from opennebula_api.models import OpenNebulaManager
|
from opennebula_api.models import OpenNebulaManager
|
||||||
from opennebula_api.serializers import VirtualMachineTemplateSerializer, VirtualMachineSerializer
|
from opennebula_api.serializers import VirtualMachineTemplateSerializer, VirtualMachineSerializer
|
||||||
|
@ -322,13 +323,9 @@ class PaymentOrderView(FormView):
|
||||||
if form.is_valid():
|
if form.is_valid():
|
||||||
# Get billing address data
|
# Get billing address data
|
||||||
billing_address_data = form.cleaned_data
|
billing_address_data = form.cleaned_data
|
||||||
context = self.get_context_data()
|
|
||||||
template = request.session.get('template')
|
|
||||||
specs = request.session.get('specs')
|
|
||||||
user = request.session.get('user')
|
|
||||||
vm_template_id = template.get('id', 1)
|
|
||||||
final_price = specs.get('price')
|
|
||||||
token = form.cleaned_data.get('token')
|
token = form.cleaned_data.get('token')
|
||||||
|
user = request.session.get('user')
|
||||||
|
|
||||||
try:
|
try:
|
||||||
custom_user = CustomUser.objects.get(email=user.get('email'))
|
custom_user = CustomUser.objects.get(email=user.get('email'))
|
||||||
except CustomUser.DoesNotExist:
|
except CustomUser.DoesNotExist:
|
||||||
|
@ -340,7 +337,6 @@ class PaymentOrderView(FormView):
|
||||||
app='dcl',
|
app='dcl',
|
||||||
base_url=None, send_email=False)
|
base_url=None, send_email=False)
|
||||||
|
|
||||||
|
|
||||||
# Get or create stripe customer
|
# Get or create stripe customer
|
||||||
customer = StripeCustomer.get_or_create(email=user.get('email'),
|
customer = StripeCustomer.get_or_create(email=user.get('email'),
|
||||||
token=token)
|
token=token)
|
||||||
|
@ -350,6 +346,43 @@ class PaymentOrderView(FormView):
|
||||||
|
|
||||||
# Create Billing Address
|
# Create Billing Address
|
||||||
billing_address = form.save()
|
billing_address = form.save()
|
||||||
|
request.session['billing_address_data'] = billing_address_data
|
||||||
|
request.session['billing_address'] = billing_address.id
|
||||||
|
request.session['token'] = token
|
||||||
|
request.session['customer'] = customer.id
|
||||||
|
return HttpResponseRedirect(reverse('datacenterlight:order_confirmation'))
|
||||||
|
else:
|
||||||
|
return self.form_invalid(form)
|
||||||
|
|
||||||
|
class OrderConfirmationView(DetailView):
|
||||||
|
template_name = "datacenterlight/order_detail.html"
|
||||||
|
context_object_name = "order"
|
||||||
|
model = HostingOrder
|
||||||
|
|
||||||
|
def get(self, request, *args, **kwargs):
|
||||||
|
if 'specs' not in request.session or 'user' not in request.session:
|
||||||
|
return HttpResponseRedirect(reverse('datacenterlight:index'))
|
||||||
|
print(request.session.get('billing_address_data'))
|
||||||
|
print(request.session.get('specs'))
|
||||||
|
stripe_customer_id = request.session.get('customer')
|
||||||
|
customer = StripeCustomer.objects.filter(id=stripe_customer_id).first()
|
||||||
|
custom_user = CustomUser.objects.get(email=request.session.get('user').get('email'))
|
||||||
|
print(custom_user)
|
||||||
|
obj = CreditCards.objects.filter(user_id=custom_user.id).first()
|
||||||
|
print(obj)
|
||||||
|
return render(request, self.template_name, {})
|
||||||
|
|
||||||
|
def post(self, request, *args, **kwargs):
|
||||||
|
template = request.session.get('template')
|
||||||
|
specs = request.session.get('specs')
|
||||||
|
user = request.session.get('user')
|
||||||
|
customer = request.session.get('customer')
|
||||||
|
billing_address_data = request.session.get('billing_address_data')
|
||||||
|
billing_address_id = request.session.get('billing_address')
|
||||||
|
billing_address = BillingAddress.objects.filter(id=billing_address_id)
|
||||||
|
token = request.session.get('token')
|
||||||
|
vm_template_id = template.get('id', 1)
|
||||||
|
final_price = specs.get('price')
|
||||||
|
|
||||||
# Make stripe charge to a customer
|
# Make stripe charge to a customer
|
||||||
stripe_utils = StripeUtils()
|
stripe_utils = StripeUtils()
|
||||||
|
@ -432,33 +465,3 @@ class PaymentOrderView(FormView):
|
||||||
}
|
}
|
||||||
email = EmailMessage(**email_data)
|
email = EmailMessage(**email_data)
|
||||||
email.send()
|
email.send()
|
||||||
return HttpResponseRedirect(reverse('datacenterlight:order_confirmation', kwargs={'pk': order.id}))
|
|
||||||
else:
|
|
||||||
return self.form_invalid(form)
|
|
||||||
|
|
||||||
class OrderConfirmationView(DetailView):
|
|
||||||
template_name = "datacenterlight/order_detail.html"
|
|
||||||
context_object_name = "order"
|
|
||||||
model = HostingOrder
|
|
||||||
def get_context_data(self, **kwargs):
|
|
||||||
# Get context
|
|
||||||
context = super(DetailView, self).get_context_data(**kwargs)
|
|
||||||
obj = self.get_object()
|
|
||||||
manager = OpenNebulaManager(email=settings.OPENNEBULA_USERNAME,
|
|
||||||
password=settings.OPENNEBULA_PASSWORD)
|
|
||||||
try:
|
|
||||||
vm = manager.get_vm(obj.vm_id)
|
|
||||||
context['vm'] = VirtualMachineSerializer(vm).data
|
|
||||||
context['next_url'] = reverse('datacenterlight:order_success')
|
|
||||||
except WrongIdError:
|
|
||||||
messages.error(self.request,
|
|
||||||
'The VM you are looking for is unavailable at the moment. \
|
|
||||||
Please contact Data Center Light support.'
|
|
||||||
)
|
|
||||||
self.kwargs['error'] = 'WrongIdError'
|
|
||||||
context['error'] = 'WrongIdError'
|
|
||||||
except ConnectionRefusedError:
|
|
||||||
messages.error(self.request,
|
|
||||||
'In order to create a VM, you need to create/upload your SSH KEY first.'
|
|
||||||
)
|
|
||||||
return context
|
|
||||||
|
|
Loading…
Reference in a new issue