Documentation ¶
Index ¶
- Constants
- type Client
- func (c *Client) GetGrantTypes() fosite.Arguments
- func (c *Client) GetHashedSecret() []byte
- func (c *Client) GetID() string
- func (c *Client) GetOwner() string
- func (c *Client) GetRedirectURIs() []string
- func (c *Client) GetResponseTypes() fosite.Arguments
- func (c *Client) GetScopes() fosite.Arguments
- type HTTPManager
- func (m *HTTPManager) CreateClient(c *Client) error
- func (m *HTTPManager) DeleteClient(id string) error
- func (m *HTTPManager) GetClient(id string) (fosite.Client, error)
- func (m *HTTPManager) GetClients() (map[string]Client, error)
- func (m *HTTPManager) GetConcreteClient(id string) (*Client, error)
- func (m *HTTPManager) UpdateClient(c *Client) error
- type Handler
- func (h *Handler) Create(w http.ResponseWriter, r *http.Request, _ httprouter.Params)
- func (h *Handler) Delete(w http.ResponseWriter, r *http.Request, ps httprouter.Params)
- func (h *Handler) Get(w http.ResponseWriter, r *http.Request, ps httprouter.Params)
- func (h *Handler) GetAll(w http.ResponseWriter, r *http.Request, ps httprouter.Params)
- func (h *Handler) SetRoutes(r *httprouter.Router)
- func (h *Handler) Update(w http.ResponseWriter, r *http.Request, ps httprouter.Params)
- type Manager
- type MemoryManager
- func (m *MemoryManager) Authenticate(id string, secret []byte) (*Client, error)
- func (m *MemoryManager) CreateClient(c *Client) error
- func (m *MemoryManager) DeleteClient(id string) error
- func (m *MemoryManager) GetClient(id string) (fosite.Client, error)
- func (m *MemoryManager) GetClients() (clients map[string]Client, err error)
- func (m *MemoryManager) GetConcreteClient(id string) (*Client, error)
- func (m *MemoryManager) UpdateClient(c *Client) error
- type RethinkManager
- func (m *RethinkManager) Authenticate(id string, secret []byte) (*Client, error)
- func (m *RethinkManager) ColdStart() error
- func (m *RethinkManager) CreateClient(c *Client) error
- func (m *RethinkManager) DeleteClient(id string) error
- func (m *RethinkManager) GetClient(id string) (fosite.Client, error)
- func (m *RethinkManager) GetClients() (clients map[string]Client, err error)
- func (m *RethinkManager) GetConcreteClient(id string) (*Client, error)
- func (m *RethinkManager) UpdateClient(c *Client) error
- func (m *RethinkManager) Watch(ctx context.Context)
- type Storage
Constants ¶
View Source
const ( ClientsResource = "rn:hydra:clients" ClientResource = "rn:hydra:clients:%s" Scope = "hydra.clients" )
View Source
const (
ClientsHandlerPath = "/clients"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct { ID string `json:"id" gorethink:"id"` Name string `json:"client_name" gorethink:"client_name"` Secret string `json:"client_secret,omitempty" gorethink:"client_secret"` RedirectURIs []string `json:"redirect_uris" gorethink:"redirect_uris"` GrantTypes []string `json:"grant_types" gorethink:"grant_types"` ResponseTypes []string `json:"response_types" gorethink:"response_types"` Scope string `json:"scope" gorethink:"scope"` Owner string `json:"owner" gorethink:"owner"` PolicyURI string `json:"policy_uri" gorethink:"policy_uri"` TermsOfServiceURI string `json:"tos_uri" gorethink:"tos_uri"` ClientURI string `json:"client_uri" gorethink:"client_uri"` LogoURI string `json:"logo_uri" gorethink:"logo_uri"` Contacts []string `json:"contacts" gorethink:"contacts"` }
func (*Client) GetGrantTypes ¶
func (*Client) GetHashedSecret ¶
func (*Client) GetRedirectURIs ¶
func (*Client) GetResponseTypes ¶
type HTTPManager ¶
func (*HTTPManager) CreateClient ¶
func (m *HTTPManager) CreateClient(c *Client) error
func (*HTTPManager) DeleteClient ¶
func (m *HTTPManager) DeleteClient(id string) error
func (*HTTPManager) GetClients ¶
func (m *HTTPManager) GetClients() (map[string]Client, error)
func (*HTTPManager) GetConcreteClient ¶
func (m *HTTPManager) GetConcreteClient(id string) (*Client, error)
func (*HTTPManager) UpdateClient ¶ added in v0.5.0
func (m *HTTPManager) UpdateClient(c *Client) error
type Handler ¶
func (*Handler) Create ¶
func (h *Handler) Create(w http.ResponseWriter, r *http.Request, _ httprouter.Params)
func (*Handler) Delete ¶
func (h *Handler) Delete(w http.ResponseWriter, r *http.Request, ps httprouter.Params)
func (*Handler) Get ¶
func (h *Handler) Get(w http.ResponseWriter, r *http.Request, ps httprouter.Params)
func (*Handler) GetAll ¶
func (h *Handler) GetAll(w http.ResponseWriter, r *http.Request, ps httprouter.Params)
func (*Handler) SetRoutes ¶
func (h *Handler) SetRoutes(r *httprouter.Router)
func (*Handler) Update ¶ added in v0.5.0
func (h *Handler) Update(w http.ResponseWriter, r *http.Request, ps httprouter.Params)
type MemoryManager ¶
func (*MemoryManager) Authenticate ¶
func (m *MemoryManager) Authenticate(id string, secret []byte) (*Client, error)
func (*MemoryManager) CreateClient ¶
func (m *MemoryManager) CreateClient(c *Client) error
func (*MemoryManager) DeleteClient ¶
func (m *MemoryManager) DeleteClient(id string) error
func (*MemoryManager) GetClient ¶
func (m *MemoryManager) GetClient(id string) (fosite.Client, error)
func (*MemoryManager) GetClients ¶
func (m *MemoryManager) GetClients() (clients map[string]Client, err error)
func (*MemoryManager) GetConcreteClient ¶
func (m *MemoryManager) GetConcreteClient(id string) (*Client, error)
func (*MemoryManager) UpdateClient ¶ added in v0.5.0
func (m *MemoryManager) UpdateClient(c *Client) error
type RethinkManager ¶
type RethinkManager struct { Session *r.Session Table r.Term sync.RWMutex Clients map[string]Client Hasher hash.Hasher }
func (*RethinkManager) Authenticate ¶
func (m *RethinkManager) Authenticate(id string, secret []byte) (*Client, error)
func (*RethinkManager) ColdStart ¶
func (m *RethinkManager) ColdStart() error
func (*RethinkManager) CreateClient ¶
func (m *RethinkManager) CreateClient(c *Client) error
func (*RethinkManager) DeleteClient ¶
func (m *RethinkManager) DeleteClient(id string) error
func (*RethinkManager) GetClient ¶
func (m *RethinkManager) GetClient(id string) (fosite.Client, error)
func (*RethinkManager) GetClients ¶
func (m *RethinkManager) GetClients() (clients map[string]Client, err error)
func (*RethinkManager) GetConcreteClient ¶
func (m *RethinkManager) GetConcreteClient(id string) (*Client, error)
func (*RethinkManager) UpdateClient ¶ added in v0.5.0
func (m *RethinkManager) UpdateClient(c *Client) error
func (*RethinkManager) Watch ¶
func (m *RethinkManager) Watch(ctx context.Context)
Click to show internal directories.
Click to hide internal directories.