๐Ÿ“’ [ TIL ] 2022.07.14_61์ผ์ฐจ # ์ตœ์ข… ํ”„๋กœ์ ํŠธ (3)

๋ฌธ๋ช…์ฃผยท2022๋…„ 7์›” 14์ผ
0
post-thumbnail

[ 2022-07-14 (๋ชฉ) ์˜ค๋Š˜์˜ TIL ]

[ Today Project ]

drf ๋ฐฑ์—”๋“œ๊ฐœ๋ฐœ + ํ”„๋ก ํŠธ๊ฐœ๋ฐœ
: ์ด๋ฒˆ ํ”„๋กœ์ ํŠธ๋Š” ํŒ€ํ”„๋กœ์ ํŠธ๋กœ ์‹œ์ž‘ํ•ฉ๋‹ˆ๋‹ค.

[ Today Learn ]

  • ๊ฒŒ์‹œ๋ฌผ/๋Œ“๊ธ€ ๊ณต๊ฐ๊ธฐ๋Šฅ ๋ฐ ๊ณต๊ฐ๋งŽ์€ ์ˆœ ๋ฆฌ์ŠคํŒ…
  • ํˆฌํ‘œ๊ธฐ๋Šฅ

โœ๏ธ ๋‚ด๊ฐ€ ๋ฐฐ์šด๊ฒƒ, ์–ป์€๊ฒƒ

* ๊ฒŒ์‹œ๋ฌผ/๋Œ“๊ธ€ ๊ณต๊ฐ๊ธฐ๋Šฅ ๋ฐ ํˆฌํ‘œ๊ธฐ๋Šฅ

models.py

class ArticleLike(models.Model):
    like_category = models.CharField("๊ณต๊ฐ์ข…๋ฅ˜", max_length=50, default="")

class CommentLike(models.Model):
    like_category = models.CharField("", max_length=50, default="") 
    
class Vote(models.Model):
    category = models.CharField("๊ณต๊ฐ์ข…๋ฅ˜", max_length=50, default="") 
    
class ArticleLikeBridge(models.Model):
    user = models.ForeignKey(User, on_delete=models.CASCADE)
    article = models.ForeignKey(Article, on_delete=models.CASCADE)
    like = models.ForeignKey(ArticleLike, on_delete=models.CASCADE, null=True)
    category = models.CharField("๊ฒŒ์‹œ๊ธ€ ๊ณต๊ฐ ์นดํ…Œ๊ณ ๋ฆฌ ์ด๋ฆ„", max_length=50, default="")
    

class ArticleVoteBridge(models.Model):
    user = models.ForeignKey(User, on_delete=models.CASCADE)
    article = models.ForeignKey(Article, on_delete=models.CASCADE)
    vote = models.ForeignKey(Vote, on_delete=models.CASCADE, null=True)
    category = models.CharField("๊ฒŒ์‹œ๊ธ€ ํˆฌํ‘œ ์นดํ…Œ๊ณ ๋ฆฌ ์ด๋ฆ„", max_length=50, default="")

class CommentLikeBridge(models.Model):
    user = models.ForeignKey(User, on_delete=models.CASCADE)
    comment = models.ForeignKey(Comment, on_delete=models.CASCADE)
    like = models.ForeignKey(CommentLike, on_delete=models.CASCADE, null=True)
    category = models.CharField("์ฝ”๋ฉ˜ํŠธ ๊ณต๊ฐ ์นดํ…Œ๊ณ ๋ฆฌ ์ด๋ฆ„", max_length=50, default="")

views.py

# ๊ฒŒ์‹œ๊ธ€ ๊ณต๊ฐ
class ArticleLikeView(APIView):
    authentication_classes = [JWTAuthentication]

    def post(self, request, article_id):
        like = ArticleLike.objects.create()
        article_title = ArticleModel.objects.get(id=article_id)
        all = list(ArticleLikeBridge.objects.all().values())
        print(all)
        all_id = []
        for obj in all:
            all_id.append(obj['user_id'])

        if request.user.id in all_id:
            article_like = ArticleLikeBridge.objects.get(user_id=request.user.id)
            article_like.delete()
            return Response({'message': f'{request.user}๋‹˜๊ป˜์„œ {article_title.article_title}์— ๊ณต๊ฐ์„ ์ทจ์†Œํ•˜์…จ์Šต๋‹ˆ๋‹ค.'})
        else:
            article_like = ArticleLikeBridge(
                article_id = article_id,
                user_id = request.user.id,
                like_id = like.id,
                category = request.data.get('category')
        )
            article_like.save()
            return Response({'message': f'{request.user}๋‹˜๊ป˜์„œ {article_title.article_title}์— {article_like.category}ํ•˜์…จ์Šต๋‹ˆ๋‹ค.'})



