organization

package
v0.0.0-...-a294835 Latest Latest
Warning

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

Go to latest
Published: Dec 8, 2021 License: MIT Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	// ErrNotAuthorized is used when the the access is not permisted
	ErrNotAuthorized = errors.New(http.StatusUnauthorized, "not authorized")
	// ErrUserNotFound is used when an user is not found
	ErrUserNotFound = errors.New(http.StatusNotFound, "user not found")
	// ErrUserExists is used when an user already exists
	ErrUserExists = errors.New(http.StatusNotFound, "user already exists")
	// ErrInvalidAdminRouter is used when an invalid admin router is given
	ErrInvalidAdminRouter = errors.New(http.StatusNotFound, "invalid admin router given")
)

Functions

func NewOrganization

func NewOrganization(organization Organization, repo Repository) func(handler http.Handler) http.Handler

NewOrganization is a HTTP organization middleware

Types

type CassandraRepository

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

CassandraRepository represents a cassandra repository

func NewCassandraRepository

func NewCassandraRepository(session wrapper.Holder) (*CassandraRepository, error)

func (*CassandraRepository) Add

func (r *CassandraRepository) Add(organization *Organization) error

Add adds an user to the repository

func (*CassandraRepository) FindAll

func (r *CassandraRepository) FindAll() ([]*Organization, error)

FindAll fetches all the basic user definitions available

func (*CassandraRepository) FindByUsername

func (r *CassandraRepository) FindByUsername(username string) (*Organization, error)

FindByUsername find an user by username returns ErrUserNotFound when a user is not found.

func (*CassandraRepository) Remove

func (r *CassandraRepository) Remove(username string) error

Remove an user from the repository

type Handler

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

Handler is the api rest handlers

func NewHandler

func NewHandler(repo Repository) *Handler

NewHandler creates a new instance of Handler

func (*Handler) Create

func (c *Handler) Create() http.HandlerFunc

Create is the create handler

func (*Handler) Delete

func (c *Handler) Delete() http.HandlerFunc

Delete is the delete handler

func (*Handler) Index

func (c *Handler) Index() http.HandlerFunc

Index is the find all handler

func (*Handler) Show

func (c *Handler) Show() http.HandlerFunc

Show is the find by handler

func (*Handler) Update

func (c *Handler) Update() http.HandlerFunc

Update is the update handler

type Organization

type Organization struct {
	Username     string `json:"username"`
	Organization string `json:"organization"`
	Password     string `json:"password"`
}

Organization represents the configuration to save the user and organization pair

type Repository

type Repository interface {
	FindAll() ([]*Organization, error)
	FindByUsername(username string) (*Organization, error)
	Add(organization *Organization) error
	Remove(username string) error
}

Repository represents an user repository

Jump to

Keyboard shortcuts

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