This file is indexed.

/usr/share/gocode/src/github.com/coreos/go-oidc/oauth2/error.go is in golang-github-coreos-go-oidc-dev 0.0~git20151022.0.e9c0807-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
package oauth2

import (
	"encoding/json"
	"fmt"
)

const (
	ErrorAccessDenied            = "access_denied"
	ErrorInvalidClient           = "invalid_client"
	ErrorInvalidGrant            = "invalid_grant"
	ErrorInvalidRequest          = "invalid_request"
	ErrorServerError             = "server_error"
	ErrorUnauthorizedClient      = "unauthorized_client"
	ErrorUnsupportedGrantType    = "unsupported_grant_type"
	ErrorUnsupportedResponseType = "unsupported_response_type"
)

type Error struct {
	Type  string `json:"error"`
	State string `json:"state,omitempty"`
}

func (e *Error) Error() string {
	return e.Type
}

func NewError(typ string) *Error {
	return &Error{Type: typ}
}

func unmarshalError(b []byte) error {
	var oerr Error
	err := json.Unmarshal(b, &oerr)
	if err != nil {
		return fmt.Errorf("unrecognized error: %s", string(b))
	}
	return &oerr
}