// GetPostComments returns all root level comments along with their children for a Post` func (cs *CommentService) GetPostComments(postID int) (comments []*model.Comment, err error) { var rows *sqlx.Rows rows, err = cs.db.Queryx(queries.Get("get_post_comments"), postID) if err != nil { return } var pgcr []types.PGComment for rows.Next() { var pgc types.PGComment err = rows.StructScan(&pgc) if err != nil { return } pgcr = append(pgcr, pgc) } comments = types.AssembleCommentTree(pgcr) return }
// GetUserComments returns all of a users past comments func (cs *CommentService) GetUserComments(userID int) (comments []*model.Comment, err error) { var rows *sqlx.Rows rows, err = cs.db.Queryx(queries.Get("get_user_comments"), userID) if err != nil { return } var pgcr []types.PGComment for rows.Next() { var pgc types.PGComment err = rows.StructScan(&pgc) if err != nil { return } log.Printf("%+v", pgc) pgcr = append(pgcr, pgc) } comments = types.AssembleCommentTree(pgcr) return }