mirror of https://github.com/usememos/memos
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
118 lines
3.6 KiB
Go
118 lines
3.6 KiB
Go
package v1
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
"time"
|
|
|
|
"google.golang.org/grpc/codes"
|
|
"google.golang.org/grpc/status"
|
|
"google.golang.org/protobuf/types/known/emptypb"
|
|
"google.golang.org/protobuf/types/known/timestamppb"
|
|
|
|
v1pb "github.com/usememos/memos/proto/gen/api/v1"
|
|
"github.com/usememos/memos/store"
|
|
)
|
|
|
|
func (s *APIV1Service) CreateWebhook(ctx context.Context, request *v1pb.CreateWebhookRequest) (*v1pb.Webhook, error) {
|
|
currentUser, err := s.GetCurrentUser(ctx)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "failed to get user: %v", err)
|
|
}
|
|
|
|
webhook, err := s.Store.CreateWebhook(ctx, &store.Webhook{
|
|
CreatorID: currentUser.ID,
|
|
Name: request.Name,
|
|
URL: strings.TrimSpace(request.Url),
|
|
})
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "failed to create webhook, error: %+v", err)
|
|
}
|
|
return convertWebhookFromStore(webhook), nil
|
|
}
|
|
|
|
func (s *APIV1Service) ListWebhooks(ctx context.Context, request *v1pb.ListWebhooksRequest) (*v1pb.ListWebhooksResponse, error) {
|
|
creatorID, err := ExtractUserIDFromName(request.Creator)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.InvalidArgument, "invalid creator name: %v", err)
|
|
}
|
|
|
|
webhooks, err := s.Store.ListWebhooks(ctx, &store.FindWebhook{
|
|
CreatorID: &creatorID,
|
|
})
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "failed to list webhooks, error: %+v", err)
|
|
}
|
|
|
|
response := &v1pb.ListWebhooksResponse{
|
|
Webhooks: []*v1pb.Webhook{},
|
|
}
|
|
for _, webhook := range webhooks {
|
|
response.Webhooks = append(response.Webhooks, convertWebhookFromStore(webhook))
|
|
}
|
|
return response, nil
|
|
}
|
|
|
|
func (s *APIV1Service) GetWebhook(ctx context.Context, request *v1pb.GetWebhookRequest) (*v1pb.Webhook, error) {
|
|
currentUser, err := s.GetCurrentUser(ctx)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "failed to get user: %v", err)
|
|
}
|
|
|
|
webhook, err := s.Store.GetWebhook(ctx, &store.FindWebhook{
|
|
ID: &request.Id,
|
|
CreatorID: ¤tUser.ID,
|
|
})
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "failed to get webhook, error: %+v", err)
|
|
}
|
|
if webhook == nil {
|
|
return nil, status.Errorf(codes.NotFound, "webhook not found")
|
|
}
|
|
return convertWebhookFromStore(webhook), nil
|
|
}
|
|
|
|
func (s *APIV1Service) UpdateWebhook(ctx context.Context, request *v1pb.UpdateWebhookRequest) (*v1pb.Webhook, error) {
|
|
if request.UpdateMask == nil || len(request.UpdateMask.Paths) == 0 {
|
|
return nil, status.Errorf(codes.InvalidArgument, "update_mask is required")
|
|
}
|
|
|
|
update := &store.UpdateWebhook{}
|
|
for _, field := range request.UpdateMask.Paths {
|
|
switch field {
|
|
case "name":
|
|
update.Name = &request.Webhook.Name
|
|
case "url":
|
|
update.URL = &request.Webhook.Url
|
|
}
|
|
}
|
|
|
|
webhook, err := s.Store.UpdateWebhook(ctx, update)
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "failed to update webhook, error: %+v", err)
|
|
}
|
|
return convertWebhookFromStore(webhook), nil
|
|
}
|
|
|
|
func (s *APIV1Service) DeleteWebhook(ctx context.Context, request *v1pb.DeleteWebhookRequest) (*emptypb.Empty, error) {
|
|
err := s.Store.DeleteWebhook(ctx, &store.DeleteWebhook{
|
|
ID: request.Id,
|
|
})
|
|
if err != nil {
|
|
return nil, status.Errorf(codes.Internal, "failed to delete webhook, error: %+v", err)
|
|
}
|
|
return &emptypb.Empty{}, nil
|
|
}
|
|
|
|
func convertWebhookFromStore(webhook *store.Webhook) *v1pb.Webhook {
|
|
return &v1pb.Webhook{
|
|
Id: webhook.ID,
|
|
CreateTime: timestamppb.New(time.Unix(webhook.CreatedTs, 0)),
|
|
UpdateTime: timestamppb.New(time.Unix(webhook.UpdatedTs, 0)),
|
|
Creator: fmt.Sprintf("%s%d", UserNamePrefix, webhook.CreatorID),
|
|
Name: webhook.Name,
|
|
Url: webhook.URL,
|
|
}
|
|
}
|