account

package
v0.0.0-...-72324ba 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: 7 Imported by: 7

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Authenticator

type Authenticator interface {
	// 認証する。
	Verify(params ...interface{}) error
}

認証機構。

func GenerateAuthenticator

func GenerateAuthenticator(alg string, params ...interface{}) (Authenticator, error)

type Db

type Db interface {
	// 取得。
	Get(id string) (Element, error)
	// ログイン名で取得。
	GetByName(name string) (Element, error)
}

アカウント情報の格納庫。

func NewMemoryDb

func NewMemoryDb(elems []Element) Db

func NewMongoDb

func NewMongoDb(pool *mgo.Session, db, coll string) Db

db: DB 名。 coll: コレクション名。

type Element

type Element interface {
	Id() string

	// ログイン名。
	Name() string

	// 認証情報。
	Authenticator() Authenticator

	// 属性。
	Attribute(attrName string) interface{}

	// 便宜的に属性を追加・上書きする。
	// 一時的なもので保存されることはない。
	SetAttribute(attrName string, attr interface{})
}

アカウント情報。

func New

func New(id, name string, auth Authenticator, attrs map[string]interface{}) Element

主にテスト用。

Jump to

Keyboard shortcuts

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