Showing 1,111 of 1,370 total issues
Method portalProxy.listRegisteredCNSIs
has 5 return statements (exceeds 4 allowed). Open
func (p *portalProxy) listRegisteredCNSIs(c echo.Context) error {
log.Debug("listRegisteredCNSIs")
userGUIDIntf, err := p.GetSessionValue(c, "user_id")
if err != nil {
return interfaces.NewHTTPShadowError(
Function UnMarshalHelper
has a Cognitive Complexity of 10 (exceeds 8 allowed). Consider refactoring. Open
func UnMarshalHelper(values map[string]interface{}, intf interface{}) error {
value := reflect.ValueOf(intf)
if value.Kind() != reflect.Ptr {
- 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 portalProxy.loginToCNSI
has 5 return statements (exceeds 4 allowed). Open
func (p *portalProxy) loginToCNSI(c echo.Context) error {
log.Debug("loginToCNSI")
var systemSharedToken = false
Function MakePluginsFromConfig
has a Cognitive Complexity of 10 (exceeds 8 allowed). Consider refactoring. 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
Function init
has a Cognitive Complexity of 10 (exceeds 8 allowed). Consider refactoring. Open
func init() {
RegisterMigration(20191008121900, "PrimaryKeys", func(txn *sql.Tx, conf *goose.DBConf) error {
// Make sure all tokens have a CNSI guid
ensureTokensHaveCnsi := "UPDATE tokens SET cnsi_guid='STRATOS' WHERE token_type='uaa' and cnsi_guid IS NULL;"
- 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
Function getKubeDashboardServiceAccount
has 5 return statements (exceeds 4 allowed). Open
func getKubeDashboardServiceAccount(p interfaces.PortalProxy, cnsiGUID, userGUID string, labelSelector string) (*v1.ServiceAccount, error) {
log.Debug("getKubeDashboardService request")
response, err := p.DoProxySingleRequest(cnsiGUID, userGUID, "GET", "/api/v1/serviceaccounts?labelSelector="+labelSelector, nil, nil)
if err != nil || response.StatusCode != 200 {
Function getRecentLogs
has a Cognitive Complexity of 10 (exceeds 8 allowed). Consider refactoring. Open
func getRecentLogs(ac *AuthorizedConsumer, cnsiGUID, appGUID string) ([]*events.LogMessage, error) {
log.Debug("getRecentLogs")
messages, err := ac.consumer.RecentLogs(appGUID, ac.authToken)
if err != nil {
errorPattern := "Failed to get recent messages for App %s on CNSI %s [%v]"
- 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 CloudFoundrySpecification.Info
has 5 return statements (exceeds 4 allowed). Open
func (c *CloudFoundrySpecification) Info(apiEndpoint string, skipSSLValidation bool) (interfaces.CNSIRecord, interface{}, error) {
log.Debug("Info")
var v2InfoResponse interfaces.V2Info
var newCNSI interfaces.CNSIRecord
Method CFHosting.Init
has 5 return statements (exceeds 4 allowed). Open
func (ch *CFHosting) Init() error {
// Determine if we are running CF by presence of env var "VCAP_APPLICATION" and configure appropriately
if ch.portalProxy.Env().IsSet(VCapApplication) {
log.Info("Detected that Console is deployed as a Cloud Foundry Application")
Method PostgresCNSIRepository.ListByUser
has 5 return statements (exceeds 4 allowed). Open
func (p *PostgresCNSIRepository) ListByUser(userGUID string) ([]*interfaces.ConnectedEndpoint, error) {
log.Debug("ListByUser")
rows, err := p.db.Query(listCNSIsByUser, "cnsi", userGUID)
if err != nil {
return nil, fmt.Errorf("Unable to retrieve CNSI records: %v", err)
Method FavoritesDBStore.List
has 5 return statements (exceeds 4 allowed). Open
func (p *FavoritesDBStore) List(userGUID string) ([]*UserFavoriteRecord, error) {
log.Debug("List")
rows, err := p.db.Query(getFavorites, userGUID)
if err != nil {
return nil, fmt.Errorf("Unable to retrieve User Favorite records: %v", err)
Method CustomBinder.Bind
has 5 return statements (exceeds 4 allowed). Open
func (b *CustomBinder) Bind(i interface{}, c echo.Context) error {
db := new(echo.DefaultBinder)
err := db.Bind(i, c)
if err != nil {
Function init
has 5 return statements (exceeds 4 allowed). Open
func init() {
RegisterMigration(20180824092600, "LinkedTokens", func(txn *sql.Tx, conf *goose.DBConf) error {
addTokenID := "ALTER TABLE tokens ADD token_guid VARCHAR(36) DEFAULT 'default-token'"
_, err := txn.Exec(addTokenID)
Method portalProxy.writeSessionHook
has a Cognitive Complexity of 10 (exceeds 8 allowed). Consider refactoring. Open
func (p *portalProxy) writeSessionHook(c echo.Context) func() {
return func() {
// Has the session been modified and need saving?
sessionModifed := c.Get(jetStreamSessionContextUpdatedKey)
sessionIntf := c.Get(jetStreamSessionContextKey)
- 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 portalProxy.RefreshOidcToken
has 5 return statements (exceeds 4 allowed). Open
func (p *portalProxy) RefreshOidcToken(skipSSLValidation bool, cnsiGUID, userGUID, client, clientSecret, tokenEndpoint string) (t interfaces.TokenRecord, err error) {
log.Debug("RefreshOidcToken")
userToken, ok := p.GetCNSITokenRecordWithDisconnected(cnsiGUID, userGUID)
if !ok {
return t, fmt.Errorf("Info could not be found for user with GUID %s", userGUID)
Function getKubeDashboardService
has 5 return statements (exceeds 4 allowed). Open
func getKubeDashboardService(p interfaces.PortalProxy, cnsiGUID, userGUID string, labelSelector string) (ServiceInfo, error) {
log.Debug("getKubeDashboardService request")
info := ServiceInfo{}
response, err := p.DoProxySingleRequest(cnsiGUID, userGUID, "GET", "/api/v1/services?labelSelector="+labelSelector, nil, nil)
Method PostgresCNSIRepository.UpdateMetadata
has 5 return statements (exceeds 4 allowed). Open
func (p *PostgresCNSIRepository) UpdateMetadata(guid string, metadata string) error {
log.Debug("UpdateMetadata")
if guid == "" {
msg := "Unable to update Endpoint without a valid guid."
Function readCFFile
has 5 return statements (exceeds 4 allowed). Open
func readCFFile() (*CFConfigFile, *url.URL, error) {
var url *url.URL
usr, err := user.Current()
if err != nil {
Function readKubeConfigFile
has 5 return statements (exceeds 4 allowed). Open
func readKubeConfigFile() (*clientcmdapi.Config, error) {
// Use the KUBECONFIG env var if set, otherwise use default
kcFile := os.Getenv("KUBECONFIG")
if len(kcFile) == 0 {
Function parseConsoleConfigFromForm
has 5 return statements (exceeds 4 allowed). Open
func parseConsoleConfigFromForm(c echo.Context) (*interfaces.ConsoleConfig, error) {
consoleConfig := new(interfaces.ConsoleConfig)
// Local admin user configuration?
password := c.FormValue("local_admin_password")