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
105 lignes
2,2 Kio
Go
105 lignes
2,2 Kio
Go
package fosite
|
|
|
|
import (
|
|
"net/url"
|
|
"time"
|
|
|
|
"github.com/pborman/uuid"
|
|
)
|
|
|
|
// Request is an implementation of Requester
|
|
type Request struct {
|
|
ID string `json:"id" gorethink:"id"`
|
|
RequestedAt time.Time `json:"requestedAt" gorethink:"requestedAt"`
|
|
Client Client `json:"client" gorethink:"client"`
|
|
Scopes Arguments `json:"scopes" gorethink:"scopes"`
|
|
GrantedScopes Arguments `json:"grantedScopes" gorethink:"grantedScopes"`
|
|
Form url.Values `json:"form" gorethink:"form"`
|
|
Session Session `json:"session" gorethink:"session"`
|
|
}
|
|
|
|
func NewRequest() *Request {
|
|
return &Request{
|
|
Client: &DefaultClient{},
|
|
Scopes: Arguments{},
|
|
GrantedScopes: Arguments{},
|
|
Form: url.Values{},
|
|
RequestedAt: time.Now(),
|
|
}
|
|
}
|
|
|
|
func (a *Request) GetID() string {
|
|
if a.ID == "" {
|
|
a.ID = uuid.New()
|
|
}
|
|
return a.ID
|
|
}
|
|
|
|
func (a *Request) GetRequestForm() url.Values {
|
|
return a.Form
|
|
}
|
|
|
|
func (a *Request) GetRequestedAt() time.Time {
|
|
return a.RequestedAt
|
|
}
|
|
|
|
func (a *Request) GetClient() Client {
|
|
return a.Client
|
|
}
|
|
|
|
func (a *Request) GetRequestedScopes() Arguments {
|
|
return a.Scopes
|
|
}
|
|
|
|
func (a *Request) SetRequestedScopes(s Arguments) {
|
|
a.Scopes = nil
|
|
for _, scope := range s {
|
|
a.AppendRequestedScope(scope)
|
|
}
|
|
}
|
|
|
|
func (a *Request) AppendRequestedScope(scope string) {
|
|
for _, has := range a.Scopes {
|
|
if scope == has {
|
|
return
|
|
}
|
|
}
|
|
a.Scopes = append(a.Scopes, scope)
|
|
}
|
|
|
|
func (a *Request) GetGrantedScopes() Arguments {
|
|
return a.GrantedScopes
|
|
}
|
|
|
|
func (a *Request) GrantScope(scope string) {
|
|
for _, has := range a.GrantedScopes {
|
|
if scope == has {
|
|
return
|
|
}
|
|
}
|
|
a.GrantedScopes = append(a.GrantedScopes, scope)
|
|
}
|
|
|
|
func (a *Request) SetSession(session Session) {
|
|
a.Session = session
|
|
}
|
|
|
|
func (a *Request) GetSession() Session {
|
|
return a.Session
|
|
}
|
|
|
|
func (a *Request) Merge(request Requester) {
|
|
for _, scope := range request.GetRequestedScopes() {
|
|
a.AppendRequestedScope(scope)
|
|
}
|
|
for _, scope := range request.GetGrantedScopes() {
|
|
a.GrantScope(scope)
|
|
}
|
|
a.RequestedAt = request.GetRequestedAt()
|
|
a.Client = request.GetClient()
|
|
a.Session = request.GetSession()
|
|
|
|
for k, v := range request.GetRequestForm() {
|
|
a.Form[k] = v
|
|
}
|
|
}
|