2023-08-05 21:30:23 +08:00
|
|
|
package v2
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2024-02-05 23:32:01 +08:00
|
|
|
|
2024-03-21 21:39:34 +08:00
|
|
|
"github.com/pkg/errors"
|
|
|
|
"google.golang.org/grpc/codes"
|
|
|
|
"google.golang.org/grpc/status"
|
2024-03-21 21:44:43 +08:00
|
|
|
|
|
|
|
apiv2pb "github.com/usememos/memos/proto/gen/api/v2"
|
|
|
|
"github.com/usememos/memos/store"
|
2023-08-05 21:30:23 +08:00
|
|
|
)
|
|
|
|
|
2024-03-27 18:51:11 +08:00
|
|
|
var ownerCache *apiv2pb.User
|
2024-03-21 21:39:34 +08:00
|
|
|
|
2024-04-27 22:02:15 +08:00
|
|
|
func (s *APIV2Service) GetWorkspaceProfile(ctx context.Context, _ *apiv2pb.GetWorkspaceProfileRequest) (*apiv2pb.WorkspaceProfile, error) {
|
2024-01-28 07:35:42 +08:00
|
|
|
workspaceProfile := &apiv2pb.WorkspaceProfile{
|
|
|
|
Version: s.Profile.Version,
|
|
|
|
Mode: s.Profile.Mode,
|
2023-09-14 20:16:17 +08:00
|
|
|
}
|
2024-03-21 21:39:34 +08:00
|
|
|
owner, err := s.GetInstanceOwner(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, status.Errorf(codes.Internal, "failed to get instance owner: %v", err)
|
|
|
|
}
|
|
|
|
if owner != nil {
|
|
|
|
workspaceProfile.Owner = owner.Name
|
|
|
|
}
|
2024-04-27 22:02:15 +08:00
|
|
|
return workspaceProfile, nil
|
2023-09-06 21:54:12 +08:00
|
|
|
}
|
2024-03-21 21:39:34 +08:00
|
|
|
|
|
|
|
func (s *APIV2Service) GetInstanceOwner(ctx context.Context) (*apiv2pb.User, error) {
|
2024-03-27 18:51:11 +08:00
|
|
|
if ownerCache != nil {
|
|
|
|
return ownerCache, nil
|
2024-03-21 21:39:34 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
hostUserType := store.RoleHost
|
|
|
|
user, err := s.Store.GetUser(ctx, &store.FindUser{
|
|
|
|
Role: &hostUserType,
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, errors.Wrapf(err, "failed to find owner")
|
|
|
|
}
|
|
|
|
if user == nil {
|
2024-03-27 18:51:11 +08:00
|
|
|
return nil, nil
|
2024-03-21 21:39:34 +08:00
|
|
|
}
|
|
|
|
|
2024-03-27 18:51:11 +08:00
|
|
|
ownerCache = convertUserFromStore(user)
|
|
|
|
return ownerCache, nil
|
2024-03-21 21:39:34 +08:00
|
|
|
}
|