コード例 #1
0
 def get(self, id):
     comment = Comments.query.filter_by(answers_id = id).order_by('-id').all()
     comments_list = []
     for i in comment:
         comment_user = User.query.filter_by(id = i.author_id).first()
         replies = Replys.query.filter_by(comments_id = i.id).all()
         diff_time = time_diff(i.updated_at)
         i.created_at = str(i.created_at)
         i.updated_at = str(i.updated_at)
         comments_data = object_as_dict(i)
         comments_data['diff_time'] = diff_time
         comments_data['author'] = comment_user.username
         Avatar(comments_data, comment_user)
         comments_list.append(comments_data)
         replies_list = []
         for j in replies:
             diff_time = time_diff(j.updated_at)
             reply_user = User.query.filter_by(id = j.author_id).first()
             j.created_at = str(j.created_at)
             j.updated_at = str(j.updated_at)
             reply_data = object_as_dict(j)
             reply_data['author'] = reply_user.username
             reply_data['diff_time'] = diff_time
             replies_list.append(reply_data)
             Avatar(reply_data, reply_user)
         comments_data['replies'] = replies_list
     return get_json(1, '回答的评论列表', comments_list)
コード例 #2
0
 def get(self, topicId, page):
     #form = ReplyForm()
     start = (page - 1) * 5
     query_dict = request.data
     topic = Topic.query.filter_by(id=topicId).first_or_404()
     #page, number = self.page_info
     keys = ['title']
     order_by = gen_order_by(query_dict, keys)
     filter_dict = gen_filter_dict(query_dict, keys)
     reply = topic.replies.filter_by(topic_id=topicId, is_reply=1).order_by(
         ('-id')).limit(5).offset(start)
     reply_count = topic.replies.filter_by(topic_id=topicId,
                                           is_reply=1).count()
     page_count = int(math.ceil(reply_count / 5))
     replies = []
     diff_time = time_diff(topic.updated_at)
     topic.created_at = str(topic.created_at)
     topic.updated_at = str(topic.updated_at)
     for i in reply:
         user = User.query.filter_by(id=i.author_id).first()
         diff_time = time_diff(i.updated_at)
         i.created_at = str(i.created_at)
         i.updated_at = str(i.updated_at)
         replies_data = object_as_dict(i)
         replies_data['author'] = user.username
         replies_data['diff_time'] = diff_time
         Avatar(replies_data, user)
         replies.append(replies_data)
     #topic.read_count = 1
     topic_data = object_as_dict(topic)
     topic_user = User.query.filter_by(id=topic_data['author_id']).first()
     topic_data['author'] = topic_user.username
     topic_data['diff_time'] = diff_time
     Avatar(topic_data, topic_user)
     data = {
         #'title': topic['title'],
         #'form': object_as_dict(form),
         'topic': topic_data,
         'replies': replies,
         'replies_count': reply_count,
         'page_count': page_count
     }
     #topic.read_count = 1
     return get_json(1, '文章详情', data)
コード例 #3
0
 def get(self, id):
     bar_replies = Answers.query.filter_by(questions_id = id, is_reply = 1).order_by('-id').all()
     replies = []
     for i in bar_replies: 
         user = User.query.filter_by(id = i.author_id).first()
         diff_time = time_diff(i.updated_at)
         i.created_at = str(i.created_at)
         i.updated_at = str(i.updated_at)
         replies_data = object_as_dict(i)
         replies_data['author'] = user.username
         replies_data['diff_time'] = diff_time
         Avatar(replies_data, user)
         replies.append(replies_data)
     return get_json(1, '评论信息', replies)
コード例 #4
0
 def get(self, id):
     bar_question = Questions.query.filter_by(id = id).first()
     bar_answers = Answers.query.filter_by(questions_id = id, is_reply = 0).order_by('-id').all()
     question_user = User.query.filter_by(id = bar_question.author_id).first()
     diff_time = time_diff(bar_question.updated_at)
     bar_question.created_at = str(bar_question.created_at)
     bar_question.updated_at = str(bar_question.updated_at)
     questions_data = object_as_dict(bar_question)
     questions_data['diff_time'] = diff_time
     questions_data['author'] = question_user.username
     Avatar(questions_data, question_user)
     answers_list = []
     for i in bar_answers:
         answer_user = User.query.filter_by(id = i.author_id).first()
         #comment = Comments.query.filter_by(answers_id = i.id, is_reply = 0).all()
         diff_time = time_diff(i.updated_at)
         i.created_at = str(i.created_at)
         i.updated_at = str(i.updated_at)
         answers_data = object_as_dict(i)
         answers_data['author'] = answer_user.username
         answers_data['diff_time'] = diff_time
         #comment_list = []
         #for j in comment:
         #    diff_time = time_diff(j.updated_at)
         #    comment_user = User.query.filter_by(id = j.author_id).first()
         #    j.created_at = str(j.created_at)
         #    j.updated_at = str(j.updated_at)
         #    comment_data = object_as_dict(j)
         #    comment_data['author'] = comment_user.username
         #    comment_data['diff_time'] = diff_time
         #    comment_list.append(comment_data)
         #answers_data['comments'] = comment_list
         Avatar(answers_data, answer_user)
         answers_list.append(answers_data)
     data = {'question':questions_data, 'answers':answers_list}
     return get_json(1, 'bar问题详情页', data)
コード例 #5
0
 def get(self, topicId, page):
     start = (page - 1) * 5
     reply = Reply.query.filter_by(topic_id=topicId, is_reply=1).order_by(
         ('-id')).limit(5).offset(start)
     replies = []
     for i in reply:
         user = User.query.filter_by(id=i.author_id).first()
         diff_time = time_diff(i.updated_at)
         i.created_at = str(i.created_at)
         i.updated_at = str(i.updated_at)
         replies_data = object_as_dict(i)
         replies_data['author'] = user.username
         replies_data['diff_time'] = diff_time
         Avatar(replies_data, user)
         replies.append(replies_data)
     return get_json(1, '评论信息', replies)