# ๊ฒŒ์‹œ๊ธ€ ํˆฌํ‘œ
class ArticleVoteBridgeView(APIView):
    authentication_classes = [JWTAuthentication]

    def post(self, request, article_id):
        vote = VoteModel.objects.create()
        article_title = ArticleModel.objects.get(id=article_id)
        all = list(ArticleVoteBridge.objects.all().values())
        
        all_id = []
        for obj in all:
            all_id.append(obj['user_id'])
        if request.user.id in all_id:
            article_vote = ArticleVoteBridge.objects.get(user_id=request.user.id)
            article_vote.delete()
            return Response({'message': f'{request.user}๋‹˜๊ป˜์„œ {article_title.article_title}์— ํˆฌํ‘œ๋ฅผ ์ทจ์†Œํ•˜์…จ์Šต๋‹ˆ๋‹ค.'})
        else:
            article_vote = ArticleVoteBridge(
                article_id = article_id,
                user_id = request.user.id,
                vote_id = vote.id,
                category = request.data.get('category',"")
        )
            article_vote.save()
            return Response({'message': f'{request.user}๋‹˜๊ป˜์„œ {article_title.article_title}์— {article_vote.category} ํˆฌํ‘œํ•˜์…จ์Šต๋‹ˆ๋‹ค.'})


# ๋Œ“๊ธ€ ๊ณต๊ฐ
class CommentLikeView(APIView):
    authentication_classes = [JWTAuthentication]

    def post(self, request, comment_id):
        like = CommentLike.objects.create()
        comment = CommentModel.objects.get(id=comment_id)
        contents = comment.comment_contents
        all = list(CommentLikeBridge.objects.all().values())
        print(all)
        all_id = []
        for obj in all:
            all_id.append(obj['user_id'])
        

        if request.user.id in all_id:
            comment_like = CommentLikeBridge.objects.get(user_id=request.user.id)
            comment_like.delete()
            return Response({'message': f'{request.user}๋‹˜๊ป˜์„œ {contents[0:10]}...๋Œ“๊ธ€์— ๊ณต๊ฐ์„ ์ทจ์†Œํ•˜์…จ์Šต๋‹ˆ๋‹ค.'})
        else:
            comment_like = CommentLikeBridge(
                comment_id = comment_id,
                user_id = request.user.id,
                like_id = like.id,
                category = request.data.get('category')
        )
            comment_like.save()
            return Response({'message': f'{request.user}๋‹˜๊ป˜์„œ {contents[0:10]}...๋Œ“๊ธ€์— {comment_like.category}ํ•˜์…จ์Šต๋‹ˆ๋‹ค.'})


# ๊ณต๊ฐ์ˆœ ๊ฒŒ์‹œ๊ธ€ ํƒ‘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]
        ranking = [first, second, third]
        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)

urls.py

urlpatterns = [
	path('likeCount/', views.MostLikedArticleView.as_view()),
    path('voteCount/', views.MostVotedArticleView.as_view()),
    path('comment/likeCount/', views.MostLikedCommentView.as_view()),
    path('<comment_id>/comment/like/', views.CommentLikeView.as_view()),
    path('<article_id>/article/like/', views.ArticleLikeView.as_view()),
    path('<article_id>/article/vote/', views.ArticleVoteBridgeView.as_view()),
]

๐ŸŽ ์ž์„ธํ•œ ์ฝ”๋“œ๋Š” Moonmoo ์— ๊ฒŒ์‹œํ–ˆ์Šต๋‹ˆ๋‹ค

profile
ํ•˜๋ฃจ ํ•œ๊ฑธ์Œ์”ฉ ๊พธ์ค€ํžˆ ๋‚˜์•„๊ฐ€๋Š” ๊ฐœ๋ฐœ์ž๐Ÿ™†โ€โ™€๏ธ https://github.com/Moonmooj

0๊ฐœ์˜ ๋Œ“๊ธ€

๊ด€๋ จ ์ฑ„์šฉ ์ •๋ณด