Documentation ¶
Index ¶
- type Account
- type Db
- type Element
- func (this *Element) Account() *Account
- func (this *Element) Accounts() []*Account
- func (this *Element) Date() time.Time
- func (this *Element) Expires() time.Time
- func (this *Element) FromTa() string
- func (this *Element) Id() string
- func (this *Element) MarshalJSON() (data []byte, err error)
- func (this *Element) Scope() map[string]bool
- func (this *Element) SetToken(tok string)
- func (this *Element) SourceToken() string
- func (this *Element) ToTa() string
- func (this *Element) Token() string
- func (this *Element) TokenExpires() time.Time
- func (this *Element) UnmarshalJSON(data []byte) error
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Account ¶
type Account struct {
// contains filtered or unexported fields
}
仲介コードに付属させるアカウント情報。
func NewAccount ¶
func (*Account) MarshalJSON ¶
{ "id": <ID>, "tag": <アカウントタグ> }
func (*Account) UnmarshalJSON ¶
type Db ¶
type Db interface { // 取得。 Get(id string) (*Element, error) // 保存。 // exp: 保存期限。この期間以降は Get や Replace できなくて良い。 Save(elem *Element, exp time.Time) error // 上書き。 // savedDate が保存されている要素の更新日時と同じでなければ失敗する。 Replace(elem *Element, savedDate time.Time) (ok bool, err error) }
仲介コード情報の格納庫。
func NewMemoryDb ¶
func NewMemoryDb() Db
type Element ¶
type Element struct {
// contains filtered or unexported fields
}
仲介コード情報。
func (*Element) MarshalJSON ¶
{ "id": <ID>, "expires": <有効期限>, "user": <主体>, "source_token": <元になったアクセストークン>, "scope": [ <発行されるアクセストークンの許可スコープ>, ... ], "token_expires": <発行されるアクセストークンの有効期限>, "users": [ <主体でないアカウント>, ... ], "client_from": <連携元 TA の ID>, "client_to": <連携先 TA の ID>, "token": <アクセストークン>, "date": <更新日時>, }
func (*Element) UnmarshalJSON ¶
Click to show internal directories.
Click to hide internal directories.