Documentation ¶
Index ¶
- Constants
- func NewAppStorage(db *DB) (model.AppStorage, error)
- func NewInviteStorage(db *DB) (model.InviteStorage, error)
- func NewTokenBlacklist(db *DB) (model.TokenBlacklist, error)
- func NewTokenStorage(db *DB) (model.TokenStorage, error)
- func NewUserStorage(db *DB) (model.UserStorage, error)
- func NewVerificationCodeStorage(db *DB) (model.VerificationCodeStorage, error)
- type AppStorage
- func (as *AppStorage) ActiveAppByID(appID string) (model.AppData, error)
- func (as *AppStorage) AppByID(id string) (model.AppData, error)
- func (as *AppStorage) Close()
- func (as *AppStorage) CreateApp(app model.AppData) (model.AppData, error)
- func (as *AppStorage) DeleteApp(id string) error
- func (as *AppStorage) DisableApp(app model.AppData) error
- func (as *AppStorage) FetchApps(filterString string, skip, limit int) ([]model.AppData, int, error)
- func (as *AppStorage) ImportJSON(data []byte) error
- func (as *AppStorage) TestDatabaseConnection() error
- func (as *AppStorage) UpdateApp(appID string, newApp model.AppData) (model.AppData, error)
- type DB
- type Error
- type InviteStorage
- func (is *InviteStorage) ArchiveAllByEmail(email string) error
- func (is *InviteStorage) ArchiveByID(id string) error
- func (is *InviteStorage) Close()
- func (is *InviteStorage) GetAll(withArchived bool, skip, limit int) ([]model.Invite, int, error)
- func (is *InviteStorage) GetByEmail(email string) (model.Invite, error)
- func (is *InviteStorage) GetByID(id string) (model.Invite, error)
- func (is *InviteStorage) Save(email, inviteToken, role, appID, createdBy string, expiresAt time.Time) error
- type Token
- type TokenBlacklist
- type TokenStorage
- type UserStorage
- func (us *UserStorage) AddNewUser(user model.User, password string) (model.User, error)
- func (us *UserStorage) AddUserByNameAndPassword(username, password, role string, isAnonymous bool) (model.User, error)
- func (us *UserStorage) AddUserByPhone(phone, role string) (model.User, error)
- func (us *UserStorage) AddUserWithFederatedID(provider model.FederatedIdentityProvider, federatedID, role string) (model.User, error)
- func (us *UserStorage) AttachDeviceToken(id, token string) error
- func (us *UserStorage) Close()
- func (us *UserStorage) DeleteUser(id string) error
- func (us *UserStorage) DetachDeviceToken(token string) error
- func (us *UserStorage) FetchUsers(filterString string, skip, limit int) ([]model.User, int, error)
- func (us *UserStorage) IDByName(name string) (string, error)
- func (us *UserStorage) ImportJSON(data []byte) error
- func (us *UserStorage) RequestScopes(userID string, scopes []string) ([]string, error)
- func (us *UserStorage) ResetPassword(id, password string) error
- func (us *UserStorage) ResetUsername(id, username string) error
- func (us *UserStorage) Scopes() []string
- func (us *UserStorage) UpdateLoginMetadata(userID string)
- func (us *UserStorage) UpdateUser(userID string, newUser model.User) (model.User, error)
- func (us *UserStorage) UserByEmail(email string) (model.User, error)
- func (us *UserStorage) UserByFederatedID(provider model.FederatedIdentityProvider, id string) (model.User, error)
- func (us *UserStorage) UserByID(id string) (model.User, error)
- func (us *UserStorage) UserByNamePassword(name, password string) (model.User, error)
- func (us *UserStorage) UserByPhone(phone string) (model.User, error)
- func (us *UserStorage) UserExists(name string) bool
- type VerificationCodeStorage
Constants ¶
const ( // ErrorInactiveUser means user is inactive ErrorInactiveUser = Error("User is inactive") // ErrorEmptyAppID means appID params is empty ErrorEmptyAppID = Error("Empty appID param") // ErrorInactiveApp means app is inactive ErrorInactiveApp = Error("App is inactive") )
Variables ¶
This section is empty.
Functions ¶
func NewAppStorage ¶
func NewAppStorage(db *DB) (model.AppStorage, error)
NewAppStorage creates new MongoDB AppStorage implementation.
func NewInviteStorage ¶ added in v1.2.4
func NewInviteStorage(db *DB) (model.InviteStorage, error)
NewInviteStorage creates a MongoDB invite storage.
func NewTokenBlacklist ¶
func NewTokenBlacklist(db *DB) (model.TokenBlacklist, error)
NewTokenBlacklist creates new MongoDB-backed token blacklist.
func NewTokenStorage ¶
func NewTokenStorage(db *DB) (model.TokenStorage, error)
NewTokenStorage creates a MongoDB token storage.
func NewUserStorage ¶
func NewUserStorage(db *DB) (model.UserStorage, error)
NewUserStorage creates and inits MongoDB user storage.
func NewVerificationCodeStorage ¶
func NewVerificationCodeStorage(db *DB) (model.VerificationCodeStorage, error)
NewVerificationCodeStorage creates and inits MongoDB verification code storage.
Types ¶
type AppStorage ¶
type AppStorage struct {
// contains filtered or unexported fields
}
AppStorage is a fully functional app storage for MongoDB.
func (*AppStorage) ActiveAppByID ¶
func (as *AppStorage) ActiveAppByID(appID string) (model.AppData, error)
ActiveAppByID returns app by id only if it's active.
func (*AppStorage) AppByID ¶
func (as *AppStorage) AppByID(id string) (model.AppData, error)
AppByID returns app from MongoDB by ID.
func (*AppStorage) DeleteApp ¶
func (as *AppStorage) DeleteApp(id string) error
DeleteApp deletes app by id.
func (*AppStorage) DisableApp ¶
func (as *AppStorage) DisableApp(app model.AppData) error
DisableApp disables app in MongoDB storage.
func (*AppStorage) FetchApps ¶
FetchApps fetches apps which name satisfies provided filterString. Supports pagination.
func (*AppStorage) ImportJSON ¶
func (as *AppStorage) ImportJSON(data []byte) error
ImportJSON imports data from JSON.
func (*AppStorage) TestDatabaseConnection ¶
func (as *AppStorage) TestDatabaseConnection() error
TestDatabaseConnection checks if we can access applications collection.
type DB ¶
DB is database connection structure.
func (*DB) EnsureCollectionIndices ¶ added in v0.0.8
func (db *DB) EnsureCollectionIndices(collectionName string, newIndices []mongo.IndexModel) error
EnsureCollectionIndices creates indices on a collection.
type InviteStorage ¶ added in v1.2.4
type InviteStorage struct {
// contains filtered or unexported fields
}
InviteStorage is a MongoDB invite storage.
func (*InviteStorage) ArchiveAllByEmail ¶ added in v1.2.4
func (is *InviteStorage) ArchiveAllByEmail(email string) error
ArchiveAllByEmail invalidates all invites by email.
func (*InviteStorage) ArchiveByID ¶ added in v1.2.4
func (is *InviteStorage) ArchiveByID(id string) error
ArchiveByID invalidates specific invite by its ID.
func (*InviteStorage) GetAll ¶ added in v1.2.4
GetAll returns all active invites by default. To get an invalid invites need to set withInvalid argument to true.
func (*InviteStorage) GetByEmail ¶ added in v1.2.4
func (is *InviteStorage) GetByEmail(email string) (model.Invite, error)
GetByEmail returns valid and not expired invite by email.
type Token ¶
type Token struct { ID string `bson:"_id,omitempty"` // TODO: Make use of jti claim. Token string `bson:"token,omitempty"` }
Token is struct to store tokens in database.
type TokenBlacklist ¶
type TokenBlacklist struct {
// contains filtered or unexported fields
}
TokenBlacklist is a MongoDB-backed token blacklist.
func (*TokenBlacklist) Add ¶
func (tb *TokenBlacklist) Add(token string) error
Add adds token to the blacklist.
func (*TokenBlacklist) IsBlacklisted ¶
func (tb *TokenBlacklist) IsBlacklisted(token string) bool
IsBlacklisted returns true if the token is present in the blacklist.
type TokenStorage ¶
type TokenStorage struct {
// contains filtered or unexported fields
}
TokenStorage is a MongoDB token storage.
func (*TokenStorage) DeleteToken ¶
func (ts *TokenStorage) DeleteToken(token string) error
DeleteToken removes token from the storage.
func (*TokenStorage) HasToken ¶
func (ts *TokenStorage) HasToken(token string) bool
HasToken returns true if the token is present in the storage.
func (*TokenStorage) SaveToken ¶
func (ts *TokenStorage) SaveToken(token string) error
SaveToken saves token in the database.
type UserStorage ¶
type UserStorage struct {
// contains filtered or unexported fields
}
UserStorage implements user storage interface.
func (*UserStorage) AddNewUser ¶
AddNewUser adds new user to the database.
func (*UserStorage) AddUserByNameAndPassword ¶
func (us *UserStorage) AddUserByNameAndPassword(username, password, role string, isAnonymous bool) (model.User, error)
AddUserByNameAndPassword registers new user.
func (*UserStorage) AddUserByPhone ¶
func (us *UserStorage) AddUserByPhone(phone, role string) (model.User, error)
AddUserByPhone registers new user with phone number.
func (*UserStorage) AddUserWithFederatedID ¶
func (us *UserStorage) AddUserWithFederatedID(provider model.FederatedIdentityProvider, federatedID, role string) (model.User, error)
AddUserWithFederatedID adds new user with social ID.
func (*UserStorage) AttachDeviceToken ¶
func (us *UserStorage) AttachDeviceToken(id, token string) error
AttachDeviceToken do nothing here TODO: implement device storage
func (*UserStorage) DeleteUser ¶
func (us *UserStorage) DeleteUser(id string) error
DeleteUser deletes user by id.
func (*UserStorage) DetachDeviceToken ¶
func (us *UserStorage) DetachDeviceToken(token string) error
DetachDeviceToken do nothing here yet TODO: implement
func (*UserStorage) FetchUsers ¶
FetchUsers fetches users which name satisfies provided filterString. Supports pagination.
func (*UserStorage) IDByName ¶
func (us *UserStorage) IDByName(name string) (string, error)
IDByName returns userID by name.
func (*UserStorage) ImportJSON ¶
func (us *UserStorage) ImportJSON(data []byte) error
ImportJSON imports data from JSON.
func (*UserStorage) RequestScopes ¶
func (us *UserStorage) RequestScopes(userID string, scopes []string) ([]string, error)
RequestScopes for now returns requested scope TODO: implement scope logic
func (*UserStorage) ResetPassword ¶
func (us *UserStorage) ResetPassword(id, password string) error
ResetPassword sets new user's password.
func (*UserStorage) ResetUsername ¶
func (us *UserStorage) ResetUsername(id, username string) error
ResetUsername sets new user's username.
func (*UserStorage) Scopes ¶
func (us *UserStorage) Scopes() []string
Scopes returns supported scopes, could be static data of database.
func (*UserStorage) UpdateLoginMetadata ¶
func (us *UserStorage) UpdateLoginMetadata(userID string)
UpdateLoginMetadata updates user's login metadata.
func (*UserStorage) UpdateUser ¶
UpdateUser updates user in MongoDB storage.
func (*UserStorage) UserByEmail ¶
func (us *UserStorage) UserByEmail(email string) (model.User, error)
UserByEmail returns user by their email.
func (*UserStorage) UserByFederatedID ¶
func (us *UserStorage) UserByFederatedID(provider model.FederatedIdentityProvider, id string) (model.User, error)
UserByFederatedID returns user by federated ID.
func (*UserStorage) UserByID ¶
func (us *UserStorage) UserByID(id string) (model.User, error)
UserByID returns user by its ID.
func (*UserStorage) UserByNamePassword ¶
func (us *UserStorage) UserByNamePassword(name, password string) (model.User, error)
UserByNamePassword returns user by name and password.
func (*UserStorage) UserByPhone ¶
func (us *UserStorage) UserByPhone(phone string) (model.User, error)
UserByPhone fetches user by phone number.
func (*UserStorage) UserExists ¶
func (us *UserStorage) UserExists(name string) bool
UserExists checks if user with provided name exists.
type VerificationCodeStorage ¶
type VerificationCodeStorage struct {
// contains filtered or unexported fields
}
VerificationCodeStorage implements verification code storage interface.
func (*VerificationCodeStorage) Close ¶
func (vcs *VerificationCodeStorage) Close()
Close is a no-op here.
func (*VerificationCodeStorage) CreateVerificationCode ¶
func (vcs *VerificationCodeStorage) CreateVerificationCode(phone, code string) error
CreateVerificationCode inserts new verification code to the database.
func (*VerificationCodeStorage) IsVerificationCodeFound ¶
func (vcs *VerificationCodeStorage) IsVerificationCodeFound(phone, code string) (bool, error)
IsVerificationCodeFound checks whether verification code can be found.