23 lines
517 B
Go
23 lines
517 B
Go
package services
|
|
|
|
import (
|
|
"context"
|
|
"git.solsynth.dev/hydrogen/messaging/pkg/internal/gap"
|
|
|
|
"git.solsynth.dev/hydrogen/paperclip/pkg/proto"
|
|
"github.com/samber/lo"
|
|
)
|
|
|
|
func CheckAttachmentByIDExists(id uint, usage string) bool {
|
|
pc, err := gap.H.DiscoverServiceGRPC("Hydrogen.Passport")
|
|
if err != nil {
|
|
return false
|
|
}
|
|
_, err = proto.NewAttachmentsClient(pc).CheckAttachmentExists(context.Background(), &proto.AttachmentLookupRequest{
|
|
Id: lo.ToPtr(uint64(id)),
|
|
Usage: &usage,
|
|
})
|
|
|
|
return err == nil
|
|
}
|