token

package
v0.0.0-...-c2d9d29 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 24, 2015 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Db

type Db interface {
	// アクセストークンタグによる取得。
	GetByTag(tag string) (*Element, error)

	// 保存。
	// exp: 保存期限。この期間以降は Get できなくて良い。
	Save(elem *Element, exp time.Time) error
}

アクセストークン情報の格納庫。

func NewMemoryDb

func NewMemoryDb() Db

func NewRedisDb

func NewRedisDb(pool *redis.Pool, tag string) Db

redis によるアクセストークン情報の格納庫。

type Element

type Element struct {
	// contains filtered or unexported fields
}

アクセストークン情報。

func New

func New(id, tag string, exp time.Time, idp string, scop map[string]bool) *Element

func (*Element) Expires

func (this *Element) Expires() time.Time

有効期限を返す。

func (*Element) Id

func (this *Element) Id() string

ID を返す。

func (*Element) IdProvider

func (this *Element) IdProvider() string

IdP の ID を返す。

func (*Element) MarshalJSON

func (this *Element) MarshalJSON() (data []byte, err error)
{
    "id": <ID>,
    "tag": <アクセストークンタグ>,
    "expires": <有効期限>,
    "issuer": <IdP の ID>,
    "scope": [
        <許可スコープ>,
        ...
    ]
}

func (*Element) Scope

func (this *Element) Scope() map[string]bool

許可スコープを返す。

func (*Element) Tag

func (this *Element) Tag() string

アクセストークンタグを返す。

func (*Element) UnmarshalJSON

func (this *Element) UnmarshalJSON(data []byte) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL