Created some template http endpoints for the api and a serializer for the Song model class

This commit is contained in:
amazing-username
2019-02-09 00:51:43 +00:00
parent 4777d0bc52
commit 2e7ae7b763
7 changed files with 64 additions and 19 deletions
+7
View File
@@ -0,0 +1,7 @@
from rest_framework import serializers
from .models import Song
class SongSerialzer(serializers.ModelSerializer):
class Meta:
model = Song
fields = ('id', 'title', 'albumn', 'year', 'genre', 'track_number', 'file')
+10
View File
@@ -0,0 +1,10 @@
from django.urls import path
from rest_framework.urlpatterns import format_suffix_patterns
from api import views
urlpatterns = [
path('song/', views.UploadList().as_view()),
path('upload/song/', views.UploadList().as_view())
]
urlpatterns = format_suffix_patterns(urlpatterns)
+32 -1
View File
@@ -1,3 +1,34 @@
from django.shortcuts import render from django.shortcuts import render
from rest_framework import status
from rest_framework.response import Response
from rest_framework.views import APIView
from .models import Song
from .serializers import SongSerialzer
class UploadList(APIView):
def post(self, request, format=None):
serializer = SongSerialzer(data=request.data)
if serializer.is_valid():
serializer.save()
return Response({
'demo':'success'
})
return Response({
'demo': 'failure'
}, status=status.HTTP_400_BAD_REQUEST)
def get(self, request, format=None):
songs = Song.objects.all()
serializer = SongSerialzer(songs, many=True)
return Response(serializer.data)
class UploadDetail(APIView):
def get_object(self, pk):
try:
return Song.objects.get(pk=pk)
except Song.DoesNotExist:
raise Http404
# Create your views here.
+7
View File
@@ -0,0 +1,7 @@
[client]
database =
host =
user =
password =
port =
default-character-set = utf8
+5 -2
View File
@@ -38,6 +38,7 @@ INSTALLED_APPS = [
'django.contrib.messages', 'django.contrib.messages',
'django.contrib.staticfiles', 'django.contrib.staticfiles',
'api', 'api',
'rest_framework'
] ]
MIDDLEWARE = [ MIDDLEWARE = [
@@ -76,8 +77,10 @@ WSGI_APPLICATION = 'icarus.wsgi.application'
DATABASES = { DATABASES = {
'default': { 'default': {
'ENGINE': 'django.db.backends.sqlite3', 'ENGINE': 'django.db.backends.mysql',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'), 'OPTIONS': {
'read_default_file': os.path.join(BASE_DIR, 'database.cnf'),
}
} }
} }
+2 -16
View File
@@ -1,21 +1,7 @@
"""icarus URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.1/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin from django.contrib import admin
from django.urls import path from django.urls import include, path
urlpatterns = [ urlpatterns = [
path('admin/', admin.site.urls), path('admin/', admin.site.urls),
path('api/', include('api.urls'))
] ]
+1
View File
@@ -1,2 +1,3 @@
icarus icarus
django>=2.1 django>=2.1
djangorestframework>=3.9.1