-
Notifications
You must be signed in to change notification settings - Fork 9
/
reference.go
39 lines (31 loc) · 943 Bytes
/
reference.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package protos
import (
"path/filepath"
"strings"
"google.golang.org/protobuf/types/known/anypb"
"namespacelabs.dev/foundation/schema"
)
const FoundationTypeUrlBaseSlash = "type.foundation.namespacelabs.dev/"
type TypeReference struct {
Package schema.PackageName
ProtoType string
Builtin bool
}
func Ref(dep *anypb.Any) *TypeReference {
if t := strings.TrimPrefix(dep.GetTypeUrl(), "type.googleapis.com/"); t != dep.GetTypeUrl() {
return &TypeReference{
ProtoType: t,
Builtin: true,
}
}
if t := strings.TrimPrefix(dep.GetTypeUrl(), FoundationTypeUrlBaseSlash); t != dep.GetTypeUrl() {
return &TypeReference{
Package: schema.PackageName(filepath.Dir(t)),
ProtoType: filepath.Base(t),
}
}
return nil
}