forked from aosedge/aos_vis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpermissionprovider.go
130 lines (103 loc) · 3.9 KB
/
permissionprovider.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
// SPDX-License-Identifier: Apache-2.0
//
// Copyright (C) 2021 Renesas Electronics Corporation.
// Copyright (C) 2021 EPAM Systems, Inc.
//
// 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 permissionprovider
import (
"context"
"time"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/credentials/insecure"
"github.com/aosedge/aos_common/aoserrors"
pb "github.com/aosedge/aos_common/api/iamanager"
"github.com/aosedge/aos_common/utils/cryptutils"
"github.com/aosedge/aos_vis/config"
)
/*******************************************************************************
* Types
******************************************************************************/
// PermissionProvider vis permission provider.
type PermissionProvider struct {
serverURL string
rootCert string
insecure bool
cryptoContext *cryptutils.CryptoContext
iamClient pb.IAMPublicPermissionsServiceClient
connection *grpc.ClientConn
}
/*******************************************************************************
* Consts
******************************************************************************/
const (
iamRequestTimeout = 30 * time.Second
)
const visFunctionalServerID = "vis"
/*******************************************************************************
* Public
******************************************************************************/
// New creates new permission provider.
func New(config *config.Config, insecure bool) (provider *PermissionProvider, err error) {
provider = &PermissionProvider{
serverURL: config.PermissionServerURL,
rootCert: config.CACert, iamClient: nil, insecure: insecure, connection: nil,
}
if provider.cryptoContext, err = cryptutils.NewCryptoContext(config.CACert); err != nil {
return nil, aoserrors.Wrap(err)
}
return provider, nil
}
// GetVisPermissionByToken get vis permission by token.
func (provider *PermissionProvider) GetVisPermissionByToken(token string) (permissions map[string]string, err error) {
if provider.connection == nil {
if err = provider.connect(); err != nil {
return permissions, err
}
}
ctx, cancel := context.WithTimeout(context.Background(), iamRequestTimeout)
defer cancel()
req := &pb.PermissionsRequest{Secret: token, FunctionalServerId: visFunctionalServerID}
response, err := provider.iamClient.GetPermissions(ctx, req)
if err != nil {
return permissions, aoserrors.Wrap(err)
}
return response.GetPermissions().GetPermissions(), nil
}
// Close close connection with permission provider grpc server.
func (provider *PermissionProvider) Close() {
if provider.connection != nil {
provider.connection.Close()
}
}
/*******************************************************************************
* Private
******************************************************************************/
func (provider *PermissionProvider) connect() (err error) {
var secureOpt grpc.DialOption
if provider.insecure {
secureOpt = grpc.WithTransportCredentials(insecure.NewCredentials())
} else {
tlsConfig, err := provider.cryptoContext.GetClientTLSConfig()
if err != nil {
return aoserrors.Wrap(err)
}
secureOpt = grpc.WithTransportCredentials(credentials.NewTLS(tlsConfig))
}
if provider.connection, err = grpc.NewClient(provider.serverURL, secureOpt); err != nil {
return aoserrors.Wrap(err)
}
provider.iamClient = pb.NewIAMPublicPermissionsServiceClient(provider.connection)
return nil
}