mirror of
https://git.kotyczka.ch/developers/django.git
synced 2025-04-06 07:45:08 +02:00
api added
This commit is contained in:
parent
69ff2f770d
commit
5fe40e0304
7
.vscode/settings.json
vendored
Normal file
7
.vscode/settings.json
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
{
|
||||
"python.testing.pytestArgs": [
|
||||
"pyapp"
|
||||
],
|
||||
"python.testing.unittestEnabled": false,
|
||||
"python.testing.pytestEnabled": true
|
||||
}
|
BIN
pyapp/db.sqlite3
BIN
pyapp/db.sqlite3
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -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 = [
|
||||
|
@ -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">
|
||||
|
@ -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)),
|
||||
]
|
@ -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
0
pyapp/pyapp_api/__init__.py
Executable file
3
pyapp/pyapp_api/admin.py
Executable file
3
pyapp/pyapp_api/admin.py
Executable file
@ -0,0 +1,3 @@
|
||||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
6
pyapp/pyapp_api/apps.py
Executable file
6
pyapp/pyapp_api/apps.py
Executable file
@ -0,0 +1,6 @@
|
||||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class PyappApiConfig(AppConfig):
|
||||
default_auto_field = 'django.db.models.BigAutoField'
|
||||
name = 'pyapp_api'
|
0
pyapp/pyapp_api/migrations/__init__.py
Executable file
0
pyapp/pyapp_api/migrations/__init__.py
Executable file
BIN
pyapp/pyapp_api/migrations/__pycache__/__init__.cpython-311.pyc
Normal file
BIN
pyapp/pyapp_api/migrations/__pycache__/__init__.cpython-311.pyc
Normal file
Binary file not shown.
3
pyapp/pyapp_api/models.py
Executable file
3
pyapp/pyapp_api/models.py
Executable file
@ -0,0 +1,3 @@
|
||||
from django.db import models
|
||||
|
||||
# Create your models here.
|
13
pyapp/pyapp_api/serializers.py
Normal file
13
pyapp/pyapp_api/serializers.py
Normal 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
3
pyapp/pyapp_api/tests.py
Executable file
@ -0,0 +1,3 @@
|
||||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
13
pyapp/pyapp_api/urls.py
Normal file
13
pyapp/pyapp_api/urls.py
Normal 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
54
pyapp/pyapp_api/views.py
Executable 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
13
pyapp/sql-scripts
Normal 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;
|
Loading…
x
Reference in New Issue
Block a user