-
Notifications
You must be signed in to change notification settings - Fork 292
/
bucket.go
129 lines (114 loc) · 3.14 KB
/
bucket.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
/*
* Copyright 2022 The Dragonfly Authors
*
* 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 handlers
import (
"net/http"
"github.com/gin-gonic/gin"
// nolint
_ "d7y.io/dragonfly/v2/manager/models"
// nolint
"d7y.io/dragonfly/v2/manager/types"
// nolint
_ "d7y.io/dragonfly/v2/pkg/objectstorage"
)
// @Summary Create Bucket
// @Description Create by json bucket
// @Tags Bucket
// @Accept json
// @Produce json
// @Param Bucket body types.CreateBucketRequest true "Bucket"
// @Success 200
// @Failure 400
// @Failure 404
// @Failure 500
// @Router /buckets [post]
func (h *Handlers) CreateBucket(ctx *gin.Context) {
var json types.CreateBucketRequest
if err := ctx.ShouldBindJSON(&json); err != nil {
ctx.JSON(http.StatusUnprocessableEntity, gin.H{"errors": err.Error()})
return
}
if err := h.service.CreateBucket(ctx.Request.Context(), json); err != nil {
ctx.Error(err) // nolint: errcheck
return
}
ctx.Status(http.StatusOK)
}
// @Summary Destroy Bucket
// @Description Destroy by id
// @Tags Bucket
// @Accept json
// @Produce json
// @Param id path string true "id"
// @Success 200
// @Failure 400
// @Failure 404
// @Failure 500
// @Router /buckets/{id} [delete]
func (h *Handlers) DestroyBucket(ctx *gin.Context) {
var params types.BucketParams
if err := ctx.ShouldBindUri(¶ms); err != nil {
ctx.JSON(http.StatusUnprocessableEntity, gin.H{"errors": err.Error()})
return
}
if err := h.service.DestroyBucket(ctx.Request.Context(), params.ID); err != nil {
ctx.Error(err) // nolint: errcheck
return
}
ctx.Status(http.StatusOK)
}
// @Summary Get Bucket
// @Description Get Bucket by id
// @Tags Bucket
// @Accept json
// @Produce json
// @Param id path string true "id"
// @Success 200 {object} objectstorage.BucketMetadata
// @Failure 400
// @Failure 404
// @Failure 500
// @Router /buckets/{id} [get]
func (h *Handlers) GetBucket(ctx *gin.Context) {
var params types.BucketParams
if err := ctx.ShouldBindUri(¶ms); err != nil {
ctx.JSON(http.StatusUnprocessableEntity, gin.H{"errors": err.Error()})
return
}
bucket, err := h.service.GetBucket(ctx.Request.Context(), params.ID)
if err != nil {
ctx.Error(err) // nolint: errcheck
return
}
ctx.JSON(http.StatusOK, bucket)
}
// @Summary Get Buckets
// @Description Get Buckets
// @Tags Bucket
// @Accept json
// @Produce json
// @Success 200 {object} []objectstorage.BucketMetadata
// @Failure 400
// @Failure 404
// @Failure 500
// @Router /buckets [get]
func (h *Handlers) GetBuckets(ctx *gin.Context) {
buckets, err := h.service.GetBuckets(ctx.Request.Context())
if err != nil {
ctx.Error(err) // nolint: errcheck
return
}
ctx.JSON(http.StatusOK, buckets)
}