-
Notifications
You must be signed in to change notification settings - Fork 1
/
map_set.go
282 lines (273 loc) · 10.8 KB
/
map_set.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
package OrgMap
import (
"errors"
CoreSQL "github.com/fotomxq/weeekj_core/v5/core/sql"
CoreSQLConfig "github.com/fotomxq/weeekj_core/v5/core/sql/config"
Router2SystemConfig "github.com/fotomxq/weeekj_core/v5/router2/system_config"
UserSystemTip "github.com/fotomxq/weeekj_core/v5/user/system_tip"
"github.com/lib/pq"
)
// ArgsCreateMap 创建商户的位置信息参数
type ArgsCreateMap struct {
//组织ID
OrgID int64 `db:"org_id" json:"orgID" check:"id" empty:"true"`
//用户ID
UserID int64 `db:"user_id" json:"userID" check:"id" empty:"true"`
//上级ID
// 用于叠加展示
ParentID int64 `db:"parent_id" json:"parentID" check:"id" empty:"true"`
//展示小图标
CoverFileID int64 `db:"cover_file_id" json:"coverFileID" check:"id" empty:"true"`
// 轮播图片组
CoverFileIDs pq.Int64Array `db:"cover_file_ids" json:"coverFileIDs" check:"ids" empty:"true"`
//展示信息
Name string `db:"name" json:"name" check:"name"`
//展示介绍信息
Des string `db:"des" json:"des" check:"des" min:"0" max:"1000" empty:"true"`
//所属国家 国家代码
// eg: china => 86
Country int `db:"country" json:"country" check:"country" empty:"true"`
//省份 编码
// eg: 710000
Province int `db:"province" json:"province" check:"province" empty:"true"`
//所属城市
City int `db:"city" json:"city" check:"city" empty:"true"`
//街道详细信息
Address string `db:"address" json:"address" check:"address" empty:"true"`
//地图制式
// 0 WGS-84 / 1 GCJ-02 / 2 BD-09
MapType int `db:"map_type" json:"mapType" check:"mapType"`
//坐标位置
Longitude float64 `db:"longitude" json:"longitude"`
Latitude float64 `db:"latitude" json:"latitude"`
//广告可用次数
AdCountLimit int64 `db:"ad_count_limit" json:"adCountLimit"`
//查看最短时间长度
ViewTimeLimit int64 `db:"view_time_limit" json:"viewTimeLimit"`
//扩展参数
Params CoreSQLConfig.FieldsConfigsType `db:"params" json:"params"`
}
// CreateMap 创建商户的位置信息
func CreateMap(args *ArgsCreateMap) (data FieldsMap, err error) {
//写入新的数据
if args.ViewTimeLimit < 0 {
args.ViewTimeLimit = 0
}
var mapID int64
mapID, err = CoreSQL.CreateOneAndID(Router2SystemConfig.MainDB.DB, "INSERT INTO org_map (org_id, user_id, parent_id, cover_file_id, cover_file_ids, name, des, country, province, city, address, map_type, longitude, latitude, ad_count, ad_count_limit, view_time_limit, params) VALUES (:org_id,:user_id,:parent_id,:cover_file_id,:cover_file_ids,:name,:des,:country,:province,:city,:address,:map_type,:longitude,:latitude,0,:ad_count_limit,:view_time_limit,:params)", args)
if err != nil {
return
}
//获取数据
data = getMapByID(mapID)
if data.ID < 1 {
err = errors.New("no data")
return
}
//反馈
return
}
// ArgsUpdateMap 修改组织地图
type ArgsUpdateMap struct {
//ID
ID int64 `db:"id" json:"id" check:"id"`
//组织ID
OrgID int64 `db:"org_id" json:"orgID" check:"id" empty:"true"`
//用户ID
UserID int64 `db:"user_id" json:"userID" check:"id" empty:"true"`
//上级ID
// 用于叠加展示
ParentID int64 `db:"parent_id" json:"parentID" check:"id" empty:"true"`
//展示小图标
CoverFileID int64 `db:"cover_file_id" json:"coverFileID" check:"id" empty:"true"`
// 轮播图片组
CoverFileIDs pq.Int64Array `db:"cover_file_ids" json:"coverFileIDs" check:"ids" empty:"true"`
//展示信息
Name string `db:"name" json:"name" check:"name"`
//展示介绍信息
Des string `db:"des" json:"des" check:"des" min:"0" max:"1000" empty:"true"`
//所属国家 国家代码
// eg: china => 86
Country int `db:"country" json:"country" check:"country" empty:"true"`
//省份 编码
// eg: 710000
Province int `db:"province" json:"province" check:"province" empty:"true"`
//所属城市
City int `db:"city" json:"city" check:"city" empty:"true"`
//街道详细信息
Address string `db:"address" json:"address" check:"address" empty:"true"`
//地图制式
// 0 WGS-84 / 1 GCJ-02 / 2 BD-09
MapType int `db:"map_type" json:"mapType" check:"mapType"`
//坐标位置
Longitude float64 `db:"longitude" json:"longitude"`
Latitude float64 `db:"latitude" json:"latitude"`
//广告可用次数
AdCountLimit int64 `db:"ad_count_limit" json:"adCountLimit"`
//查看最短时间长度
ViewTimeLimit int64 `db:"view_time_limit" json:"viewTimeLimit"`
//扩展参数
Params CoreSQLConfig.FieldsConfigsType `db:"params" json:"params"`
}
// UpdateMap 修改组织地图参数
func UpdateMap(args *ArgsUpdateMap) (err error) {
//获取数据
mapData := getMapByID(args.ID)
//判断所有权
if (mapData.OrgID != args.OrgID && args.OrgID > 0) && (mapData.UserID != args.UserID && args.UserID > 0) {
err = errors.New("map not this user or org")
return
}
//更新数据
if args.ViewTimeLimit < 0 {
args.ViewTimeLimit = mapData.ViewTimeLimit
}
//更新数据
_, err = CoreSQL.UpdateOneSoft(Router2SystemConfig.MainDB.DB, "UPDATE org_map SET update_at = NOW(), audit_at = to_timestamp(0), parent_id = :parent_id, cover_file_id = :cover_file_id, cover_file_ids = :cover_file_ids, name = :name, des = :des, country = :country, province = :province, city = :city, address = :address, map_type = :map_type, longitude = :longitude, latitude = :latitude, ad_count_limit = :ad_count_limit, view_time_limit = :view_time_limit, params = :params WHERE id = :id", map[string]interface{}{
"id": args.ID,
"parent_id": args.ParentID,
"cover_file_id": args.CoverFileID,
"cover_file_ids": args.CoverFileIDs,
"name": args.Name,
"des": args.Des,
"country": args.Country,
"province": args.Province,
"city": args.City,
"address": args.Address,
"map_type": args.MapType,
"longitude": args.Longitude,
"latitude": args.Latitude,
"ad_count_limit": args.AdCountLimit,
"view_time_limit": args.ViewTimeLimit,
"params": args.Params,
})
if err != nil {
return
}
//删除缓冲
deleteMapCache(args.ID)
//反馈
return
}
// ArgsSetMap 设置商户的位置信息参数
type ArgsSetMap struct {
//组织ID
OrgID int64 `db:"org_id" json:"orgID" check:"id" empty:"true"`
//用户ID
UserID int64 `db:"user_id" json:"userID" check:"id" empty:"true"`
//上级ID
// 用于叠加展示
ParentID int64 `db:"parent_id" json:"parentID" check:"id" empty:"true"`
//展示小图标
CoverFileID int64 `db:"cover_file_id" json:"coverFileID" check:"id" empty:"true"`
// 轮播图片组
CoverFileIDs pq.Int64Array `db:"cover_file_ids" json:"coverFileIDs" check:"ids" empty:"true"`
//展示信息
Name string `db:"name" json:"name" check:"name"`
//展示介绍信息
Des string `db:"des" json:"des" check:"des" min:"0" max:"1000" empty:"true"`
//所属国家 国家代码
// eg: china => 86
Country int `db:"country" json:"country" check:"country" empty:"true"`
//省份 编码
// eg: 710000
Province int `db:"province" json:"province" check:"province" empty:"true"`
//所属城市
City int `db:"city" json:"city" check:"city" empty:"true"`
//街道详细信息
Address string `db:"address" json:"address" check:"address" empty:"true"`
//地图制式
// 0 WGS-84 / 1 GCJ-02 / 2 BD-09
MapType int `db:"map_type" json:"mapType" check:"mapType"`
//坐标位置
Longitude float64 `db:"longitude" json:"longitude"`
Latitude float64 `db:"latitude" json:"latitude"`
//广告可用次数
AdCountLimit int64 `db:"ad_count_limit" json:"adCountLimit"`
//查看最短时间长度
ViewTimeLimit int64 `db:"view_time_limit" json:"viewTimeLimit"`
//扩展参数
Params CoreSQLConfig.FieldsConfigsType `db:"params" json:"params"`
}
// SetMap 设置商户的位置信息
func SetMap(args *ArgsSetMap) (data FieldsMap, err error) {
//查询该组织的位置信息
var id int64
if args.OrgID > 0 {
_ = Router2SystemConfig.MainDB.Get(&id, "SELECT id FROM org_map WHERE org_id = $1 AND delete_at < to_timestamp(1000000)", args.OrgID)
} else {
if args.UserID > 0 {
_ = Router2SystemConfig.MainDB.Get(&id, "SELECT id FROM org_map WHERE user_id = $1 AND delete_at < to_timestamp(1000000)", args.UserID)
} else {
_ = Router2SystemConfig.MainDB.Get(&id, "SELECT id FROM org_map WHERE org_id = 0 AND map_type = $1 AND longitude = $2 AND latitude = $3 AND delete_at < to_timestamp(1000000)", args.MapType, args.Longitude, args.Latitude)
}
}
if id > 0 {
//重新获取数据
data = getMapByID(data.ID)
//更新数据
if args.ViewTimeLimit < 0 {
args.ViewTimeLimit = data.ViewTimeLimit
}
_, err = CoreSQL.UpdateOneSoft(Router2SystemConfig.MainDB.DB, "UPDATE org_map SET update_at = NOW(), audit_at = to_timestamp(0), parent_id = :parent_id, cover_file_id = :cover_file_id, cover_file_ids = :cover_file_ids, name = :name, des = :des, country = :country, province = :province, city = :city, address = :address, map_type = :map_type, longitude = :longitude, latitude = :latitude, ad_count_limit = :ad_count_limit, view_time_limit = :view_time_limit, params = :params WHERE id = :id AND (:org_id < 1 OR org_id = :org_id) AND (:user_id < 1 OR user_id = :user_id)", map[string]interface{}{
"id": id,
"org_id": args.OrgID,
"user_id": args.UserID,
"parent_id": args.ParentID,
"cover_file_id": args.CoverFileID,
"cover_file_ids": args.CoverFileIDs,
"name": args.Name,
"des": args.Des,
"country": args.Country,
"province": args.Province,
"city": args.City,
"address": args.Address,
"map_type": args.MapType,
"longitude": args.Longitude,
"latitude": args.Latitude,
"ad_count_limit": args.AdCountLimit,
"view_time_limit": args.ViewTimeLimit,
"params": args.Params,
})
if err != nil {
return
}
deleteMapCache(id)
} else {
//写入新的数据
if args.ViewTimeLimit < 0 {
args.ViewTimeLimit = 0
}
id, err = CoreSQL.CreateOneAndID(Router2SystemConfig.MainDB.DB, "INSERT INTO org_map (org_id, user_id, parent_id, cover_file_id, cover_file_ids, name, des, country, province, city, address, map_type, longitude, latitude, ad_count, ad_count_limit, view_time_limit, params) VALUES (:org_id,:user_id,:parent_id,:cover_file_id,:name,:des,:country,:province,:city,:address,:map_type,:longitude,:latitude,0,:ad_count_limit,:view_time_limit,:params)", args)
}
if err != nil {
return
}
data = getMapByID(id)
return
}
// ArgsAuditMap 审核地址信息参数
type ArgsAuditMap struct {
//ID
ID int64 `db:"id" json:"id" check:"id"`
}
// AuditMap 审核地址信息
func AuditMap(args *ArgsAuditMap) (err error) {
//修改审核状态
_, err = CoreSQL.UpdateOneSoft(Router2SystemConfig.MainDB.DB, "UPDATE org_map SET audit_at = NOW() WHERE id = :id", args)
if err != nil {
return
}
//删除缓冲
deleteMapCache(args.ID)
//推送nats
pushNatsMapAudit(args.ID)
//获取数据
data := getMapByID(args.ID)
//审核通知
if data.UserID > 0 {
UserSystemTip.SendSuccess(data.UserID, "商户地图", data.ID, data.Name)
}
//反馈
return
}