mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
55 lines
1.4 KiB
Go
55 lines
1.4 KiB
Go
|
package resolvers
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"fmt"
|
||
|
"github.com/MichaelMure/git-bug/bug"
|
||
|
"github.com/MichaelMure/git-bug/bug/operations"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
type addCommentOperationResolver struct{}
|
||
|
|
||
|
func (addCommentOperationResolver) Date(ctx context.Context, obj *operations.AddCommentOperation) (time.Time, error) {
|
||
|
return obj.Time(), nil
|
||
|
}
|
||
|
|
||
|
type createOperationResolver struct{}
|
||
|
|
||
|
func (createOperationResolver) Date(ctx context.Context, obj *operations.CreateOperation) (time.Time, error) {
|
||
|
return obj.Time(), nil
|
||
|
}
|
||
|
|
||
|
type labelChangeOperation struct{}
|
||
|
|
||
|
func (labelChangeOperation) Date(ctx context.Context, obj *operations.LabelChangeOperation) (time.Time, error) {
|
||
|
return obj.Time(), nil
|
||
|
}
|
||
|
|
||
|
type setStatusOperationResolver struct{}
|
||
|
|
||
|
func (setStatusOperationResolver) Date(ctx context.Context, obj *operations.SetStatusOperation) (time.Time, error) {
|
||
|
return obj.Time(), nil
|
||
|
}
|
||
|
|
||
|
func (setStatusOperationResolver) Status(ctx context.Context, obj *operations.SetStatusOperation) (Status, error) {
|
||
|
return convertStatus(obj.Status)
|
||
|
}
|
||
|
|
||
|
type setTitleOperationResolver struct{}
|
||
|
|
||
|
func (setTitleOperationResolver) Date(ctx context.Context, obj *operations.SetTitleOperation) (time.Time, error) {
|
||
|
return obj.Time(), nil
|
||
|
}
|
||
|
|
||
|
func convertStatus(status bug.Status) (Status, error) {
|
||
|
switch status {
|
||
|
case bug.OpenStatus:
|
||
|
return StatusOpen, nil
|
||
|
case bug.ClosedStatus:
|
||
|
return StatusClosed, nil
|
||
|
}
|
||
|
|
||
|
return "", fmt.Errorf("Unknown status")
|
||
|
}
|