user

package
v0.0.0-...-53ec096 Latest Latest
Warning

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

Go to latest
Published: Jul 5, 2020 License: MIT Imports: 6 Imported by: 0

Documentation

Overview

Package user contains user application services

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type RBAC

type RBAC interface {
	User(echo.Context) homeschooling.AuthUser
	EnforceUser(echo.Context, int) error
	AccountCreate(echo.Context, homeschooling.AccessRole, int, int) error
	IsLowerRole(echo.Context, homeschooling.AccessRole) error
}

RBAC represents role-based-access-control interface

type Securer

type Securer interface {
	Hash(string) string
}

Securer represents security interface

type Service

Service represents user application interface

type UDB

UDB represents user repository interface

type Update

type Update struct {
	ID        int
	FirstName string
	LastName  string
	Mobile    string
	Phone     string
	Address   string
}

Update contains user's information used for updating

type User

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

User represents user application service

func Initialize

func Initialize(db *pg.DB, rbac RBAC, sec Securer) *User

Initialize initalizes User application service with defaults

func New

func New(db *pg.DB, udb UDB, rbac RBAC, sec Securer) *User

New creates new user application service

func (User) Create

func (u User) Create(c echo.Context, req homeschooling.User) (homeschooling.User, error)

Create creates a new user account

func (User) Delete

func (u User) Delete(c echo.Context, id int) error

Delete deletes a user

func (User) List

List returns list of users

func (User) Update

func (u User) Update(c echo.Context, r Update) (homeschooling.User, error)

Update updates user's contact information

func (User) View

func (u User) View(c echo.Context, id int) (homeschooling.User, error)

View returns single user

Directories

Path Synopsis
platform

Jump to

Keyboard shortcuts

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