You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
823 B
40 lines
823 B
package types
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"time"
|
|
|
|
"git.aiterp.net/rpdata/api/models"
|
|
"git.aiterp.net/rpdata/api/models/comments"
|
|
)
|
|
|
|
type chapterResolver struct{}
|
|
|
|
func (r *chapterResolver) FictionalDate(ctx context.Context, chapter *models.Chapter) (*time.Time, error) {
|
|
if chapter.FictionalDate.IsZero() {
|
|
return nil, nil
|
|
}
|
|
|
|
return &chapter.FictionalDate, nil
|
|
}
|
|
|
|
func (r *chapterResolver) Comments(ctx context.Context, chapter *models.Chapter, limit *int) ([]models.Comment, error) {
|
|
limitValue := 0
|
|
if limit != nil {
|
|
if *limit < 0 {
|
|
return nil, errors.New("Limit cannot be negative")
|
|
}
|
|
|
|
limitValue = *limit
|
|
}
|
|
|
|
if !chapter.CommentMode.IsEnabled() {
|
|
return nil, nil
|
|
}
|
|
|
|
return comments.ListChapterID(chapter.ID, limitValue)
|
|
}
|
|
|
|
// ChapterResolver is a resolver
|
|
var ChapterResolver chapterResolver
|