Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 17 additions & 17 deletions account/account.http
Original file line number Diff line number Diff line change
@@ -1,49 +1,49 @@
GET localhost:8000/api/auth
GET http://localhost:8000/api/auth
Content-Type: application/json
Accept: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwayI6ImY0MzkyMDQ1LTRmOTktNDk0NC05ZjNhLThlNGNhZTEzMjk3MCJ9.kmsdiH0zSlYyB-_8mV-sVdE0pDBEJSzszCPyJ5zQHMk

###
POST localhost:8000/api/auth/signin
POST http://localhost:8000/api/auth/signin
Content-Type: application/json
Accept: application/json

{
"email": "user@example.com",
"password": "!!123123!!"
"password": "stringgg"
}

###
GET localhost:8000/api/auth
GET http://localhost:8000/api/auth
Content-Type: application/json
Accept: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwayI6ImY0MzkyMDQ1LTRmOTktNDk0NC05ZjNhLThlNGNhZTEzMjk3MCJ9.kmsdiH0zSlYyB-_8mV-sVdE0pDBEJSzszCPyJ5zQHMk

###
PUT localhost:8000/api/auth
PUT http://localhost:8000/api/auth
Content-Type: application/json
Accept: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwayI6ImY0MzkyMDQ1LTRmOTktNDk0NC05ZjNhLThlNGNhZTEzMjk3MCJ9.kmsdiH0zSlYyB-_8mV-sVdE0pDBEJSzszCPyJ5zQHMk
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwayI6Ijg2Y2JmZTdhLTg1ZDQtNDFkMy1iMjhiLTVjMDI1ZDJiYzQzZCJ9.8JbucnCUaIGyREOHiN1T6HtBBGOkduKzGfP384vyX18

{
"first_name": "Layth",
"last_name": "Zahid",
"first_name": "Abbas",
"last_name": "Salah",
"phone_number": "077",
"address1": "Anything",
"address2": "",
"company_name": "",
"company_website": ""
"address1": "Anything address 1",
"address2": "Anything address 2",
"company_name": "Anything",
"company_website": "anything.com"
}


###
POST localhost:8000/api/auth/change-password
POST http://localhost:8000/api/auth/change-password
Content-Type: application/json
Accept: application/json
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwayI6ImY0MzkyMDQ1LTRmOTktNDk0NC05ZjNhLThlNGNhZTEzMjk3MCJ9.kmsdiH0zSlYyB-_8mV-sVdE0pDBEJSzszCPyJ5zQHMk
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJwayI6Ijg2Y2JmZTdhLTg1ZDQtNDFkMy1iMjhiLTVjMDI1ZDJiYzQzZCJ9.8JbucnCUaIGyREOHiN1T6HtBBGOkduKzGfP384vyX18

{
"old_password": "string!!",
"new_password1": "!!123123!!",
"new_password2": "!!123123!!"
"old_password": "string12",
"new_password1": "stringgg",
"new_password2": "stringgg"
}
17 changes: 17 additions & 0 deletions account/migrations/0002_alter_user_options.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 3.2.8 on 2021-11-04 13:04

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('account', '0001_initial'),
]

operations = [
migrations.AlterModelOptions(
name='user',
options={'verbose_name': 'user', 'verbose_name_plural': 'users'},
),
]
182 changes: 134 additions & 48 deletions commerce/controllers.py
Original file line number Diff line number Diff line change
@@ -1,31 +1,28 @@
import random
import string
from typing import List

from django.contrib.auth import get_user_model
import string, random
from django.contrib.auth.models import User
from django.contrib.auth import get_user_model, authenticate
from account.authorization import GlobalAuth
from django.db.models import Q
from django.shortcuts import get_object_or_404
from ninja import Router
from pydantic import UUID4

from account.authorization import GlobalAuth
from commerce.models import Product, Category, City, Vendor, Item, Order, OrderStatus
from commerce.schemas import ProductOut, CitiesOut, CitySchema, VendorOut, ItemOut, ItemSchema, ItemCreate
from config.utils.schemas import MessageOut
from commerce.models import Address, Order, OrderStatus, Product, Category, City, Vendor, Item
from commerce.schemas import AddressOut, CheckOut, MessageOut, ProductOut, CitiesOut, CitySchema, VendorOut, ItemOut, ItemSchema, ItemCreate, AddressPut

