-
Notifications
You must be signed in to change notification settings - Fork 9
/
elixir.go
59 lines (51 loc) · 2 KB
/
elixir.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package translator
import (
"context"
"fmt"
"github.com/coreos/go-oidc" /* copybara-comment */
"github.com/GoogleCloudPlatform/healthcare-federated-access-services/lib/ga4gh" /* copybara-comment: ga4gh */
)
const (
elixirIssuer = "https://login.elixir-czech.org/oidc/"
)
// ElixirTranslator is a ga4gh.Translator that converts ELIXIR identities into GA4GH identities.
type ElixirTranslator struct {
verifier *oidc.IDTokenVerifier
}
// NewElixirTranslator creates a new ElixirTranslator with the provided OIDC client ID. If the
// tokens passed to this translator do not have an audience claim with a value equal to the
// clientID value then they will be rejected.
func NewElixirTranslator(ctx context.Context, clientID string) (*ElixirTranslator, error) {
v, err := ga4gh.GetOIDCTokenVerifier(ctx, clientID, elixirIssuer)
if err != nil {
return nil, err
}
return &ElixirTranslator{verifier: v}, nil
}
// TranslateToken implements the ga4gh.Translator interface.
func (s *ElixirTranslator) TranslateToken(ctx context.Context, auth string) (*ga4gh.Identity, error) {
if _, err := s.verifier.Verify(ctx, auth); err != nil {
return nil, fmt.Errorf("verifying token: %v", err)
}
return s.translateToken(auth)
}
func (s *ElixirTranslator) translateToken(auth string) (*ga4gh.Identity, error) {
id, err := ga4gh.ConvertTokenToIdentityUnsafe(auth)
if err != nil {
return nil, fmt.Errorf("inspecting token: %v", err)
}
return id, nil
}