コード例 #6
0
 def post(self, id):
     qusetion = Questions.query.filter_by(id = id).first_or_404()
     post_data = request.data
     #user = request.user
     content = post_data.pop('content', None)
     bar_answer = Answers(content = content, questions_id = id, is_reply = 0)
     bar_answer.author_id = 6
     bar_answer.save()
     diff_time = time_diff(bar_answer.updated_at)
     answer_user = User.query.filter_by(id = bar_answer.author_id).first()
     bar_answer.created_at = str(bar_answer.created_at)
     bar_answer.updated_at = str(bar_answer.updated_at)
     answers_data = object_as_dict(bar_answer)
     answers_data['author'] = answer_user.username
     answers_data['diff_time'] = diff_time
     Avatar(answers_data, answer_user)
     return get_json(1, '回答成功', answers_data)
コード例 #7
0
 def post(self, id):
     qusetion = Questions.query.filter_by(id=id).first_or_404()
     post_data = request.data
     #user = request.user
     content = post_data.pop('content', None)
     bar_reply = Answers(content = content, questions_id = qusetion.id, is_reply = 1)
     bar_reply.author_id = 5
     bar_reply.save()
     diff_time = time_diff(bar_reply.updated_at)
     reply_user = User.query.filter_by(id = bar_reply.author_id).first()
     bar_reply.created_at = str(bar_reply.created_at)
     bar_reply.updated_at = str(bar_reply.updated_at)
     replies_data = object_as_dict(bar_reply)
     replies_data['author'] = reply_user.username
     replies_data['diff_time'] = diff_time
     Avatar(replies_data, reply_user)
     return get_json(1, '评论成功', object_as_dict(bar_reply))
コード例 #8
0
 def post(self, id):
     #Comment = Answers.query.filter_by(id = id).first_or_404()
     post_data = request.data
     #user = request.user
     content = post_data.pop('content', None)
     answer_comment = Comments(content = content, answers_id = id)
     answer_comment.author_id = 7
     answer_comment.save()
     diff_time = time_diff(answer_comment.updated_at)
     answer_user = User.query.filter_by(id = answer_comment.author_id).first()
     answer_comment.created_at = str(answer_comment.created_at)
     answer_comment.updated_at = str(answer_comment.updated_at)
     comments_data = object_as_dict(answer_comment)
     comments_data['author'] = answer_user.username
     comments_data['diff_time'] = diff_time
     Avatar(comments_data, answer_user)
     return get_json(1, '评论成功', comments_data)
コード例 #9
0
 def post(self, id):
     comment = Comments.query.filter_by(id=id).first_or_404()
     post_data = request.data
     #user = request.user
     content = post_data.pop('content', None)
     comment_reply = Replys(content = content, comments_id = id)
     comment_reply.author_id = 5
     comment_reply.save()
     diff_time = time_diff(comment_reply.updated_at)
     reply_user = User.query.filter_by(id = comment_reply.author_id).first()
     comment_reply.created_at = str(comment_reply.created_at)
     comment_reply.updated_at = str(comment_reply.updated_at)
     replies_data = object_as_dict(comment_reply)
     replies_data['author'] = reply_user.username
     replies_data['diff_time'] = diff_time
     Avatar(replies_data, reply_user)
     data = {'comment_content':comment.content,'replies':replies_data}
     return get_json(1, '评论成功', data)
コード例 #10
0
 def get(self, id):
     bar_questions = Questions.query.filter_by(bar_id = id, is_bar=1).all()
     question_list = []
     for i in bar_questions:
         user = User.query.filter_by(id = i.author_id).first()
         try:
             bar_reply = Answers.query.filter_by(bar_topic_id = i.id).count()
         except:
             bar_reply = 0
         diff_time = time_diff(i.updated_at)
         i.created_at = str(i.created_at)
         i.updated_at = str(i.updated_at)
         questions_data = object_as_dict(i)
         questions_data['author'] = user.username
         questions_data['diff_time'] = diff_time
         questions_data['replies_count'] = bar_reply
         Avatar(questions_data, user)
         question_list.append(questions_data)
     return get_json(1, 'bar问题列表', question_list)
コード例 #11
0
 def get(self, page):
     start = (page - 1) * 5
     query_dict = request.data
     keys = ['title']
     order_by = gen_topic_orderby(query_dict, keys)
     filter_dict = gen_topic_filter(query_dict, keys)
     title = _('All Topics')
     if request.path.endswith('good'):
         filter_dict.update(is_good=True)
         title = _('Good Topics')
     elif request.path.endswith('top'):
         filter_dict.update(is_bad=True)
         title = _('bad Topics')
     topics = Topic.query.filter_by(**filter_dict).order_by(
         *order_by).limit(5).offset(start)
     topic_count = FindAndCount(Topic)
     page_count = int(math.ceil(topic_count / 5))
     topic = []
     for i in topics:
         user = User.query.filter_by(id=i.author_id).first()
         reply_count = FindAndCount(Reply, topic_id=i.id, is_reply=1)
         diff_time = time_diff(i.updated_at)
         i.created_at = str(i.created_at)
         i.updated_at = str(i.updated_at)
         topics_data = object_as_dict(i)
         topics_data['author'] = user.username
         topics_data['diff_time'] = diff_time
         topics_data['replies_count'] = reply_count
         Avatar(topics_data, user)
         topic.append(topics_data)
     data = {
         'classification': title,
         'topics': topic,
         'topic_count': topic_count,
         'page_count': page_count
     }
     return get_json(1, '文章列表', data)