コード例 #1
0
 def save(self, commit=True):
     author = self.initial.get('author')
     to_post = self.cleaned_data.get('to_post')
     text = self.cleaned_data.get('text')
     comment = Comment(to_post=to_post, author=author, text=text)
     comment.save()
     return comment
コード例 #2
0
ファイル: views.py プロジェクト: yuqichou/HelloDjango
def comment_add(request):
    comment = Comment(text=request.POST.get('comment_text'),
                      article=Article(id=request.POST.get('article_id')),
                      comment_user=request.POST.get('comment_user'),
                      pub_date=timezone.now(),
                      ip_addr=get_client_ip(request))
    comment.save()
    return redirect('news.views.comment_list', article_id=request.POST.get('article_id'))
コード例 #3
0
ファイル: views.py プロジェクト: diparshan/news_portal
def create_comment(request, **kwargs):
    data = request.POST
    news = get_object_or_404(News, pk=kwargs.get('pk'))
    feedback = data.get('feedback')
    comment_by = request.user
    payload = {"news": news, "comment_by": comment_by, "feedback": feedback}
    comment = Comment(**payload)
    comment.save()
    return render(request, "news/comment.html", {"comment": comment})
コード例 #4
0
def comments(request, *args, **kwargs):
    print("I AM INSIDE VIEW", args, kwargs)
    template_name = "news/comment.html"
    comment = request.POST
    feedback = comment.get("feedback")
    news = get_object_or_404(News, pk=kwargs.get("news_id"))
    comment = Comment(feedback=feedback, commentor=request.user, news=news)
    comment.save()
    comments = Comment.objects.filter(news=news)
    return render(request, template_name, {"comments": comments})
コード例 #5
0
ファイル: views.py プロジェクト: GuoDonger/graduation
def news_comment(request, news_id):
    comment_news = News.objects.filter(pk=news_id)[0]
    user = request.user
    content = request.POST.get('comment')
    comment = Comment()
    comment.news = comment_news
    comment.user = user
    comment.content = content
    comment.save()
    return redirect(reverse('news:news_detail', kwargs={'news_id': news_id}))
コード例 #6
0
ファイル: views.py プロジェクト: prajeet-agrawal/web_django
def news_feedback(request, *args, **kwargs):
    data = request.POST
    news_id = kwargs.get("pk")
    news = get_object_or_404(News, id=news_id)
    # comment = Comment.objects.create(news=news, feedback=data["feedback"], commenter=request.user)
    comment = Comment(news=news,
                      feedback=data["feedback"],
                      commenter=request.user)
    comment.save()
    template_name = "news/comments.html"
    return render(request, template_name, {"comment": comment})
コード例 #7
0
def comment(requests):
    if requests.method == 'POST' and requests.user.is_authenticated():
        article_id = requests.POST.get('article')
        content = requests.POST.get('content')
        if len(content) >= 1:
            new_obj = Comment(
                user=User.objects.get(username=requests.user.username),
                content=content,
                news=Article.objects.get(id=article_id))
            new_obj.save()
        return HttpResponseRedirect('article/{}'.format(article_id))
コード例 #8
0
ファイル: views.py プロジェクト: idemintsev/website
    def post(self, request, pk):
        news = self.get_object()
        comment_form = CommentForm(request.POST)

        if comment_form.is_valid():
            new_comment = Comment(news=news, **comment_form.cleaned_data)
            if request.user.is_authenticated:
                new_comment.name = request.user.username
            else:
                new_comment.name = 'Аноним'
            new_comment.save()
        return HttpResponseRedirect(reverse('news_details', args=[pk]))
コード例 #9
0
def news_detail(request, pk):
    story = Story.objects.get(pk=pk)

    form = CommentForm()
    if request.method == 'POST':
        form = CommentForm(request.POST)
        if form.is_valid():
            comment = Comment(author=form.cleaned_data["author"],
                              body=form.cleaned_data["body"],
                              post=post)
            comment.save()

    comments = Comment.objects.filter(post=post)
    context = {"story": story, "comments": comments, "form": form}
    return render(request, "news_detail.html", context)
コード例 #10
0
ファイル: facebook.py プロジェクト: TK-IT/kasse
def comment_on_post(post, text, attachment=None):
    if not text:
        raise ValueError("Text must be non-empty")
    graph = access_page()
    data = dict(message=text)
    if attachment is not None:
        data['attachment_url'] = attachment
    try:
        o = graph.put_object(post.fbid, 'comments', **data)
    except facebook.GraphAPIError:
        logger.exception("GraphAPIError while posting to /%s/comments %r",
                         post.fbid, data)
        raise
    p = Comment(post=post, fbid=o['id'], text=text)
    p.save()
    return p
コード例 #11
0
def create_comment(request):
    try:
        news = News.objects.filter(deleted=False,
                                   slug__contains=request.data['slug'])[0]
        user = Token.objects.filter(
            key__contains=request.data['token'])[0].user
        # user = Token.objects.get(key=request.data['token'])[0].user
        if request.method == 'POST':
            comment = Comment(title=request.data['title'],
                              text=request.data['text'],
                              news=news,
                              created_date_time=timezone.now(),
                              user=user)
            comment.save()
        return Response({"comment": "create"})
    except IndexError:
        return Response({"comment": "error"})
