审查视图

pkg/infrastructure/service_gateway/allied_creation_cooperation/module_cooperation_application.go 16.4 KB
1 2 3 4
package allied_creation_cooperation

import (
	"fmt"
yangfu authored
5
	"github.com/linmadan/egglib-go/utils/json"
6 7 8 9 10 11 12 13 14
	"strconv"

	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/log"

	"gitlab.fjmaimaimai.com/allied-creation/allied-creation-gateway/pkg/infrastructure/service_gateway"
)

// CooperationApplicationUpdaet 更新共创申请
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationUpdaet(param ReqCooperationApplicationUpdate) (*DataCooperationApplicationUpdate, error) {
15
	url := gateway.baseUrL + "/cooperation-applications/" + strconv.Itoa(param.CooperationApplicationId)
16 17
	method := "PUT"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
18
	log.Logger.Debug("向业务模块请求数据:更新共创申请。", map[string]interface{}{
19 20 21 22 23 24 25 26 27 28 29 30
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
		return nil, fmt.Errorf("请求更新共创申请失败:%w", err)
	}

	byteResult, err := req.Bytes()
	if err != nil {
		return nil, fmt.Errorf("获取更新共创申请失败:%w", err)
	}
tangxuhui authored
31
	log.Logger.Debug("获取业务模块请求数据:更新共创申请。", map[string]interface{}{
32 33 34 35 36 37 38 39 40 41 42 43
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
		return nil, fmt.Errorf("解析更新共创申请:%w", err)
	}
	var data DataCooperationApplicationUpdate
	err = gateway.GetResponseData(result, &data)
	return &data, err
}
tangxuhui authored
44
// CooperationApplicationsBatchApproval 共创申请批量审核
45 46 47 48
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationsBatchApproval(param ReqCooperationApplicationBatchApproval) (*DataCooperationApplicationBatchApproval, error) {
	url := gateway.baseUrL + "/cooperation-applications/batch-approval"
	method := "POST"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
49
	log.Logger.Debug("向业务模块请求数据:共创申请批量审核。", map[string]interface{}{
50 51 52 53 54
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
tangxuhui authored
55
		return nil, fmt.Errorf("请求共创申请批量审核失败:%w", err)
56 57 58 59
	}

	byteResult, err := req.Bytes()
	if err != nil {
tangxuhui authored
60
		return nil, fmt.Errorf("获取共创申请批量审核失败:%w", err)
61
	}
tangxuhui authored
62
	log.Logger.Debug("获取业务模块请求数据:共创申请批量审核。", map[string]interface{}{
63 64 65 66 67
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
tangxuhui authored
68
		return nil, fmt.Errorf("解析共创申请批量审核:%w", err)
69 70 71 72 73 74
	}
	var data DataCooperationApplicationBatchApproval
	err = gateway.GetResponseData(result, &data)
	return &data, err
}
yangfu authored
75 76
// CooperationApplicationsBatchApproval 共创申请审核
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationsApproval(param ReqCooperationApplicationApproval) (*DataCooperationApplicationApproval, error) {
yangfu authored
77
	url := gateway.baseUrL + "/cooperation-applications/approval-cooperation-application"
yangfu authored
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
	method := "POST"
	req := gateway.CreateRequest(url, method)
	log.Logger.Debug("向业务模块请求数据:共创申请批量审核。", map[string]interface{}{
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
		return nil, fmt.Errorf("请求共创申请批量审核失败:%w", err)
	}

	byteResult, err := req.Bytes()
	if err != nil {
		return nil, fmt.Errorf("获取共创申请批量审核失败:%w", err)
	}
	log.Logger.Debug("获取业务模块请求数据:共创申请批量审核。", map[string]interface{}{
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
		return nil, fmt.Errorf("解析共创申请批量审核:%w", err)
	}
	var data DataCooperationApplicationApproval
	err = gateway.GetResponseData(result, &data)
	return &data, err
}
106 107
// CooperationApplicationCancel 取消共创申请
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationCancel(param ReqCooperationApplicationCancel) (*DataCooperationApplicationCancel, error) {
108
	url := gateway.baseUrL + "/cooperation-applications/cancel-application"
109 110
	method := "POST"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
111
	log.Logger.Debug("向业务模块请求数据:取消共创申请。", map[string]interface{}{
112 113 114 115 116 117 118 119 120 121 122 123
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
		return nil, fmt.Errorf("请求取消共创申请失败:%w", err)
	}

	byteResult, err := req.Bytes()
	if err != nil {
		return nil, fmt.Errorf("获取取消共创申请失败:%w", err)
	}
tangxuhui authored
124
	log.Logger.Debug("获取业务模块请求数据:取消共创申请。", map[string]interface{}{
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
		return nil, fmt.Errorf("解析取消共创申请:%w", err)
	}
	var data DataCooperationApplicationCancel
	err = gateway.GetResponseData(result, &data)
	return &data, err
}

// CooperationApplicationsAgree 审核-同意共创申请
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationsAgree(param ReqCooperationApplicationAgree) (*DataCooperationApplicationAgree, error) {
	url := gateway.baseUrL + "/cooperation-applications/agree-cooperation-application"
	method := "POST"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
142
	log.Logger.Debug("向业务模块请求数据:审核-同意共创申请。", map[string]interface{}{
143 144 145 146 147 148 149 150 151 152 153 154
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
		return nil, fmt.Errorf("请求审核-同意共创申请失败:%w", err)
	}

	byteResult, err := req.Bytes()
	if err != nil {
		return nil, fmt.Errorf("获取审核-同意共创申请失败:%w", err)
	}
tangxuhui authored
155
	log.Logger.Debug("获取业务模块请求数据:审核-同意共创申请。", map[string]interface{}{
156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
		return nil, fmt.Errorf("解析审核-同意共创申请:%w", err)
	}
	var data DataCooperationApplicationAgree
	err = gateway.GetResponseData(result, &data)
	return &data, err
}

// CooperationApplicationsReject审核-拒绝共创申请
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationReject(param ReqCooperationApplicationReject) (*DataCooperationApplicationReject, error) {
	url := gateway.baseUrL + "/cooperation-applications/reject-cooperation-application"
	method := "POST"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
173
	log.Logger.Debug("向业务模块请求数据:审核-拒绝共创申请。", map[string]interface{}{
174 175 176 177 178 179 180 181 182 183 184 185
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
		return nil, fmt.Errorf("请求审核-拒绝共创申请失败:%w", err)
	}

	byteResult, err := req.Bytes()
	if err != nil {
		return nil, fmt.Errorf("获取审核-拒绝共创申请失败:%w", err)
	}
tangxuhui authored
186
	log.Logger.Debug("获取业务模块请求数据:审核-拒绝共创申请。", map[string]interface{}{
187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
		return nil, fmt.Errorf("解析审核-拒绝共创申请:%w", err)
	}
	var data DataCooperationApplicationReject
	err = gateway.GetResponseData(result, &data)
	return &data, err
}

// CooperationApplicationAdd 创建共创申请
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationAdd(param ReqCooperationApplicationAdd) (*DataCooperationApplicationAdd, error) {
	url := gateway.baseUrL + "/cooperation-applications"
	method := "POST"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
204
	log.Logger.Debug("向业务模块请求数据:创建共创申请。", map[string]interface{}{
205 206 207 208 209 210 211 212 213 214 215 216
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
		return nil, fmt.Errorf("请求创建共创申请失败:%w", err)
	}

	byteResult, err := req.Bytes()
	if err != nil {
		return nil, fmt.Errorf("获取创建共创申请失败:%w", err)
	}
tangxuhui authored
217
	log.Logger.Debug("获取业务模块请求数据:创建共创申请。", map[string]interface{}{
218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
		return nil, fmt.Errorf("解析创建共创申请:%w", err)
	}
	var data DataCooperationApplicationAdd
	err = gateway.GetResponseData(result, &data)
	return &data, err
}

// Cooperation-applicationsSearch 查询共创申请
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationsSearch(param ReqCooperationApplicationSearch) (*DataCooperationApplicationSearch, error) {
	url := gateway.baseUrL + "/cooperation-applications/search"
	method := "POST"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
235
	log.Logger.Debug("向业务模块请求数据:查询共创申请。", map[string]interface{}{
236 237 238 239 240 241 242 243 244 245 246 247
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
		return nil, fmt.Errorf("请求查询共创申请失败:%w", err)
	}

	byteResult, err := req.Bytes()
	if err != nil {
		return nil, fmt.Errorf("获取查询共创申请失败:%w", err)
	}
tangxuhui authored
248
	log.Logger.Debug("获取业务模块请求数据:查询共创申请。", map[string]interface{}{
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
		return nil, fmt.Errorf("解析查询共创申请:%w", err)
	}
	var data DataCooperationApplicationSearch
	err = gateway.GetResponseData(result, &data)
	return &data, err
}

// CooperationApplicationsApply 申请共创
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationsApply(param ReqCooperationApplicationApply) (*DataCooperationApplicationApply, error) {
	url := gateway.baseUrL + "/cooperation-applications/apply-for-cooperation"
	method := "POST"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
266
	log.Logger.Debug("向业务模块请求数据:申请共创。", map[string]interface{}{
267 268 269 270 271 272 273 274 275 276 277 278
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
		return nil, fmt.Errorf("请求申请共创失败:%w", err)
	}

	byteResult, err := req.Bytes()
	if err != nil {
		return nil, fmt.Errorf("获取申请共创失败:%w", err)
	}
tangxuhui authored
279
	log.Logger.Debug("获取业务模块请求数据:申请共创。", map[string]interface{}{
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
		return nil, fmt.Errorf("解析申请共创:%w", err)
	}
	var data DataCooperationApplicationApply
	err = gateway.GetResponseData(result, &data)
	return &data, err
}

// CooperationApplicationRemove 移除共创申请
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationRemove(param ReqCooperationApplicationRemove) (*DataCooperationApplicationRemove, error) {
	url := gateway.baseUrL + "/cooperation-applications/" + strconv.Itoa(param.ApplicationId)
	method := "DELETE"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
297
	log.Logger.Debug("向业务模块请求数据:移除共创申请。", map[string]interface{}{
298 299 300 301 302 303 304 305 306 307 308 309
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
		return nil, fmt.Errorf("请求移除共创申请失败:%w", err)
	}

	byteResult, err := req.Bytes()
	if err != nil {
		return nil, fmt.Errorf("获取移除共创申请失败:%w", err)
	}
tangxuhui authored
310
	log.Logger.Debug("获取业务模块请求数据:移除共创申请。", map[string]interface{}{
311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
		return nil, fmt.Errorf("解析移除共创申请:%w", err)
	}
	var data DataCooperationApplicationRemove
	err = gateway.GetResponseData(result, &data)
	return &data, err
}

// CooperationApplicationList 返回共创申请列表
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationList(param ReqCooperationApplicationList) (*DataCooperationApplicationList, error) {
	url := gateway.baseUrL + "/cooperation-applications"
	method := "GET"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
328
	log.Logger.Debug("向业务模块请求数据:返回共创申请列表。", map[string]interface{}{
329 330 331 332 333 334 335 336 337 338 339 340
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
		return nil, fmt.Errorf("请求返回共创申请列表失败:%w", err)
	}

	byteResult, err := req.Bytes()
	if err != nil {
		return nil, fmt.Errorf("获取返回共创申请列表失败:%w", err)
	}
tangxuhui authored
341
	log.Logger.Debug("获取业务模块请求数据:返回共创申请列表。", map[string]interface{}{
342 343 344 345 346 347 348 349 350 351 352 353 354 355
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
		return nil, fmt.Errorf("解析返回共创申请列表:%w", err)
	}
	var data DataCooperationApplicationList
	err = gateway.GetResponseData(result, &data)
	return &data, err
}

// CooperationApplicationGet 返回共创申请详情
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationGet(param ReqCooperationApplicationGet) (*DataCooperationApplicationGet, error) {
356
	url := gateway.baseUrL + "/cooperation-applications/" + strconv.Itoa(param.CooperationApplicationId)
357 358
	method := "GET"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
359
	log.Logger.Debug("向业务模块请求数据:返回共创申请详情。", map[string]interface{}{
360 361 362 363 364 365 366 367 368 369 370 371
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
		return nil, fmt.Errorf("请求返回共创申请详情失败:%w", err)
	}

	byteResult, err := req.Bytes()
	if err != nil {
		return nil, fmt.Errorf("获取返回共创申请详情失败:%w", err)
	}
tangxuhui authored
372
	log.Logger.Debug("获取业务模块请求数据:返回共创申请详情。", map[string]interface{}{
373 374 375 376 377 378 379 380 381 382 383
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
		return nil, fmt.Errorf("解析返回共创申请详情:%w", err)
	}
	var data DataCooperationApplicationGet
	err = gateway.GetResponseData(result, &data)
	return &data, err
}
tangxuhui authored
384 385 386 387 388 389

// CooperationApplicationsBatchApproval 共创申请一键审核
func (gateway HttplibAlliedCreationCooperation) CooperationApplicationsOneclickApproval(param ReqCooperationApplicationOneclickApproval) (*DataCooperationApplicationOneclickApproval, error) {
	url := gateway.baseUrL + "/cooperation-applications/oneclick-approval"
	method := "POST"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
390
	log.Logger.Debug("向业务模块请求数据:共创申请一键审核。", map[string]interface{}{
tangxuhui authored
391 392 393 394 395
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
tangxuhui authored
396
		return nil, fmt.Errorf("请求共创申请一键审核失败:%w", err)
tangxuhui authored
397 398 399 400
	}

	byteResult, err := req.Bytes()
	if err != nil {
tangxuhui authored
401
		return nil, fmt.Errorf("获取共创申请一键审核失败:%w", err)
tangxuhui authored
402
	}
tangxuhui authored
403
	log.Logger.Debug("获取业务模块请求数据:共创申请一键审核。", map[string]interface{}{
tangxuhui authored
404 405 406 407 408
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
tangxuhui authored
409
		return nil, fmt.Errorf("解析共创申请一键审核:%w", err)
tangxuhui authored
410 411 412 413 414
	}
	var data DataCooperationApplicationOneclickApproval
	err = gateway.GetResponseData(result, &data)
	return &data, err
}
tangxuhui authored
415 416 417 418 419 420

// ApplyForCooperation 申请共创项目
func (gateway HttplibAlliedCreationCooperation) ApplyForCooperation(param ReqApplyForCooperation) (*DataApplyForCooperation, error) {
	url := gateway.baseUrL + "/cooperation-applications/" + strconv.Itoa(param.CooperationProjectId) + "/apply-for-cooperation"
	method := "POST"
	req := gateway.CreateRequest(url, method)
tangxuhui authored
421
	log.Logger.Debug("向业务模块请求数据:申请共创项目。", map[string]interface{}{
tangxuhui authored
422 423 424 425 426
		"api":   method + ":" + url,
		"param": param,
	})
	req, err := req.JSONBody(param)
	if err != nil {
tangxuhui authored
427
		return nil, fmt.Errorf("请求申请共创项目失败:%w", err)
tangxuhui authored
428 429 430 431
	}

	byteResult, err := req.Bytes()
	if err != nil {
tangxuhui authored
432
		return nil, fmt.Errorf("获取申请共创项目失败:%w", err)
tangxuhui authored
433
	}
tangxuhui authored
434
	log.Logger.Debug("获取业务模块请求数据:申请共创项目。", map[string]interface{}{
tangxuhui authored
435 436 437 438 439
		"result": string(byteResult),
	})
	var result service_gateway.GatewayResponse
	err = json.Unmarshal(byteResult, &result)
	if err != nil {
tangxuhui authored
440
		return nil, fmt.Errorf("解析申请共创项目:%w", err)
tangxuhui authored
441 442 443 444 445
	}
	var data DataApplyForCooperation
	err = gateway.GetResponseData(result, &data)
	return &data, err
}