UPDATE: Project Module
All checks were successful
Build and Release / release (push) Successful in 1m15s

This commit is contained in:
2026-04-25 14:05:15 +07:00
parent 44a63f29c6
commit ac90236022
71 changed files with 5110 additions and 257 deletions

View File

@@ -3,20 +3,21 @@ package models
import (
"encoding/json"
"history-api/internal/dtos/response"
"history-api/pkg/constants"
"time"
)
type GeometryEntity struct {
ID string `json:"id"`
GeoType string `json:"geo_type"`
DrawGeometry json.RawMessage `json:"draw_geometry"`
Binding json.RawMessage `json:"binding"`
TimeStart int32 `json:"time_start"`
TimeEnd int32 `json:"time_end"`
Bbox *response.Bbox `json:"bbox"`
IsDeleted bool `json:"is_deleted"`
CreatedAt *time.Time `json:"created_at"`
UpdatedAt *time.Time `json:"updated_at"`
ID string `json:"id"`
GeoType constants.GeoType `json:"geo_type"`
DrawGeometry json.RawMessage `json:"draw_geometry"`
Binding json.RawMessage `json:"binding"`
TimeStart int32 `json:"time_start"`
TimeEnd int32 `json:"time_end"`
Bbox *response.Bbox `json:"bbox"`
IsDeleted bool `json:"is_deleted"`
CreatedAt *time.Time `json:"created_at"`
UpdatedAt *time.Time `json:"updated_at"`
}
func (g *GeometryEntity) ToResponse() *response.GeometryResponse {
@@ -25,7 +26,7 @@ func (g *GeometryEntity) ToResponse() *response.GeometryResponse {
}
return &response.GeometryResponse{
ID: g.ID,
GeoType: g.GeoType,
GeoType: g.GeoType.String(),
DrawGeometry: g.DrawGeometry,
Binding: g.Binding,
TimeStart: g.TimeStart,

View File

@@ -0,0 +1,74 @@
package models
import (
"encoding/json"
"history-api/internal/dtos/response"
"history-api/pkg/constants"
"time"
)
type ProjectEntity struct {
ID string `json:"id"`
Title string `json:"title"`
Description string `json:"description"`
LatestRevisionID *string `json:"latest_revision_id"`
VersionCount int32 `json:"version_count"`
ProjectStatus constants.ProjectStatusType `json:"project_status"`
LockedBy *string `json:"locked_by"`
IsDeleted bool `json:"is_deleted"`
UserID string `json:"user_id"`
CreatedAt *time.Time `json:"created_at"`
UpdatedAt *time.Time `json:"updated_at"`
User *UserSimpleEntity `json:"user"`
CommitIds []string `json:"commit_ids"`
SubmissionIds []string `json:"submission_ids"`
}
func (p *ProjectEntity) ParseUser(data []byte) error {
if len(data) == 0 || string(data) == "null" {
p.User = nil
return nil
}
return json.Unmarshal(data, &p.User)
}
func (p *ProjectEntity) ToResponse() *response.ProjectResponse {
if p == nil {
return nil
}
var userResponse *response.UserSimpleResponse
if p.User != nil {
userResponse = p.User.ToResponse()
}
return &response.ProjectResponse{
ID: p.ID,
Title: p.Title,
Description: p.Description,
LatestRevisionID: p.LatestRevisionID,
VersionCount: p.VersionCount,
ProjectStatus: p.ProjectStatus.String(),
LockedBy: p.LockedBy,
IsDeleted: p.IsDeleted,
UserID: p.UserID,
CreatedAt: p.CreatedAt,
UpdatedAt: p.UpdatedAt,
User: userResponse,
CommitIds: p.CommitIds,
SubmissionIds: p.SubmissionIds,
}
}
func ProjectsEntityToResponse(projects []*ProjectEntity) []*response.ProjectResponse {
out := make([]*response.ProjectResponse, 0)
if projects == nil {
return out
}
for _, project := range projects {
if project == nil {
continue
}
out = append(out, project.ToResponse())
}
return out
}

View File

@@ -74,8 +74,8 @@ func RolesEntityToResponse(rs []*RoleEntity) []*response.RoleResponse {
return out
}
func RolesEntityToRoleConstant(rs []*RoleSimple) []constants.Role {
out := make([]constants.Role, 0)
func RolesEntityToRoleConstant(rs []*RoleSimple) []constants.RoleType {
out := make([]constants.RoleType, 0)
if rs == nil {
return out
}