products_controller = Router(tags=['products'])
address_controller = Router(tags=['addresses'])
vendor_controller = Router(tags=['vendors'])
order_controller = Router(tags=['orders'])
checkout_controller = Router(tags=['checkout'])

User = get_user_model()

@vendor_controller.get('', response=List[VendorOut])
def list_vendors(request):
return Vendor.objects.all()


@products_controller.get('', response={
@products_controller.get('', auth=GlobalAuth(), response={
200: List[ProductOut],
404: MessageOut
})
Expand Down Expand Up @@ -114,17 +111,89 @@ def list_products(
"""


@address_controller.get('')
@address_controller.get('address', auth=GlobalAuth(), response={
200: List[AddressOut],
404: MessageOut
})
def list_addresses(request):
pass
addresses_qs = Address.objects.all()

if addresses_qs:
return addresses_qs

return 404, {'detail': 'No addresses found'}



@address_controller.get('addresses/{id}', auth=GlobalAuth(), response={
200: AddressOut,
404: MessageOut
})
def retrieve_address(request, id: UUID4):
return get_object_or_404(Address, id=id)


@address_controller.post('addresses', auth=GlobalAuth(), response={
201: AddressOut,
400: MessageOut
})
def create_address(request, address_in: AddressPut):
# address = Address
# address = address_in
# address.city = City.objects.create(name=address_in.city)
# address.address1 = address_in.address1
# address.address2 = address_in.address2
# address.phone = address_in.phone
# address.work_address = address_in.work_address

adress = Address(**address_in.dict(), user=request.auth['pk'])
adress.save()
return 200, adress

# address.save()
return 201


@address_controller.put('addresses/{id}', auth=GlobalAuth(), response={
200: AddressOut,
400: MessageOut
})
def update_address(request, id: UUID4, address_in: AddressPut):
address = get_object_or_404(Address, id=id, user= User.objects.first())
address.city.name = City.objects.update(name=address_in.city)
address.address1 = address_in.address1
address.address2 = address_in.address2
address.phone = address_in.phone
address.work_address = address_in.work_address
address.save()
return 200, address


@address_controller.delete('addresses/{id}', auth=GlobalAuth(), response={
204: MessageOut
})
def delete_address(request, id: UUID4):
city = get_object_or_404(Address, id=id)
city.delete()
return 204, {'detail': ''}












# @products_controller.get('categories', response=List[CategoryOut])
# def list_categories(request):
# return Category.objects.all()


@address_controller.get('cities', response={
@address_controller.get('cities', auth=GlobalAuth(), response={
200: List[CitiesOut],
404: MessageOut
})
Expand All @@ -137,15 +206,15 @@ def list_cities(request):
return 404, {'detail': 'No cities found'}


@address_controller.get('cities/{id}', response={
@address_controller.get('cities/{id}', auth=GlobalAuth(), response={
200: CitiesOut,
404: MessageOut
})
def retrieve_city(request, id: UUID4):
return get_object_or_404(City, id=id)


@address_controller.post('cities', response={
@address_controller.post('cities', auth=GlobalAuth(), response={
201: CitiesOut,
400: MessageOut
})
Expand All @@ -155,7 +224,7 @@ def create_city(request, city_in: CitySchema):
return 201, city


@address_controller.put('cities/{id}', response={
@address_controller.put('cities/{id}', auth=GlobalAuth(), response={
200: CitiesOut,
400: MessageOut
})
Expand All @@ -166,7 +235,7 @@ def update_city(request, id: UUID4, city_in: CitySchema):
return 200, city


@address_controller.delete('cities/{id}', response={
@address_controller.delete('cities/{id}', auth=GlobalAuth(), response={
204: MessageOut
})
def delete_city(request, id: UUID4):
Expand All @@ -175,26 +244,26 @@ def delete_city(request, id: UUID4):
return 204, {'detail': ''}


@order_controller.get('cart', response={
@order_controller.get('cart', auth=GlobalAuth(), response={
200: List[ItemOut],
404: MessageOut
})
def view_cart(request):
cart_items = Item.objects.filter(user=User.objects.first(), ordered=False)
cart_items = Item.objects.filter(user=request.auth['pk'], ordered=False)

if cart_items:
return cart_items

return 404, {'detail': 'Your cart is empty, go shop like crazy!'}


@order_controller.post('add-to-cart', response={
@order_controller.post('add-to-cart', auth=GlobalAuth(), response={
200: MessageOut,
# 400: MessageOut
})
def add_update_cart(request, item_in: ItemCreate):
try:
item = Item.objects.get(product_id=item_in.product_id, user=User.objects.first())
item = Item.objects.get(product_id=item_in.product_id, user=request.auth['pk'])
item.item_qty += 1
item.save()
except Item.DoesNotExist:
Expand All @@ -203,11 +272,11 @@ def add_update_cart(request, item_in: ItemCreate):
return 200, {'detail': 'Added to cart successfully'}


@order_controller.post('item/{id}/reduce-quantity', response={
@order_controller.post('item/{id}/reduce-quantity', auth=GlobalAuth(), response={
200: MessageOut,
})
def reduce_item_quantity(request, id: UUID4):
item = get_object_or_404(Item, id=id, user=User.objects.first())
item = get_object_or_404(Item, id=id, user=request.auth['pk'])
if item.item_qty <= 1:
item.delete()
return 200, {'detail': 'Item deleted!'}
Expand All @@ -217,41 +286,58 @@ def reduce_item_quantity(request, id: UUID4):
return 200, {'detail': 'Item quantity reduced successfully!'}


@order_controller.delete('item/{id}', response={

@order_controller.post('item/{id}/increase-quantity', auth=GlobalAuth(), response={
200: MessageOut,
})
def increase_item_quantity(request, id: UUID4):
item = get_object_or_404(Item, id=id, user=request.auth['pk'])
item.item_qty += 1
item.save()

return 200, {'detail': 'Item quantity reduced successfully!'}



@order_controller.delete('item/{id}', auth=GlobalAuth(), response={
204: MessageOut
})
def delete_item(request, id: UUID4):
item = get_object_or_404(Item, id=id, user=User.objects.first())
item = get_object_or_404(Item, id=id, user=request.auth['pk'])
item.delete()

return 204, {'detail': 'Item deleted!'}


def generate_ref_code():
return ''.join(random.sample(string.ascii_letters + string.digits, 6))

def refCode():
return ''.join(random.sample(string.ascii_letters+string.digits,6))

@order_controller.post('create-order', auth=GlobalAuth(), response=MessageOut)
@order_controller.post('create-order', auth=GlobalAuth(),)
def create_order(request):
'''
* add items and mark (ordered) field as True
* add ref_number
* add NEW status
* calculate the total
'''

order_qs = Order.objects.create(
user=User.objects.first(),
status=OrderStatus.objects.get(is_default=True),
ref_code=generate_ref_code(),
ordered=False,
order = Order(
user=request.auth['pk'],
status=OrderStatus.objects.get(is_active=True),
ref_code=refCode(),
ordered = False
)
user_items = Item.objects.filter(user=request.auth['pk'])
user_items.update(ordered = True)
order.items.append(*user_items)
order = order.order_total
order.save()
return {'detail': 'order created successfully'}

user_items = Item.objects.filter(user=User.objects.first()).filter(ordered=False)

order_qs.items.add(*user_items)
order_qs.total = order_qs.order_total
user_items.update(ordered=True)
order_qs.save()
@checkout_controller.post('checkout', auth=GlobalAuth(),)
def checkout(request, checkout_input: CheckOut):
order_chckt = get_object_or_404(Order, user=request.auth['pk'], ordered=False)

return {'detail': 'order created successfully'}
if order_chckt:
order_chckt.address = Address.objects.get(id=checkout_input.address)
order_chckt.note = checkout_input.note
order_chckt.status = OrderStatus.objects.get(is_default=False)
order_chckt.ordered = True
order_chckt.save()
return 200, {'detail': 'checkout done successfully'}

return 404, {'detail': 'you have no active orders'}
Loading