src/jetstream/plugins/yamlgenerated/main.go
Function createPluginForEndpointType
has 6 return statements (exceeds 4 allowed). Open
Open
func createPluginForEndpointType(endpointType string) GeneratedEndpointPlugin {
log.Debugf("Generating plugin %s", endpointType)
gep := GeneratedEndpointPlugin{}
gep.endpointType = endpointType
gep.subTypes = make(map[string]pluginConfig)
Method GeneratedEndpointPlugin.Connect
has 6 return statements (exceeds 4 allowed). Open
Open
func (gep GeneratedEndpointPlugin) Connect(ec echo.Context, cnsiRecord interfaces.CNSIRecord, userId string) (*interfaces.TokenRecord, bool, error) {
params := new(interfaces.LoginToCNSIParams)
err := interfaces.BindOnce(params, ec)
if err != nil {
return nil, false, err
Function MakePluginsFromConfig
has a Cognitive Complexity of 10 (exceeds 8 allowed). Consider refactoring. Open
Open
func MakePluginsFromConfig() {
log.Debug("MakePluginsFromConfig")
var config []pluginConfig
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Method GeneratedEndpointPlugin.fetchUsername
has 5 return statements (exceeds 4 allowed). Open
Open
func (gep GeneratedEndpointPlugin) fetchUsername(config pluginConfig, cnsiRecord *interfaces.CNSIRecord, tr *interfaces.TokenRecord) string {
if len(config.UserInfoAPI) == 0 || len(config.UserInfoPath) == 0 {
// Not configured
return defaultTokenUsername
}
Function getJSONValue
has a Cognitive Complexity of 9 (exceeds 8 allowed). Consider refactoring. Open
Open
func getJSONValue(data map[string]interface{}, valuePath string) string {
parts := strings.Split(valuePath, ".")
value := data[parts[0]]
if value != nil {
if len(parts) == 1 {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"