|
@ -10,12 +10,12 @@ import ( |
|
|
// StoryResolver for the Story graphql type
|
|
|
// StoryResolver for the Story graphql type
|
|
|
type StoryResolver struct{ S story.Story } |
|
|
type StoryResolver struct{ S story.Story } |
|
|
|
|
|
|
|
|
// StoryArgs is args for channel query
|
|
|
|
|
|
|
|
|
// StoryArgs is args for story query
|
|
|
type StoryArgs struct { |
|
|
type StoryArgs struct { |
|
|
ID string |
|
|
ID string |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
// Story implements the channel query
|
|
|
|
|
|
|
|
|
// Story implements the story query
|
|
|
func (r *QueryResolver) Story(ctx context.Context, args *StoryArgs) (*StoryResolver, error) { |
|
|
func (r *QueryResolver) Story(ctx context.Context, args *StoryArgs) (*StoryResolver, error) { |
|
|
story, err := story.FindID(args.ID) |
|
|
story, err := story.FindID(args.ID) |
|
|
if err != nil { |
|
|
if err != nil { |
|
@ -25,6 +25,72 @@ func (r *QueryResolver) Story(ctx context.Context, args *StoryArgs) (*StoryResol |
|
|
return &StoryResolver{S: story}, nil |
|
|
return &StoryResolver{S: story}, nil |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// StoriesArg is args for stories query
|
|
|
|
|
|
type StoriesArg struct { |
|
|
|
|
|
Input *StoriesInput |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// StoriesInput resolves the TagInput input
|
|
|
|
|
|
type StoriesInput struct { |
|
|
|
|
|
Author *string |
|
|
|
|
|
Tags *[]TagInput |
|
|
|
|
|
EarliestFictionalDate *string |
|
|
|
|
|
LatestFictionalDate *string |
|
|
|
|
|
Limit *int32 |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// Stories implements the stories query
|
|
|
|
|
|
func (r *QueryResolver) Stories(ctx context.Context, args *StoriesArg) ([]*StoryResolver, error) { |
|
|
|
|
|
author := "" |
|
|
|
|
|
if args.Input.Author != nil { |
|
|
|
|
|
author = *args.Input.Author |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
tags := make([]story.Tag, 0, 8) |
|
|
|
|
|
if args.Input.Tags != nil { |
|
|
|
|
|
for _, tagInput := range *args.Input.Tags { |
|
|
|
|
|
tags = append(tags, story.Tag{ |
|
|
|
|
|
Kind: tagInput.Kind, |
|
|
|
|
|
Name: tagInput.Name, |
|
|
|
|
|
}) |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
earliest := time.Time{} |
|
|
|
|
|
err := error(nil) |
|
|
|
|
|
if args.Input.EarliestFictionalDate != nil { |
|
|
|
|
|
earliest, err = time.Parse(time.RFC3339Nano, *args.Input.EarliestFictionalDate) |
|
|
|
|
|
if err != nil { |
|
|
|
|
|
return nil, err |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
latest := time.Time{} |
|
|
|
|
|
if args.Input.LatestFictionalDate != nil { |
|
|
|
|
|
latest, err = time.Parse(time.RFC3339Nano, *args.Input.LatestFictionalDate) |
|
|
|
|
|
if err != nil { |
|
|
|
|
|
return nil, err |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
limit := 30 |
|
|
|
|
|
if args.Input.Limit != nil { |
|
|
|
|
|
limit = int(*args.Input.Limit) |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
stories, err := story.List(author, tags, earliest, latest, limit) |
|
|
|
|
|
if err != nil { |
|
|
|
|
|
return nil, err |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
resolvers := make([]*StoryResolver, len(stories)) |
|
|
|
|
|
for i, story := range stories { |
|
|
|
|
|
resolvers[i] = &StoryResolver{S: story} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
return resolvers, nil |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
// ID resolves Story.id
|
|
|
// ID resolves Story.id
|
|
|
func (r *StoryResolver) ID() string { |
|
|
func (r *StoryResolver) ID() string { |
|
|
return r.S.ID |
|
|
return r.S.ID |
|
|