-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject_controller.go
149 lines (125 loc) · 4.39 KB
/
project_controller.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
package controllers
import (
"errors"
"github.com/d4r1us-drk/clido/models"
"github.com/d4r1us-drk/clido/repository"
"github.com/d4r1us-drk/clido/utils"
)
// Error constants for project operations.
var (
ErrNoProjectName = errors.New("project name is required")
ErrParentProjectNotFound = errors.New("parent project not found")
ErrNoParentProjectProvided = errors.New("no parent project provided")
)
// ProjectController manages the project-related business logic.
type ProjectController struct {
repo *repository.Repository
}
// NewProjectController creates and returns a new instance of ProjectController.
func NewProjectController(repo *repository.Repository) *ProjectController {
return &ProjectController{repo: repo}
}
// CreateProject handles the creation of a new project.
func (pc *ProjectController) CreateProject(
name, description, parentProjectIdentifier string,
) error {
// Validate project name
if name == "" {
return ErrNoProjectName
}
// Retrieve the parent project ID (if any)
parentProjectID, err := pc.getParentProjectID(parentProjectIdentifier)
if err != nil && !errors.Is(err, ErrNoParentProjectProvided) {
return err
}
// Create a new project
project := models.Project{
Name: name,
Description: description,
ParentProjectID: parentProjectID,
}
// Store the project in the repository
return pc.repo.CreateProject(&project)
}
// EditProject handles updating an existing project by its ID.
func (pc *ProjectController) EditProject(
id int,
name, description, parentProjectIdentifier string,
) error {
// Retrieve the existing project
project, getProjectErr := pc.repo.GetProjectByID(id)
if getProjectErr != nil {
return getProjectErr
}
// Apply updates
if name != "" {
project.Name = name
}
if description != "" {
project.Description = description
}
// Retrieve and apply the parent project ID (if any)
parentProjectID, err := pc.getParentProjectID(parentProjectIdentifier)
if err != nil && !errors.Is(err, ErrNoParentProjectProvided) {
return err
}
project.ParentProjectID = parentProjectID
// Update the project in the repository
return pc.repo.UpdateProject(project)
}
// ListProjects returns all projects stored in the repository.
func (pc *ProjectController) ListProjects() ([]*models.Project, error) {
return pc.repo.GetAllProjects()
}
// GetProjectByID returns a project by its ID.
func (pc *ProjectController) GetProjectByID(id int) (*models.Project, error) {
return pc.repo.GetProjectByID(id)
}
// GetProjectByName returns a project by its name.
func (pc *ProjectController) GetProjectByName(name string) (*models.Project, error) {
return pc.repo.GetProjectByName(name)
}
// ListSubprojects returns subprojects for a specific parent project.
func (pc *ProjectController) ListSubprojects(parentID int) ([]*models.Project, error) {
return pc.repo.GetSubprojects(parentID)
}
// RemoveProject handles the recursive removal of a project and all its subprojects.
func (pc *ProjectController) RemoveProject(id int) error {
// Retrieve all subprojects of the project
subprojects, getSubprojectsErr := pc.repo.GetSubprojects(id)
if getSubprojectsErr != nil {
return getSubprojectsErr
}
// Recursively remove subprojects
for _, subproject := range subprojects {
if removeErr := pc.RemoveProject(subproject.ID); removeErr != nil {
return removeErr
}
}
// Remove the parent project
return pc.repo.DeleteProject(id)
}
// getParentProjectID checks and retrieves the parent project ID based on the identifier (name or ID).
func (pc *ProjectController) getParentProjectID(parentProjectIdentifier string) (*int, error) {
if parentProjectIdentifier == "" {
// No parent project identifier provided, so no parent project ID is needed
return nil, ErrNoParentProjectProvided
}
// Try to parse the parent project identifier as an integer ID
parentID, err := utils.ParseIntOrError(parentProjectIdentifier)
if err == nil {
// Successfully parsed as ID, now check if the project exists by ID
project, getProjectErr := pc.repo.GetProjectByID(parentID)
if getProjectErr != nil || project == nil {
return nil, ErrParentProjectNotFound
}
return &parentID, nil
}
// If parsing failed, treat it as a project name and search by name
project, lookupErr := pc.repo.GetProjectByName(parentProjectIdentifier)
if lookupErr != nil || project == nil {
return nil, ErrParentProjectNotFound
}
// Return the found project ID
return &project.ID, nil
}