コード例 #12
0
ファイル: facebook.py プロジェクト: TK-IT/kasse
def comment_on_post(post, text, attachment=None):
    if not text:
        raise ValueError("Text must be non-empty")
    graph = access_page()
    data = dict(message=text)
    if attachment is not None:
        data['attachment_url'] = attachment
    try:
        o = graph.put_object(post.fbid, 'comments', **data)
    except facebook.GraphAPIError as exn:
        if str(exn) == '(#2) Service temporarily unavailable':
            raise ServiceUnavailable() from exn
        else:
            logger.exception("GraphAPIError while posting to /%s/comments %r",
                             post.fbid, data)
            raise
    p = Comment(post=post, fbid=o['id'], text=text)
    p.save()
    return p
コード例 #13
0
def addcomment(request, id):
    url = request.META.get('HTTP_REFERER')
    if request.method == 'POST':
        form = CommentForm(request.POST)

        if form.is_valid():
            current_user = request.user
            data = Comment()
            data.user_id = current_user.id
            data.news_id = id
            data.subject = form.cleaned_data['subject']
            data.comment = form.cleaned_data['comment']
            data.rate = form.cleaned_data['rate']
            data.ip = request.META.get('REMOTE_ADDR')
            data.save()
            messages.success(
                request, "Yorumunuz başarı ile eklenmiştir. Teşekkür ederiz !")

            return HttpResponseRedirect(url)

    messages.warning(
        request,
        "Yorumunuz Gönderilememiştir, Lütfen Bilgilerinizi Kontrol Ediniz!")
    return HttpResponseRedirect(url)
コード例 #14
0
ファイル: Faker.py プロジェクト: ali4heydari/sportify-backend
    text=
    """The official told CNN that Trump's idea is to put something on the table to get Democrats to engage with negotiations.
             Trump is not expected to back down from his demand for a border wall, but the plan will seek to entice Democrats by offering other concessions.
             """,
    pub_date=timezone.now(),
    brief="Nobody knows!",
    image_address=
    'https://upload.wikimedia.org/wikipedia/commons/thumb/9/92/Youth-soccer-indiana.jpg/1920px-Youth-soccer-indiana.jpg'
)
news1.save()
news1.tags.add(iran_tag, spain_tag, national_tag)
news1_comment = Comment(author=test_user,
                        text="Nice!",
                        pub_date=timezone.now(),
                        news=news1)
news1_comment.save()

news2 = News(
    author=test_user,
    title="Jones 'fit and ready' to face Rangers",
    text=
    """Kilmarnock manager Steve Clarke insists he will have no hesitation in playing Jordan Jones against Rangers on Wednesday.
             The 24-year-old winger signed a pre-contract agreement with Killie's title rivals last week and will join Rangers on a four-year contract in the summer.
             """,
    pub_date=timezone.now(),
    brief=
    "Kilmarnock manager Steve Clarke insists he will have no hesitation in playing Jordan Jones against Rangers on Wednesday.",
    image_address=
    'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSwABkJsTIpRNDyJCIVjEAhL20W7mhC6mg738GUsfTSIzmPoexx'
)
news2.save()
コード例 #15
0
    def handle(self, *args, **options):

        faker = Faker()

        # Create categories
        if Category.objects.all().count() == 0:
            Category.objects.bulk_create([
                Category(name='Politics',
                         slug='politics',
                         seo_title='Politics - read online on Blog-News',
                         seo_description='Last news of Politics '
                         'from all world. '
                         'Read online on Blog-News.'),
                Category(name='Finance',
                         slug='finance',
                         seo_title='Finance - read online on Blog-News',
                         seo_description='Last news of Finance '
                         'from all world. '
                         'Read online on Blog-News.'),
                Category(name='Economics',
                         slug='economics',
                         seo_title='Economics - read online on Blog-News',
                         seo_description='Last news of Economics '
                         'from all world. '
                         'Read online on Blog-News.'),
                Category(name='Sports',
                         slug='sports',
                         seo_title='Sports - read online on Blog-News',
                         seo_description='Last news of Sports '
                         'from all world. '
                         'Read online on Blog-News.')
            ])

        all_categories = Category.objects.all()
        list_category_name = [category.name for category in all_categories]

        all_users_is_staff = User.objects.all()
        list_all_users_is_staff = [
            user.username for user in all_users_is_staff if user.is_staff
        ]

        for new_post in range(options['len']):
            post = Post()
            post.title = faker.sentence(nb_words=5,
                                        variable_nb_words=False).replace(
                                            '.', '')

            post.slug = f'{post.title}'.lower().replace(' ', '-').replace(
                '.', '')  # noqa
            post.article = faker.text()
            # random Category
            post.category = Category.objects.get(
                name=choice(list_category_name))
            # random user is_staff
            post.author = User.objects.get(
                username=choice(list_all_users_is_staff))
            post.seo_title = f'{post.title} | ' \
                             f'Read online | Blog news'.replace('.', '')
            post.seo_description = f'{post.title} | Blog news.'
            post.save()

            # list for random posts
            all_posts = Post.objects.all()
            list_post_name = [post.id for post in all_posts]
            # create comments
            comment = Comment()
            comment.text = faker.text()
            # random Post
            comment.for_post = Post.objects.get(id=choice(list_post_name))
            # random user is_staff
            comment.author = User.objects.get(
                username=choice(list_all_users_is_staff))
            comment.save()
コード例 #16
0
 def create(self, validated_data):
     comment = Comment(author=self.context['user'],
                       text=validated_data['text'],
                       news=validated_data['news'])
     comment.save()
     return comment