drf 백엔드개발 + 프론트개발
: 이번 프로젝트는 팀프로젝트로 시작합니다.
signup.html
index.html
board.html
detail.html
위의 디테일페이지에서 상단의 메뉴버튼을 누르면 아래의 모달창이 뜰 수 있게 하였다.
views.py
# 공감순 게시글 탑3 리스팅
class MostLikedArticleView(APIView):
def get(self, request):
articles = list(ArticleModel.objects.all().values())
articles_id = []
for article in articles:
articles_id.append(article['id'])
like_counts = []
for id in articles_id:
like_count = ArticleLikeBridge.objects.filter(article_id=id).count()
like_counts.append(like_count)
count_list = { name:value for name, value in zip(articles_id, like_counts)}
like_rank = sorted(count_list.items(), key=lambda x: x[1], reverse=True)[:3]
first = like_rank[0][0]
second = like_rank[1][0]
third = like_rank[2][0]
ranking = [first, second, third]
article_rank = ArticleModel.objects.filter(id__in = ranking)
return Response(ArticleSerializer(article_rank, many=True).data)
# 공감순 댓글 탑3 리스팅
class MostLikedCommentView(APIView):
def get(self, request):
comments = list(CommentModel.objects.all().values())
comments_id = []
for comment in comments:
comments_id.append(comment['id'])
like_counts = []
for id in comments_id:
like_count = CommentLikeBridge.objects.filter(comment_id=id).count()
like_counts.append(like_count)
count_list = { name:value for name, value in zip(comments_id, like_counts)}
like_rank = sorted(count_list.items(), key=lambda x: x[1], reverse=True)[:3]
first = like_rank[0][0]
second = like_rank[1][0]
third = like_rank[2][0]
forth = like_rank[3][0]
fifth = like_rank[4][0]
sixth = like_rank[5][0]
ranking = [first, second, third, forth, fifth, sixth]
comment_rank = CommentModel.objects.filter(id__in = ranking)
return Response(CommentSerializer(comment_rank, many=True).data)
# 투표순 탑3 리스팅
class MostVotedArticleView(APIView):
def get(self, request):
articles = list(ArticleModel.objects.all().values())
articles_id = []
for article in articles:
articles_id.append(article['id'])
vote_counts = []
for id in articles_id:
vote_count = ArticleVoteBridge.objects.filter(article_id=id).count()
vote_counts.append(vote_count)
count_list = { name:value for name, value in zip(articles_id, vote_counts)}
vote_rank = sorted(count_list.items(), key=lambda x: x[1], reverse=True)[:3]
first = vote_rank[0][0]
second = vote_rank[1][0]
third = vote_rank[2][0]
ranking = [first, second, third]
article_rank = ArticleModel.objects.filter(id__in = ranking)
return Response(ArticleSerializer(article_rank, many=True).data)
class SearchResult(APIView):
permission_classes = [permissions.AllowAny]
# 검색 결과 리스팅
def get(self, request):
keywords = request.data.get('search')
type= request.data.get('type')
# 내용 검색
if type == 1:
searched_contents = ArticleModel.objects.filter(article_contents__contains=keywords)
result = ArticleSerializer(searched_contents, many=True).data
return Response(result)
# 작성자 검색
elif type == 2:
searched_authors = ArticleModel.objects.filter(article_author=keywords)
result = ArticleSerializer(searched_authors, many=True).data
return Response(result)
# 제목 검색
else:
searched_titles = ArticleModel.objects.filter(article_title__contains=keywords)
result = ArticleSerializer(searched_titles, many=True).data
return Response(result)
# 게시판별 아티클 리스팅
class ArticleByBoard(APIView):
def get(self, request):
boards = request.query_params.getlist('boards', '')
results = []
for board in boards:
articles = ArticleModel.objects.filter(board=board).order_by("-id")[:5]
result = ArticleSerializer(articles, many=True).data
results_data = {
f"{board}" : result
}
results.append(results_data)
return Response(results)