Documentation ¶
Index ¶
- Variables
- type ProjectManager
- func (m *ProjectManager) CreateProject(ctx context.Context, requestPayload request.CreateProjectRequest) (*entity.Project, error)
- func (m *ProjectManager) DeleteProjectByID(ctx context.Context, id uint) error
- func (m *ProjectManager) GetProjectByID(ctx context.Context, id uint) (*entity.Project, error)
- func (m *ProjectManager) ListProjects(ctx context.Context) ([]*entity.Project, error)
- func (m *ProjectManager) UpdateProjectByID(ctx context.Context, id uint, requestPayload request.UpdateProjectRequest) (*entity.Project, error)
Constants ¶
This section is empty.
Variables ¶
View Source
var ( ErrGettingNonExistingProject = errors.New("the project does not exist") ErrUpdatingNonExistingProject = errors.New("the project to update does not exist") ErrSourceNotFound = errors.New("the specified source does not exist") ErrOrgNotFound = errors.New("the specified org does not exist") ErrInvalidProjectID = errors.New("the project ID should be a uuid") )
Functions ¶
This section is empty.
Types ¶
type ProjectManager ¶
type ProjectManager struct {
// contains filtered or unexported fields
}
func NewProjectManager ¶
func NewProjectManager(projectRepo repository.ProjectRepository, organizationRepo repository.OrganizationRepository, sourceRepo repository.SourceRepository) *ProjectManager
func (*ProjectManager) CreateProject ¶
func (m *ProjectManager) CreateProject(ctx context.Context, requestPayload request.CreateProjectRequest) (*entity.Project, error)
func (*ProjectManager) DeleteProjectByID ¶
func (m *ProjectManager) DeleteProjectByID(ctx context.Context, id uint) error
func (*ProjectManager) GetProjectByID ¶
func (*ProjectManager) ListProjects ¶
func (*ProjectManager) UpdateProjectByID ¶
func (m *ProjectManager) UpdateProjectByID(ctx context.Context, id uint, requestPayload request.UpdateProjectRequest) (*entity.Project, error)
Click to show internal directories.
Click to hide internal directories.