-
Notifications
You must be signed in to change notification settings - Fork 2
/
auth_service_impl.go
123 lines (104 loc) · 3.65 KB
/
auth_service_impl.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
/*
* © 2022-2023 Khulnasoft Limited
*
* 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 vulnmap
import (
"context"
"reflect"
"github.com/rs/zerolog/log"
"github.com/khulnasoft-lab/vulnmap-ls/application/config"
noti "github.com/khulnasoft-lab/vulnmap-ls/domain/ide/notification"
"github.com/khulnasoft-lab/vulnmap-ls/domain/observability/error_reporting"
"github.com/khulnasoft-lab/vulnmap-ls/domain/observability/ux"
"github.com/khulnasoft-lab/vulnmap-ls/internal/lsp"
)
type ActiveUser struct {
Id string `json:"id"`
UserName string `json:"username,omitempty"`
Orgs []struct {
Name string `json:"name,omitempty"`
Id string `json:"id,omitempty"`
Group struct {
Name string `json:"name,omitempty"`
Id string `json:"id,omitempty"`
} `json:"group,omitempty"`
} `json:"orgs,omitempty"`
}
type authenticationService struct {
authenticationProvider AuthenticationProvider
analytics ux.Analytics
errorReporter error_reporting.ErrorReporter
notifier noti.Notifier
}
func NewAuthenticationService(
authenticationProvider AuthenticationProvider,
analytics ux.Analytics,
errorReporter error_reporting.ErrorReporter,
notifier noti.Notifier,
) AuthenticationService {
return &authenticationService{authenticationProvider, analytics, errorReporter, notifier}
}
func (a *authenticationService) Provider() AuthenticationProvider {
return a.authenticationProvider
}
func (a *authenticationService) Authenticate(ctx context.Context) (string, error) {
token, err := a.authenticationProvider.Authenticate(ctx)
if token == "" || err != nil {
log.Error().Err(err).Msgf("Failed to authenticate using auth provider %v", reflect.TypeOf(a.Provider()))
return "", err
}
a.UpdateCredentials(token, true)
a.analytics.Identify()
return token, err
}
func (a *authenticationService) UpdateCredentials(newToken string, sendNotification bool) {
c := config.CurrentConfig()
oldToken := c.Token()
if oldToken == newToken {
return
}
c.SetToken(newToken)
if sendNotification {
a.notifier.Send(lsp.AuthenticationParams{Token: newToken})
}
}
func (a *authenticationService) Logout(ctx context.Context) {
err := a.authenticationProvider.ClearAuthentication(ctx)
if err != nil {
log.Error().Err(err).Str("method", "Logout").Msg("Failed to log out.")
a.errorReporter.CaptureError(err)
return
}
a.UpdateCredentials("", true)
}
// IsAuthenticated returns true if the token is verified
// If the token is set, but not valid IsAuthenticated returns false and the reported error
func (a *authenticationService) IsAuthenticated() (bool, error) {
c := config.CurrentConfig()
if !c.NonEmptyToken() {
c.Logger().Info().Str("method", "IsAuthenticated").Msg("No token set")
return false, nil
}
user, getActiveUserErr := a.authenticationProvider.GetCheckAuthenticationFunction()()
if getActiveUserErr != nil {
log.Err(getActiveUserErr).Str("method", "IsAuthenticated").Msg("Failed to get active user")
return false, getActiveUserErr
}
log.Debug().Msg("IsAuthenticated: " + user)
return true, nil
}
func (a *authenticationService) SetProvider(provider AuthenticationProvider) {
a.authenticationProvider = provider
}