api added

This commit is contained in:
Peter Kotyczka 2024-04-08 20:55:26 +02:00
parent 69ff2f770d
commit 5fe40e0304
21 changed files with 128 additions and 7 deletions

7
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"python.testing.pytestArgs": [
"pyapp"
],
"python.testing.unittestEnabled": false,
"python.testing.pytestEnabled": true
}

Binary file not shown.

View File

@ -37,6 +37,8 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'rest_framework',
'pyapp_api',
'pyapp',
]
@ -50,6 +52,11 @@ MIDDLEWARE = [
'django.middleware.clickjacking.XFrameOptionsMiddleware',
]
REST_FRAMEWORK = {
'DEFAULT_PAGINATION_CLASS': 'rest_framework.pagination.PageNumberPagination',
'PAGE_SIZE': 10
}
ROOT_URLCONF = 'pyapp.urls'
TEMPLATES = [

View File

@ -34,7 +34,7 @@
</head>
<body>
<header>
<h1>PyApp Inventory</h1>
<h1>PyApp Item List Inventory</h1>
</header>
{% for item in all_items %}
<div class="list-item">

View File

@ -18,12 +18,11 @@ from pyapp import views
from django.contrib import admin
from django.urls import path,include
from pyapp.views import pyapp_home
from pyapp.views import api_home
from pyapp_api import urls as pyapp_urls
urlpatterns = [
path('admin/', admin.site.urls),
path("", views.index, name= "index"),
path("pyapp/", views.pyapp_home, name= "ShoppingApp"),
path("api", views.api_home, name= "api"),
path('admin/', admin.site.urls),
path("pyapp/", views.pyapp_home, name= "Item List App"),
path('api/', include(pyapp_urls)),
]

View File

@ -9,7 +9,7 @@ class ShoppingItemViewSet(viewsets.ModelViewSet):
serializer_class = ShoppingItemSerializer
def index(response):
return HttpResponse("Welcome to the pyapp Shopping")
return HttpResponse("Welcome to the Pyapp Item List")
def pyapp_home(request):
if request.method == 'POST':

0
pyapp/pyapp_api/__init__.py Executable file
View File

3
pyapp/pyapp_api/admin.py Executable file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
pyapp/pyapp_api/apps.py Executable file
View File

@ -0,0 +1,6 @@
from django.apps import AppConfig
class PyappApiConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'pyapp_api'

View File

3
pyapp/pyapp_api/models.py Executable file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

View File

@ -0,0 +1,13 @@
from rest_framework import serializers
from pyapp.models import ShoppingItem
from pyapp.models import Product
class ShoppingItemSerializer(serializers.ModelSerializer):
class Meta:
model = ShoppingItem
fields = '__all__'
class ProductSerializer(serializers.ModelSerializer):
class Meta:
model = Product
fields = '__all__'

3
pyapp/pyapp_api/tests.py Executable file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

13
pyapp/pyapp_api/urls.py Normal file
View File

@ -0,0 +1,13 @@
from django.urls import path,include
from rest_framework import routers
from . import views
router = routers.DefaultRouter()
router.register(r'item', views.ShoppingItemList)
router.register(r'product', views.ProductList)
urlpatterns = [
path('', include(router.urls)),
path('api-auth/', include('rest_framework.urls', namespace='rest_framework'))
]

54
pyapp/pyapp_api/views.py Executable file
View File

@ -0,0 +1,54 @@
from rest_framework.views import APIView
from rest_framework.response import Response
from rest_framework import status, permissions, viewsets
from rest_framework import permissions
from pyapp.models import ShoppingItem, Product
from .serializers import ShoppingItemSerializer, ProductSerializer
class ShoppingItemList(viewsets.ModelViewSet):
"""
API endpoint that allows users to be viewed or edited.
"""
queryset = ShoppingItem.objects.all().order_by('name')
serializer_class = ShoppingItemSerializer
permission_classes = [permissions.AllowAny]
class ProductList(viewsets.ModelViewSet):
"""
API endpoint that allows groups to be viewed or edited.
"""
queryset = Product.objects.all().order_by('title')
serializer_class = ProductSerializer
permission_classes = [permissions.IsAuthenticated]
class ShoppingListApi(APIView):
# add permission to check if user is authenticated
permission_classes = [permissions.IsAuthenticated]
# 1. List all
def get(self, request, *args, **kwargs):
'''
List all the todo items for given requested user
'''
ShoppingItemList = ShoppingItem.objects.filter(user = request.user.id)
serializer = ShoppingItemSerializer(ShoppingItemList, many=True)
return Response(serializer.data, status=status.HTTP_200_OK)
# 2. Create
def post(self, request, *args, **kwargs):
'''
Create the ShoppingItem with given todo data
'''
data = {
'name': request.data.get('name'),
'price': request.data.get('price'),
'quantity': request.data.get('quantity'),
'done': False
}
serializer = ShoppingItemSerializer(data=data)
if serializer.is_valid():
serializer.save()
return Response(serializer.data, status=status.HTTP_201_CREATED)
return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST)

13
pyapp/sql-scripts Normal file
View File

@ -0,0 +1,13 @@
-- database: /Users/kotyczka/repositories/kotyczka/apps/django/pyapp/db.sqlite3
-- Drücken Sie die ▷-Schaltfläche oben rechts im Fenster, um die gesamte Datei auszuführen.
insert into pyapp_shoppingitem
SELECT * FROM migration_shoppingitem;
commit;
create table pyapp_shoppingitem as select * from migration_shoppingitem where 1 = 0;
commit;
drop table pyapp_product
commit;