CommonController.java 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
  3. *
  4. * Redistribution and use in source and binary forms, with or without
  5. * modification, are permitted provided that the following conditions are met:
  6. *
  7. * Redistributions of source code must retain the above copyright notice,
  8. * this list of conditions and the following disclaimer.
  9. * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * Neither the name of the dreamlu.net developer nor the names of its
  13. * contributors may be used to endorse or promote products derived from
  14. * this software without specific prior written permission.
  15. * Author: Chill 庄骞 (smallchill@163.com)
  16. */
  17. package org.springblade.modules.api.controller;
  18. import cn.hutool.core.util.ObjectUtil;
  19. import com.github.xiaoymin.knife4j.annotations.ApiOperationSupport;
  20. import io.swagger.annotations.Api;
  21. import io.swagger.annotations.ApiOperation;
  22. import io.swagger.annotations.ApiParam;
  23. import lombok.AllArgsConstructor;
  24. import lombok.SneakyThrows;
  25. import org.springblade.common.cache.ParamCache;
  26. import org.springblade.common.constant.CacheBizConstant;
  27. import org.springblade.common.constant.CommonConstant;
  28. import org.springblade.core.boot.ctrl.BladeController;
  29. import org.springblade.core.mp.support.Condition;
  30. import org.springblade.core.redis.cache.BladeRedis;
  31. import org.springblade.core.sms.SmsTemplate;
  32. import org.springblade.core.sms.model.SmsCode;
  33. import org.springblade.core.sms.model.SmsData;
  34. import org.springblade.core.tool.api.R;
  35. import org.springblade.core.tool.utils.StringUtil;
  36. import org.springblade.modules.platform.entity.Ads;
  37. import org.springblade.modules.platform.entity.Payments;
  38. import org.springblade.modules.platform.service.IAdsService;
  39. import org.springblade.modules.platform.service.IPaymentsService;
  40. import org.springblade.modules.resource.builder.sms.SmsBuilder;
  41. import org.springblade.modules.resource.utils.SmsUtil;
  42. import org.springblade.modules.system.entity.Area;
  43. import org.springblade.modules.system.service.IAreaService;
  44. import org.springframework.web.bind.annotation.*;
  45. import java.time.Duration;
  46. import java.util.List;
  47. import java.util.Map;
  48. import java.util.Objects;
  49. import static org.springblade.modules.resource.utils.SmsUtil.*;
  50. /**
  51. * 控制器
  52. *
  53. * @author xuwei
  54. * @since 2022-02-12
  55. */
  56. @RestController
  57. @AllArgsConstructor
  58. @RequestMapping(CommonConstant.API_URL)
  59. @Api(value = "公共接口", tags = "07.公共接口")
  60. public class CommonController extends BladeController {
  61. private final IPaymentsService paymentsService;
  62. private final IAdsService adsService;
  63. private final SmsBuilder smsBuilder;
  64. private final BladeRedis bladeRedis;
  65. private final IAreaService areaService;
  66. @GetMapping("/payments-list")
  67. @ApiOperationSupport(order = 1)
  68. @ApiOperation(value = "查询支付方式")
  69. public R<List<Payments>> paymentsList() {
  70. List<Payments> list = bladeRedis.get(CacheBizConstant.CACHE_DEFAULT_PAYMENTS);
  71. if (list == null || list.size() == 0){
  72. Payments payments = new Payments();
  73. payments.setIsEnabled(2);
  74. payments.setPayFor(4);//APP端
  75. list = paymentsService.list(Condition.getQueryWrapper(payments).lambda().orderByAsc(Payments::getSort));
  76. bladeRedis.setEx(CacheBizConstant.CACHE_DEFAULT_PAYMENTS,list, CacheBizConstant.CACHE_TIME);
  77. }
  78. return R.data(list);
  79. }
  80. @GetMapping("/ads-list")
  81. @ApiOperationSupport(order = 2)
  82. @ApiOperation(value = "查询轮播数据", notes = "传入类型和条数,类型为字典项ads_type,1应用首页,2商城首页,3推荐品牌,4抢购专区,5新品推荐,6人气推荐")
  83. public R<List<Ads>> adsList(@ApiParam(value = "类型", required = true) @RequestParam Integer type,
  84. @ApiParam(value = "条数,默认条数由系统配置", required = false) @RequestParam(required = false) Integer limit) {
  85. if(ObjectUtil.isNull(limit)){
  86. limit = Integer.valueOf(ParamCache.getValue(CommonConstant.DEFAULT_ADS_LIMIT));
  87. }
  88. return R.data(adsService.selectAdsList(type, limit));
  89. }
  90. @SneakyThrows
  91. @PostMapping("/common/send-validate")
  92. @ApiOperation(value = "短信发送", notes = "传入手机号")
  93. @ApiOperationSupport(order = 3)
  94. public R sendValidate(@RequestParam String phone) {
  95. Map<String, String> params = SmsUtil.getValidateParams();
  96. SmsCode smsCode = smsBuilder.noAuthTemplate().sendValidate(new SmsData(params).setKey(PARAM_KEY), phone);
  97. return smsCode.isSuccess() ? R.data(smsCode, SEND_SUCCESS) : R.fail("发送频率过高,请稍后再试");
  98. }
  99. @ApiOperation(value = "行政区域列表查询", notes = "行政区域列表查询")
  100. @GetMapping("/common/area")
  101. public List<Area> listDistinct(@ApiParam(value = "行政区域父id,省的pid为0", required = true) @RequestParam("pid") String pid) {
  102. return areaService.lambdaQuery().eq(Area::getPid, pid).list();
  103. }
  104. }