db

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Jun 16, 2022 License: GPL-3.0 Imports: 6 Imported by: 0

Documentation

Overview

Package db contains project related CRUD functionality.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Project

type Project struct {
	ID             string        `db:"project_id"`
	Name           string        `db:"name"`
	Wid            string        `db:"wid"`
	Cid            string        `db:"cid"`
	Uid            string        `db:"uid"`
	Active         bool          `db:"active"`
	IsPrivate      bool          `db:"is_private"`
	Billable       bool          `db:"billable"`
	AutoEstimates  bool          `db:"auto_estimates"`
	EstimatedHours time.Duration `db:"estimated_hours"`
	DateCreated    time.Time     `db:"date_created"`
	DateUpdated    time.Time     `db:"date_updated"`
	Rate           float32       `db:"rate"`
	HexColor       string        `db:"hex_color"`
}

Project represent the structure we need for moving data between the app and the database.

type Store

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

Store manages the set of APIs for user access.

func NewStore

func NewStore(log *zap.SugaredLogger, db *sqlx.DB) Store

NewStore constructs a data for api access.

func (Store) Create

func (s Store) Create(ctx context.Context, project Project) error

Create inserts a new project into the database.

func (Store) Delete

func (s Store) Delete(ctx context.Context, projectID string) error

Delete removes a project from the database.

func (Store) QueryByID

func (s Store) QueryByID(ctx context.Context, projectID string) (Project, error)

QueryByID gets the specified project from the database.

func (Store) QueryClientProjects

func (s Store) QueryClientProjects(ctx context.Context, clientID string, pageNumber, rowsPerPage int) ([]Project, error)

QueryClientProjects retrieves a list of existing projects from the database.

func (Store) QueryUnique

func (s Store) QueryUnique(ctx context.Context, name, column, id string) string

QueryUnique gets the specified project from the database.

func (Store) QueryUserProjects

func (s Store) QueryUserProjects(ctx context.Context, userID string, pageNumber, rowsPerPage int) ([]Project, error)

QueryUserProjects retrieves a list of existing projects from the database.

func (Store) QueryWorkspaceProjects

func (s Store) QueryWorkspaceProjects(ctx context.Context, workspaceID string, pageNumber, rowsPerPage int) ([]Project, error)

QueryWorkspaceProjects retrieves a list of existing project from the database.

func (Store) Tran

func (s Store) Tran(tx sqlx.ExtContext) Store

Tran return new Store with transaction in it.

func (Store) Update

func (s Store) Update(ctx context.Context, project Project) error

Update replaces a project document in the database.

func (Store) WithinTran

func (s Store) WithinTran(ctx context.Context, fn func(sqlx.ExtContext) error) error

WithinTran runs passed function and do commit/rollback at the end.

Jump to

Keyboard shortcuts

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