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.
96 lines
2.0 KiB
96 lines
2.0 KiB
package resolver
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"git.aiterp.net/rpdata/api/model/story"
|
|
)
|
|
|
|
// StoryResolver for the Story graphql type
|
|
type StoryResolver struct{ S story.Story }
|
|
|
|
// StoryArgs is args for channel query
|
|
type StoryArgs struct {
|
|
ID string
|
|
}
|
|
|
|
// Story implements the channel query
|
|
func (r *QueryResolver) Story(ctx context.Context, args *StoryArgs) (*StoryResolver, error) {
|
|
story, err := story.FindID(args.ID)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return &StoryResolver{S: story}, nil
|
|
}
|
|
|
|
// ID resolves Story.id
|
|
func (r *StoryResolver) ID() string {
|
|
return r.S.ID
|
|
}
|
|
|
|
// Author resolves Story.author
|
|
func (r *StoryResolver) Author() string {
|
|
return r.S.Author
|
|
}
|
|
|
|
// Name resolves Story.name
|
|
func (r *StoryResolver) Name() string {
|
|
return r.S.Name
|
|
}
|
|
|
|
// Category resolves Story.category
|
|
func (r *StoryResolver) Category() string {
|
|
return r.S.Category
|
|
}
|
|
|
|
// Open resolves Story.open
|
|
func (r *StoryResolver) Open() bool {
|
|
return r.S.Open
|
|
}
|
|
|
|
// Listed resolves Story.listed
|
|
func (r *StoryResolver) Listed() bool {
|
|
return r.S.Listed
|
|
}
|
|
|
|
// Tags resolves Story.tags
|
|
func (r *StoryResolver) Tags() []*TagResolver {
|
|
resolvers := make([]*TagResolver, len(r.S.Tags))
|
|
for i, tag := range r.S.Tags {
|
|
resolvers[i] = &TagResolver{T: tag}
|
|
}
|
|
|
|
return resolvers
|
|
}
|
|
|
|
// Chapters resolves Story.chapters
|
|
func (r *StoryResolver) Chapters() ([]*ChapterResolver, error) {
|
|
chapters, err := r.S.Chapters()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
resolvers := make([]*ChapterResolver, len(chapters))
|
|
for i, chapter := range chapters {
|
|
resolvers[i] = &ChapterResolver{C: chapter}
|
|
}
|
|
|
|
return resolvers, nil
|
|
}
|
|
|
|
// CreatedDate resolves Story.createdDate
|
|
func (r *StoryResolver) CreatedDate() string {
|
|
return r.S.CreatedDate.Format(time.RFC3339Nano)
|
|
}
|
|
|
|
// FictionalDate resolves Story.fictionalDate
|
|
func (r *StoryResolver) FictionalDate() string {
|
|
return r.S.FictionalDate.Format(time.RFC3339Nano)
|
|
}
|
|
|
|
// UpdatedDate resolves Story.updatedDate
|
|
func (r *StoryResolver) UpdatedDate() string {
|
|
return r.S.UpdatedDate.Format(time.RFC3339Nano)
|
|
}
|