mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 02:01:43 +03:00
109 lines
3.1 KiB
Go
109 lines
3.1 KiB
Go
package resolvers
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"time"
|
|
|
|
"github.com/MichaelMure/git-bug/bug"
|
|
"github.com/MichaelMure/git-bug/graphql/graph"
|
|
"github.com/MichaelMure/git-bug/graphql/models"
|
|
)
|
|
|
|
var _ graph.CreateOperationResolver = createOperationResolver{}
|
|
|
|
type createOperationResolver struct{}
|
|
|
|
func (createOperationResolver) ID(ctx context.Context, obj *bug.CreateOperation) (string, error) {
|
|
return obj.Id().String(), nil
|
|
}
|
|
|
|
func (createOperationResolver) Date(ctx context.Context, obj *bug.CreateOperation) (*time.Time, error) {
|
|
t := obj.Time()
|
|
return &t, nil
|
|
}
|
|
|
|
var _ graph.AddCommentOperationResolver = addCommentOperationResolver{}
|
|
|
|
type addCommentOperationResolver struct{}
|
|
|
|
func (addCommentOperationResolver) ID(ctx context.Context, obj *bug.AddCommentOperation) (string, error) {
|
|
return obj.Id().String(), nil
|
|
}
|
|
|
|
func (addCommentOperationResolver) Date(ctx context.Context, obj *bug.AddCommentOperation) (*time.Time, error) {
|
|
t := obj.Time()
|
|
return &t, nil
|
|
}
|
|
|
|
var _ graph.EditCommentOperationResolver = editCommentOperationResolver{}
|
|
|
|
type editCommentOperationResolver struct{}
|
|
|
|
func (editCommentOperationResolver) ID(ctx context.Context, obj *bug.EditCommentOperation) (string, error) {
|
|
return obj.Id().String(), nil
|
|
}
|
|
|
|
func (editCommentOperationResolver) Target(ctx context.Context, obj *bug.EditCommentOperation) (string, error) {
|
|
return obj.Target.String(), nil
|
|
}
|
|
|
|
func (editCommentOperationResolver) Date(ctx context.Context, obj *bug.EditCommentOperation) (*time.Time, error) {
|
|
t := obj.Time()
|
|
return &t, nil
|
|
}
|
|
|
|
var _ graph.LabelChangeOperationResolver = labelChangeOperationResolver{}
|
|
|
|
type labelChangeOperationResolver struct{}
|
|
|
|
func (labelChangeOperationResolver) ID(ctx context.Context, obj *bug.LabelChangeOperation) (string, error) {
|
|
return obj.Id().String(), nil
|
|
}
|
|
|
|
func (labelChangeOperationResolver) Date(ctx context.Context, obj *bug.LabelChangeOperation) (*time.Time, error) {
|
|
t := obj.Time()
|
|
return &t, nil
|
|
}
|
|
|
|
var _ graph.SetStatusOperationResolver = setStatusOperationResolver{}
|
|
|
|
type setStatusOperationResolver struct{}
|
|
|
|
func (setStatusOperationResolver) ID(ctx context.Context, obj *bug.SetStatusOperation) (string, error) {
|
|
return obj.Id().String(), nil
|
|
}
|
|
|
|
func (setStatusOperationResolver) Date(ctx context.Context, obj *bug.SetStatusOperation) (*time.Time, error) {
|
|
t := obj.Time()
|
|
return &t, nil
|
|
}
|
|
|
|
func (setStatusOperationResolver) Status(ctx context.Context, obj *bug.SetStatusOperation) (models.Status, error) {
|
|
return convertStatus(obj.Status)
|
|
}
|
|
|
|
var _ graph.SetTitleOperationResolver = setTitleOperationResolver{}
|
|
|
|
type setTitleOperationResolver struct{}
|
|
|
|
func (setTitleOperationResolver) ID(ctx context.Context, obj *bug.SetTitleOperation) (string, error) {
|
|
return obj.Id().String(), nil
|
|
}
|
|
|
|
func (setTitleOperationResolver) Date(ctx context.Context, obj *bug.SetTitleOperation) (*time.Time, error) {
|
|
t := obj.Time()
|
|
return &t, nil
|
|
}
|
|
|
|
func convertStatus(status bug.Status) (models.Status, error) {
|
|
switch status {
|
|
case bug.OpenStatus:
|
|
return models.StatusOpen, nil
|
|
case bug.ClosedStatus:
|
|
return models.StatusClosed, nil
|
|
}
|
|
|
|
return "", fmt.Errorf("unknown status")
|
|
}
|