mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-01 22:02:26 -05:00
[chore] migrate oauth2 -> codeberg (#3857)
This commit is contained in:
parent
49c12636c6
commit
8488ac9286
65 changed files with 1677 additions and 1221 deletions
28
vendor/codeberg.org/superseriousbusiness/oauth2/v4/generate.go
generated
vendored
Normal file
28
vendor/codeberg.org/superseriousbusiness/oauth2/v4/generate.go
generated
vendored
Normal file
|
@ -0,0 +1,28 @@
|
|||
package oauth2
|
||||
|
||||
import (
|
||||
"context"
|
||||
"net/http"
|
||||
"time"
|
||||
)
|
||||
|
||||
type (
|
||||
// GenerateBasic provide the basis of the generated token data
|
||||
GenerateBasic struct {
|
||||
Client ClientInfo
|
||||
UserID string
|
||||
CreateAt time.Time
|
||||
TokenInfo TokenInfo
|
||||
Request *http.Request
|
||||
}
|
||||
|
||||
// AuthorizeGenerate generate the authorization code interface
|
||||
AuthorizeGenerate interface {
|
||||
Token(ctx context.Context, data *GenerateBasic) (code string, err error)
|
||||
}
|
||||
|
||||
// AccessGenerate generate the access and refresh tokens interface
|
||||
AccessGenerate interface {
|
||||
Token(ctx context.Context, data *GenerateBasic, isGenRefresh bool) (access, refresh string, err error)
|
||||
}
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue