03ea72595d
* Initial Commit for OAuth API This builds and run and return the right error. Need to test it and then adding all users as possible client * Added mising dependency * just compile already... * Fixing template test * Imrpovements Moved db stuff in models Added some tests Added form in modpanel to add/update a client Added controllers for add/update of client * Added Forms + speed improvements Controller oauth client listing + html Controller oauth client delete + messages Messages on comment delete New ES config that disable ES if set to false. Improve load speed on local development Fix a load config bug Fix index admin & translation string sign_out broken by @ewhal * Sanitize empty strig in form array + css Multiple empty array of strings are sanitized for the oauth client create form Added some css for the form display * Upload and Create form works * Fix splitting response types * Removing required on secret when updating * fix travis error * Fix travis template test * Update dependency * Moved to jinzhu instead of azhao * randomizen secret on creation * Final touch on oath api improved display name fix grant form csrf fix login csrf on oauth * Fix gorm test * fix template test * Fixing deleted dependency issue * Make travis faster * Fix typo * Fix csrf for api calls * This shouldn't be exempt * Removing hard coded hash @ewhal Don't forget to replace the hash in tokens.go with another one * Added an example on how to use OAuth middleware * Renamed fosite utils to oauth2 utils
80 lignes
2,3 Kio
Go
80 lignes
2,3 Kio
Go
package fosite
|
|
|
|
// Client represents a client or an app.
|
|
type Client interface {
|
|
// GetID returns the client ID.
|
|
GetID() string
|
|
|
|
// GetHashedSecret returns the hashed secret as it is stored in the store.
|
|
GetHashedSecret() []byte
|
|
|
|
// Returns the client's allowed redirect URIs.
|
|
GetRedirectURIs() []string
|
|
|
|
// Returns the client's allowed grant types.
|
|
GetGrantTypes() Arguments
|
|
|
|
// Returns the client's allowed response types.
|
|
GetResponseTypes() Arguments
|
|
|
|
// Returns the scopes this client is allowed to request.
|
|
GetScopes() Arguments
|
|
|
|
// IsPublic returns true, if this client is marked as public.
|
|
IsPublic() bool
|
|
}
|
|
|
|
// DefaultClient is a simple default implementation of the Client interface.
|
|
type DefaultClient struct {
|
|
ID string `json:"id"`
|
|
Secret []byte `json:"client_secret,omitempty"`
|
|
RedirectURIs []string `json:"redirect_uris"`
|
|
GrantTypes []string `json:"grant_types"`
|
|
ResponseTypes []string `json:"response_types"`
|
|
Scopes []string `json:"scopes"`
|
|
Public bool `json:"public"`
|
|
}
|
|
|
|
func (c *DefaultClient) GetID() string {
|
|
return c.ID
|
|
}
|
|
|
|
func (c *DefaultClient) IsPublic() bool {
|
|
return c.Public
|
|
}
|
|
|
|
func (c *DefaultClient) GetRedirectURIs() []string {
|
|
return c.RedirectURIs
|
|
}
|
|
|
|
func (c *DefaultClient) GetHashedSecret() []byte {
|
|
return c.Secret
|
|
}
|
|
|
|
func (c *DefaultClient) GetScopes() Arguments {
|
|
return c.Scopes
|
|
}
|
|
|
|
func (c *DefaultClient) GetGrantTypes() Arguments {
|
|
// https://openid.net/specs/openid-connect-registration-1_0.html#ClientMetadata
|
|
//
|
|
// JSON array containing a list of the OAuth 2.0 Grant Types that the Client is declaring
|
|
// that it will restrict itself to using.
|
|
// If omitted, the default is that the Client will use only the authorization_code Grant Type.
|
|
if len(c.GrantTypes) == 0 {
|
|
return Arguments{"authorization_code"}
|
|
}
|
|
return Arguments(c.GrantTypes)
|
|
}
|
|
|
|
func (c *DefaultClient) GetResponseTypes() Arguments {
|
|
// https://openid.net/specs/openid-connect-registration-1_0.html#ClientMetadata
|
|
//
|
|
// <JSON array containing a list of the OAuth 2.0 response_type values that the Client is declaring
|
|
// that it will restrict itself to using. If omitted, the default is that the Client will use
|
|
// only the code Response Type.
|
|
if len(c.ResponseTypes) == 0 {
|
|
return Arguments{"code"}
|
|
}
|
|
return Arguments(c.ResponseTypes)
|
|
}
|