Ejemplo n.º 1
0
def delete_comment(comment_id, username):
    conn = get_db_comments()
    c = conn.cursor()
    c.execute("""DELETE FROM comments WHERE comment_id = ? AND username = ?""",
              (comment_id, username))
    conn.commit()
    return c.rowcount
Ejemplo n.º 2
0
def count_comments(article_id):
    conn = get_db_comments()
    c = conn.cursor()
    c.execute("""SELECT COUNT(*) from comments WHERE article_id = (?)""",
              (article_id, ))
    rows = c.fetchone()
    n_comments = rows[0]
    return n_comments
Ejemplo n.º 3
0
def get_comment(comment_id):
    conn = get_db_comments()
    c = conn.cursor()
    c.execute("""SELECT * FROM comments WHERE comment_id = (?)""",
              (comment_id, ))
    row = c.fetchone()
    if row:
        return True
    else:
        return False
Ejemplo n.º 4
0
def post_comment(username, article_id, comment):
    conn = get_db_comments()
    c = conn.cursor()
    unix = int(time.time())
    post_time = str(
        datetime.datetime.fromtimestamp(unix).strftime('%Y-%m-%d %H:%M:%S'))
    try:
        c.execute("""INSERT into comments VALUES (NULL,?,?,?,?)""",
                  (username, article_id, comment, post_time))
        conn.commit()

    except Exception:
        conn.rollback()
Ejemplo n.º 5
0
def get_comments(article_id, no_of_comments):
    conn = get_db_comments()
    c = conn.cursor()
    c.execute(
        """SELECT * from comments where article_id = (?) ORDER BY post_time DESC LIMIT (?)""",
        (article_id, no_of_comments))
    rows = c.fetchall()
    if rows:
        row_headers = [x[0] for x in c.description]
        comments = []
        for comment in rows:
            comments.append(dict(zip(row_headers, comment)))
        return comments
    else:
        return False