chat_session.api
4.4 KB
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
syntax = "v1"
info(
title: "xx实例"
desc: "xx实例"
author: "author"
email: "email"
version: "v1"
)
@server(
prefix: v1
group: chat_session
jwt: JwtAuth
)
service Core {
@doc "详情"
@handler chat_sessionGet
get /chat_session/:id (ChatSessionGetRequest) returns (ChatSessionGetResponse)
@doc "保存"
@handler chat_sessionSave
post /chat_session (ChatSessionSaveRequest) returns (ChatSessionSaveResponse)
@doc "删除"
@handler chat_sessionDelete
delete /chat_session/:id (ChatSessionDeleteRequest) returns (ChatSessionDeleteResponse)
@doc "更新"
@handler chat_sessionUpdate
put /chat_session/:id (ChatSessionUpdateRequest) returns (ChatSessionUpdateResponse)
@doc "搜索"
@handler chat_sessionSearch
post /chat_session/search (ChatSessionSearchRequest) returns (ChatSessionSearchResponse)
}
type (
ChatSessionGetRequest {
Id int64 `path:"id"`
}
ChatSessionGetResponse {
ChatSession ChatSessionItem `json:"chat_session"`
}
ChatSessionSaveRequest {
ChatSession ChatSessionItem `json:"chat_session"`
}
ChatSessionSaveResponse {}
ChatSessionDeleteRequest {
Id int64 `path:"id"`
}
ChatSessionDeleteResponse {}
ChatSessionUpdateRequest {
Id int64 `path:"id"`
ChatSession ChatSessionItem `json:"chat_session"`
}
ChatSessionUpdateResponse {}
ChatSessionSearchRequest {
Page int `json:"page"`
Size int `json:"size"`
}
ChatSessionSearchResponse{
List []ChatSessionItem `json:"list"`
Total int64 `json:"total"`
}
ChatSessionItem {
}
)
// logic CRUD
// Save
//var (
// conn = l.svcCtx.DefaultDBConn()
// dm *domain.ChatSession
//)
//// 唯一判断
//dm = NewDomainChatSession(req.ChatSession)
//if err = transaction.UseTrans(l.ctx, l.svcCtx.DB, func(ctx context.Context, conn transaction.Conn) error {
// dm, err = l.svcCtx.ChatSessionRepository.Insert(l.ctx, conn, dm)
// return err
//}, true); err != nil {
// return nil, xerr.NewErrMsg("保存失败")
//}
////resp = &types.ChatSessionSaveResponse{}
//return
//func NewDomainChatSession(item types.ChatSessionItem) *domain.ChatSession {
// return &domain.ChatSession{
// }
//}
//
//func NewTypesChatSession(item *domain.ChatSession) types.ChatSessionItem {
// return types.ChatSessionItem{
// Id: item.Id,
// }
//}
// Get
//var (
// conn = l.svcCtx.DefaultDBConn()
// dm *domain.ChatSession
//)
//// 货号唯一
//if dm, err = l.svcCtx.ChatSessionRepository.FindOne(l.ctx, conn, req.Id); err != nil {
// return nil, xerr.NewErrMsgErr("不存在", err)
//}
//resp = &types.ChatSessionGetResponse{
// ChatSession: NewTypesChatSession(dm),
//}
//return
// Delete
//var (
// conn = l.svcCtx.DefaultDBConn()
// dm *domain.ChatSession
//)
//if dm, err = l.svcCtx.ChatSessionRepository.FindOne(l.ctx, conn, req.Id); err != nil {
// return nil, xerr.NewErrMsgErr("不存在", err)
//}
//if err = transaction.UseTrans(l.ctx, l.svcCtx.DB, func(ctx context.Context, conn transaction.Conn) error {
// if dm, err = l.svcCtx.ChatSessionRepository.Delete(l.ctx, conn, dm); err != nil {
// return err
// }
// return nil
//}, true); err != nil {
// return nil, xerr.NewErrMsgErr("移除失败", err)
//}
//return
// Search
//var (
// conn = l.svcCtx.DefaultDBConn()
// dms []*domain.ChatSession
// total int64
//)
//
//queryOptions := domain.NewQueryOptions().WithOffsetLimit(req.Page, req.Size).
// WithKV("", "")
//total, dms, err = l.svcCtx.ChatSessionRepository.Find(l.ctx, conn, queryOptions)
//list := make([]types.ChatSessionItem, 0)
//for i := range dms {
// list = append(list, NewTypesChatSession(dms[i]))
//}
//resp = &types.ChatSessionSearchResponse{
// List: list,
// Total: total,
//}
//return
// Update
//var (
// conn = l.svcCtx.DefaultDBConn()
// dm *domain.ChatSession
//)
//if dm, err = l.svcCtx.ChatSessionRepository.FindOne(l.ctx, conn, req.Id); err != nil {
// return nil, xerr.NewErrMsgErr("不存在", err)
//}
//// 不可编辑判断
//// 赋值
//// 更新
//if err = transaction.UseTrans(l.ctx, l.svcCtx.DB, func(ctx context.Context, conn transaction.Conn) error {
// dm, err = l.svcCtx.ChatSessionRepository.UpdateWithVersion(l.ctx, conn, dm)
// return err
//}, true); err != nil {
// return nil, xerr.NewErrMsg("更新失败")
//}
//resp = &types.ChatSessionUpdateResponse{}
//return