This repository has been archived by the owner on Mar 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
product.go
312 lines (291 loc) · 8.28 KB
/
product.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
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
package controllers
import (
"fmt"
"funding/enums"
"funding/forms"
"funding/models"
"funding/objects"
"funding/resultModels"
"funding/utils"
"github.com/astaxie/beego"
"github.com/jinzhu/gorm"
)
// 产品相关
type ProductController struct {
BaseController
}
// @Title 获取产品类型列表
// @Description 获取产品类型列表
// @Success 200 {object} []models.ProductType
// @Failure 400
// @router /typeList [get]
func (c *ProductController) GetProductTypeList() {
results, err := models.GetProductTypeList()
if err != nil {
c.ResponseErrJson(err)
return
}
c.ResponseSuccessJson(results)
}
// @Title Get Home Page Info
// @Description 获取首页信息
// @Success 200
// @Failure 400
// @router /home [get]
func (c *ProductController) GetHome() {
var home []resultModels.HomeResult
var result resultModels.Result
// 轮播图 前端 type == 0 5个
//TODO 最新的 5 个产品作为轮播图
bannerProduct, err := models.GetProductsByPageAndType(1, 5, 0)
if err != nil {
c.ResponseErrJson(err)
return
} else {
homeBanner := resultModels.HomeResult{
Name: "轮播图",
LimitNum: 5,
Type: 0,
}
for _, p := range bannerProduct {
var productContent resultModels.ProductContent
utils.CopyStructJ(&p, &productContent)
productContent.ID = p.ID
homeBanner.ProductContents = append(homeBanner.ProductContents, productContent)
}
home = append(home, homeBanner)
}
// 活动板块 前端 type == 1
//TODO 这个感觉不需要。。
// 热门商品 前端 type == 2 2个?
//TODO 众筹中的产品里面筹集金额最高的产品
// XXX精选 前端 type == 3 7个
//TODO 几大类别的热门
productTypes, err := models.GetProductTypeList()
if err != nil {
c.ResponseErrJson(resultError.NewFallFundingErr("获取产品类型失败"))
return
}
for _, productType := range productTypes {
//var techType = 1
products, err := models.GetProductsByPageAndType(1, 7, productType.ID)
if err != nil && err != gorm.ErrRecordNotFound {
c.ResponseErrJson(err)
return
}
// 这个类别没有记录就跳到下一个
if err == gorm.ErrRecordNotFound {
continue
}
// 小于 6 个 就跳过
if len(products) < 6 {
continue
}
typeResult := resultModels.HomeResult{
Name: productType.Name + "精选",
LimitNum: 7,
Type: 3,
}
for _, p := range products {
var productContent resultModels.ProductContent
utils.CopyStructJ(&p, &productContent)
productContent.ID = p.ID
typeResult.ProductContents = append(typeResult.ProductContents, productContent)
}
home = append(home, typeResult)
}
result = resultModels.SuccessResult(home)
c.ResponseJson(result)
}
// @Title Get All Products
// @Description 获取全部产品信息
// @Success 200
// @Failure 400
// @router /all [get]
func (c *ProductController) GetAll() {
dbResult, err := models.GetAllProduct()
var result resultModels.Result
if err != nil {
result = resultModels.ErrorResult(resultModels.FALL, err.Error())
} else {
result = resultModels.SuccessResult(dbResult)
}
fmt.Println(&result)
c.ResponseJson(result)
}
// @Title 据页码和其他条件获取产品信息
// @Description 据页码和其他条件获取产品信息
// @Param page query int true "页码"
// @Param page_size query int true "每页数量"
// @Param name query string false "产品名称"
// @Param type query int false "产品类型"
// @Param funding_status query int false "众筹状态"
// @Param sort query int false "排序方式"
// @Param price_gt query float64 false "价格大于"
// @Param price_lt query float64 false "价格小于"
// @Success 200
// @Failure 400
// @router /productList [get]
func (c *ProductController) GetProductByPage() {
// TODO 据页码和其他条件获取产品信息
form := forms.ProductListForm{}
// 获取所有 query 数据组成的 map
values := c.Ctx.Request.URL.Query()
// 解析到 Struct 中
err := beego.ParseForm(values, &form)
if err != nil {
c.ResponseErrJson(err)
return
}
pl, err := models.GetProductList(form, enums.Verify_Success)
if err != nil {
c.ResponseErrJson(err)
return
}
c.ResponseSuccessJson(pl)
}
// @Title Get Product With Detail
// @Description 根据 id 获取带有套餐信息的指定产品信息
// @Param id query int true "商品ID"
// @Success 200 {object} models.Product
// @Failure 400
// @router /detail [get]
func (c *ProductController) GetProductWithPkg() {
id, err := c.GetUint64("id")
if err != nil {
c.ResponseErrJson(err)
return
}
dbResult, err := models.GetProductWithPkg(id)
if err != nil {
c.ResponseErrJson(err)
return
}
// 如果不是验证成功的项目,普通用户不能查询
if dbResult.VerifyStatus != enums.Verify_Success {
user, err := c.CheckAndGetUser()
if err != nil {
c.ResponseErrJson(err)
return
}
if user.RoleId == enums.Role_Buyer {
c.ResponseErrJson(&resultError.UserRoleVerifyError)
return
}
}
c.ResponseSuccessJson(dbResult)
}
// @Title 获取结算所需的套餐信息 (给“立即支持”这个功能用)
// @Description 获取结算所需的套餐信息 (给“立即支持”这个功能用)
// @Param product_package_id query int true "套餐ID"
// @Success 200 {object} resultModels.CheckoutPkgInfo
// @Failure 400
// @router /checkoutPkgInfo [get]
func (c *ProductController) GetCheckoutPkgInfo() {
// 从请求参数中获取 product_package_id 的值
pkgId, err := c.GetUint64("product_package_id")
if err != nil {
c.ResponseErrJson(&resultError.FormParamErr)
return
}
// 到数据库中查询
result, err := models.GetCheckoutPkgInfoFromPkgId(pkgId)
if err != nil {
c.ResponseErrJson(err)
return
}
c.ResponseSuccessJson(result)
}
// @Title 根据商品 ID 获取商家信息
// @Description 根据商品 ID 获取商家信息
// @Param product_id query int true "套餐ID"
// @Success 200
// @Failure 400
// @router /getSellerByProductId [get]
func (c *ProductController) GetSellerByProductId() {
productId, err := c.GetUint64("product_id")
if err != nil {
c.ResponseErrJson(&resultError.FormParamErr)
return
}
// 查询对应订单
product, err := models.FindProductById(productId)
if err != nil {
c.ResponseErrJson(&resultError.FormParamErr)
return
}
// 查询对应卖家
user, err := models.FindUserById(product.UserId)
if err != nil {
c.ResponseErrJson(&resultError.FormParamErr)
return
}
fmt.Println(user)
//TODO 查询对应的License信息
}
// @Title 获取统计信息
// @Description 获取统计信息
// @Success 200
// @Failure 400
// @router /getProductCountInfo [get]
func (c *ProductController) GetProductCountInfo() {
// 累计支持金额
// 最高筹集金额
// 累计支持人数
// 单项最高支持人数
countInfo, err := models.GetAllProductCountInfo()
if err != nil {
c.ResponseErrJson(&resultError.FormParamErr)
return
}
c.ResponseSuccessJson(countInfo)
}
// @Title 根据商品 ID 获取商家信息
// @Description 根据商品 ID 获取商家信息
// @Param product_id query int true "套餐ID"
// @Param page query int true "页码"
// @Param page_size query int true "每页数量"
// @Success 200
// @Failure 400
// @router /getCommentInfoByProductId [get]
func (c *ProductController) GetCommentInfoByProductId() {
form := forms.CommentListByProductForm{}
// 获取所有 query 数据组成的 map
values := c.Ctx.Request.URL.Query()
// 解析到 Struct 中
err := beego.ParseForm(values, &form)
if err != nil {
c.ResponseErrJson(err)
return
}
results, err := models.GetResultCommentInfosByProductId(&form)
if err != nil {
c.ResponseErrJson(&resultError.FormParamErr)
return
}
c.ResponseSuccessJson(results)
}
// @Title 根据产品类型 和数量 获取随机数量的指定类型产品
// @Description 根据产品类型 和数量 获取随机数量的指定类型产品
// @Param product_type query int true "产品类型"
// @Param num query int true "查询数量"
// @Success 200
// @Failure 400
// @router /getProductsRand [get]
func (c *ProductController) GetProductsRandByTypeAndNum() {
productType, err := c.GetInt("product_type")
if err != nil {
productType = 0
}
num, err := c.GetInt("num")
if err != nil {
num = 4
}
// 根据类型 和数量随机获取 一组产品信息
result, err := models.GetProductsRandByTypeAndNum(productType, num)
if err != nil {
c.ResponseErrJson(err)
return
}
c.ResponseSuccessJson(result)
}