Skip to content

Commit a57df6d

Browse files
authored
fix: return safe aksk (#131)
1 parent b580691 commit a57df6d

File tree

4 files changed

+133
-95
lines changed

4 files changed

+133
-95
lines changed

api/jiaozifs.gen.go

+96-87
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

api/swagger.yml

+23-2
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ components:
208208
results:
209209
type: array
210210
items:
211-
$ref: "#/components/schemas/Aksk"
211+
$ref: "#/components/schemas/SafeAksk"
212212
Aksk:
213213
type: object
214214
required:
@@ -233,6 +233,27 @@ components:
233233
updated_at:
234234
type: integer
235235
format: int64
236+
SafeAksk:
237+
type: object
238+
required:
239+
- id
240+
- access_key
241+
- created_at
242+
- updated_at
243+
properties:
244+
id:
245+
type: string
246+
format: uuid
247+
access_key:
248+
type: string
249+
description:
250+
type: string
251+
created_at:
252+
type: integer
253+
format: int64
254+
updated_at:
255+
type: integer
256+
format: int64
236257
BranchCreation:
237258
type: object
238259
required:
@@ -2451,7 +2472,7 @@ paths:
24512472
content:
24522473
application/json:
24532474
schema:
2454-
$ref: "#/components/schemas/Aksk"
2475+
$ref: "#/components/schemas/SafeAksk"
24552476
401:
24562477
description: Unauthorized
24572478
404:

controller/aksk_ctl.go

+12-2
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ func (akskCtl AkSkController) GetAksk(ctx context.Context, w *api.JiaozifsRespon
9595
w.Error(err)
9696
return
9797
}
98-
w.JSON(utils.Silent(akskToDto(aksk)))
98+
w.JSON(utils.Silent(akskToSafeDto(aksk)))
9999
}
100100

101101
func (akskCtl AkSkController) DeleteAksk(ctx context.Context, w *api.JiaozifsResponse, _ *http.Request, params api.DeleteAkskParams) {
@@ -161,7 +161,7 @@ func (akskCtl AkSkController) ListAksks(ctx context.Context, w *api.JiaozifsResp
161161
w.Error(err)
162162
return
163163
}
164-
results := utils.Silent(utils.ArrMap(aksks, akskToDto))
164+
results := utils.Silent(utils.ArrMap(aksks, akskToSafeDto))
165165
pagMag := utils.PaginationFor(hasMore, results, "UpdatedAt")
166166
pagination := api.Pagination{
167167
HasMore: pagMag.HasMore,
@@ -185,3 +185,13 @@ func akskToDto(in *models.AkSk) (api.Aksk, error) {
185185
UpdatedAt: in.UpdatedAt.UnixMilli(),
186186
}, nil
187187
}
188+
189+
func akskToSafeDto(in *models.AkSk) (api.SafeAksk, error) {
190+
return api.SafeAksk{
191+
AccessKey: in.AccessKey,
192+
CreatedAt: in.CreatedAt.UnixMilli(),
193+
Description: in.Description,
194+
Id: in.ID,
195+
UpdatedAt: in.UpdatedAt.UnixMilli(),
196+
}, nil
197+
}

integrationtest/aksk_test.go

+2-4
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ func AkSkSpec(ctx context.Context, urlStr string) func(c convey.C) {
6161
akskResult, err := api.ParseGetAkskResponse(resp)
6262
convey.So(err, convey.ShouldBeNil)
6363
convey.ShouldEqual(akskResult.JSON200.AccessKey, aksk.AccessKey)
64-
convey.ShouldEqual(akskResult.JSON200.SecretKey, aksk.SecretKey)
6564
convey.ShouldEqual(akskResult.JSON200.Description, aksk.Description)
6665
})
6766

@@ -73,7 +72,6 @@ func AkSkSpec(ctx context.Context, urlStr string) func(c convey.C) {
7372
akskResult, err := api.ParseGetAkskResponse(resp)
7473
convey.So(err, convey.ShouldBeNil)
7574
convey.ShouldEqual(akskResult.JSON200.Id, aksk.Id)
76-
convey.ShouldEqual(akskResult.JSON200.SecretKey, aksk.SecretKey)
7775
convey.ShouldEqual(akskResult.JSON200.Description, aksk.Description)
7876
})
7977
c.Convey("get nothing by ak", func() {
@@ -134,7 +132,7 @@ func AkSkSpec(ctx context.Context, urlStr string) func(c convey.C) {
134132
convey.So(resp.StatusCode, convey.ShouldEqual, http.StatusUnauthorized)
135133
})
136134

137-
c.Convey("delete nothing by ak", func() {
135+
c.Convey("list aksk success", func() {
138136
resp, err := client.ListAksks(ctx, &api.ListAksksParams{})
139137
convey.So(err, convey.ShouldBeNil)
140138
convey.So(resp.StatusCode, convey.ShouldEqual, http.StatusOK)
@@ -145,7 +143,7 @@ func AkSkSpec(ctx context.Context, urlStr string) func(c convey.C) {
145143
})
146144
})
147145

148-
c.Convey("aksk usage", func(c convey.C) {
146+
c.Convey("aksk user", func(c convey.C) {
149147
c.Convey("success", func(c convey.C) {
150148
aksk, err := createAksk(ctx, client)
151149
convey.So(err, convey.ShouldBeNil)

0 commit comments

Comments
 (0)