-
Notifications
You must be signed in to change notification settings - Fork 10
/
repositories_create.go
121 lines (110 loc) · 4.73 KB
/
repositories_create.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
// Copyright 2023 sigma
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package repositories
import (
"errors"
"fmt"
"net/http"
"github.com/labstack/echo/v4"
"github.com/rs/zerolog/log"
"github.com/spf13/viper"
"gorm.io/gorm"
"github.com/go-sigma/sigma/pkg/consts"
"github.com/go-sigma/sigma/pkg/dal/dao"
"github.com/go-sigma/sigma/pkg/dal/models"
"github.com/go-sigma/sigma/pkg/types"
"github.com/go-sigma/sigma/pkg/types/enums"
"github.com/go-sigma/sigma/pkg/utils"
"github.com/go-sigma/sigma/pkg/utils/ptr"
"github.com/go-sigma/sigma/pkg/xerrors"
)
// CreateRepository handles the create repository request
//
// @Summary Create repository
// @Tags Repository
// @security BasicAuth
// @Accept json
// @Produce json
// @Router /namespaces/{namespace_id}/repositories/ [post]
// @Param namespace_id path number true "Namespace id"
// @Param message body types.CreateRepositoryRequest true "Repository object"
// @Success 201 {object} types.CreateRepositoryResponse
// @Failure 400 {object} xerrors.ErrCode
// @Failure 404 {object} xerrors.ErrCode
// @Failure 500 {object} xerrors.ErrCode
func (h *handler) CreateRepository(c echo.Context) error {
ctx := log.Logger.WithContext(c.Request().Context())
iuser := c.Get(consts.ContextUser)
if iuser == nil {
log.Error().Msg("Get user from header failed")
return xerrors.NewHTTPError(c, xerrors.HTTPErrCodeUnauthorized)
}
user, ok := iuser.(*models.User)
if !ok {
log.Error().Msg("Convert user from header failed")
return xerrors.NewHTTPError(c, xerrors.HTTPErrCodeUnauthorized)
}
var req types.CreateRepositoryRequest
err := utils.BindValidate(c, &req)
if err != nil {
log.Error().Err(err).Msg("Bind and validate request body failed")
return xerrors.NewHTTPError(c, xerrors.HTTPErrCodeBadRequest, err.Error())
}
authChecked, err := h.authServiceFactory.New().Namespace(ptr.To(user), req.NamespaceID, enums.AuthManage)
if err != nil {
if errors.Is(err, gorm.ErrRecordNotFound) {
log.Error().Err(errors.New(utils.UnwrapJoinedErrors(err))).Int64("NamespaceID", req.NamespaceID).Msg("Resource not found")
return xerrors.NewHTTPError(c, xerrors.HTTPErrCodeNotFound, utils.UnwrapJoinedErrors(err))
}
log.Error().Err(errors.New(utils.UnwrapJoinedErrors(err))).Int64("NamespaceID", req.NamespaceID).Msg("Get resource failed")
return xerrors.NewHTTPError(c, xerrors.HTTPErrCodeInternalError, utils.UnwrapJoinedErrors(err))
}
if !authChecked {
log.Error().Int64("UserID", user.ID).Int64("NamespaceID", req.NamespaceID).Msg("Auth check failed")
return xerrors.NewHTTPError(c, xerrors.HTTPErrCodeUnauthorized, "No permission with this api or resource")
}
namespaceService := h.namespaceServiceFactory.New()
namespaceObj, err := namespaceService.Get(ctx, req.NamespaceID)
if err != nil {
if errors.Is(err, gorm.ErrRecordNotFound) {
log.Error().Err(err).Int64("NamespaceID", req.NamespaceID).Msg("Namespace not found")
return xerrors.NewHTTPError(c, xerrors.HTTPErrCodeNotFound, fmt.Sprintf("Namespace(%d) not found: %v", req.NamespaceID, err))
}
log.Error().Err(err).Int64("NamespaceID", req.NamespaceID).Msg("Namespace find failed")
return xerrors.NewHTTPError(c, xerrors.HTTPErrCodeInternalError, fmt.Sprintf("Namespace(%d) find failed: %v", req.NamespaceID, err))
}
repositoryObj := &models.Repository{
NamespaceID: namespaceObj.ID,
Name: req.Name,
Description: req.Description,
Overview: []byte(ptr.To(req.Overview)),
TagLimit: ptr.To(req.TagLimit),
SizeLimit: ptr.To(req.SizeLimit),
}
repositoryService := h.repositoryServiceFactory.New()
err = repositoryService.Create(ctx, repositoryObj, dao.AutoCreateNamespace{
AutoCreate: viper.GetBool("namespace.autoCreate"),
Visibility: enums.MustParseVisibility(viper.GetString("namespace.visibility")),
UserID: user.ID,
})
if err != nil {
log.Error().Err(err).Interface("repositoryObj", repositoryObj).Msg("Repository create failed")
e, ok := err.(xerrors.ErrCode) // maybe got exceed repository count quota limit error
if ok {
return xerrors.NewHTTPError(c, e)
}
return xerrors.NewHTTPError(c, xerrors.HTTPErrCodeInternalError.Detail(fmt.Sprintf("Create repository failed: %v", err)))
}
return c.JSON(http.StatusCreated, types.CreateRepositoryResponse{ID: repositoryObj.ID})
}