mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-03 10:12:25 -06:00
Grand test fixup (#138)
* start fixing up tests * fix up tests + automate with drone * fiddle with linting * messing about with drone.yml * some more fiddling * hmmm * add cache * add vendor directory * verbose * ci updates * update some little things * update sig
This commit is contained in:
parent
329a5e8144
commit
98263a7de6
2677 changed files with 1090869 additions and 219 deletions
39
vendor/github.com/superseriousbusiness/oauth2/v4/manage/config.go
generated
vendored
Normal file
39
vendor/github.com/superseriousbusiness/oauth2/v4/manage/config.go
generated
vendored
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
package manage
|
||||
|
||||
import "time"
|
||||
|
||||
// Config authorization configuration parameters
|
||||
type Config struct {
|
||||
// access token expiration time, 0 means it doesn't expire
|
||||
AccessTokenExp time.Duration
|
||||
// refresh token expiration time, 0 means it doesn't expire
|
||||
RefreshTokenExp time.Duration
|
||||
// whether to generate the refreshing token
|
||||
IsGenerateRefresh bool
|
||||
}
|
||||
|
||||
// RefreshingConfig refreshing token config
|
||||
type RefreshingConfig struct {
|
||||
// access token expiration time, 0 means it doesn't expire
|
||||
AccessTokenExp time.Duration
|
||||
// refresh token expiration time, 0 means it doesn't expire
|
||||
RefreshTokenExp time.Duration
|
||||
// whether to generate the refreshing token
|
||||
IsGenerateRefresh bool
|
||||
// whether to reset the refreshing create time
|
||||
IsResetRefreshTime bool
|
||||
// whether to remove access token
|
||||
IsRemoveAccess bool
|
||||
// whether to remove refreshing token
|
||||
IsRemoveRefreshing bool
|
||||
}
|
||||
|
||||
// default configs
|
||||
var (
|
||||
DefaultCodeExp = time.Minute * 10
|
||||
DefaultAuthorizeCodeTokenCfg = &Config{AccessTokenExp: time.Hour * 2, RefreshTokenExp: time.Hour * 24 * 3, IsGenerateRefresh: true}
|
||||
DefaultImplicitTokenCfg = &Config{AccessTokenExp: time.Hour * 1}
|
||||
DefaultPasswordTokenCfg = &Config{AccessTokenExp: time.Hour * 2, RefreshTokenExp: time.Hour * 24 * 7, IsGenerateRefresh: true}
|
||||
DefaultClientTokenCfg = &Config{AccessTokenExp: time.Hour * 2}
|
||||
DefaultRefreshTokenCfg = &RefreshingConfig{IsGenerateRefresh: true, IsRemoveAccess: true, IsRemoveRefreshing: true}
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue