package cn.lihu.jh.module.system.controller.admin.sms; 
 | 
  
 | 
import cn.lihu.jh.framework.common.pojo.CommonResult; 
 | 
import cn.lihu.jh.framework.common.pojo.PageResult; 
 | 
import cn.lihu.jh.framework.common.util.object.BeanUtils; 
 | 
import cn.lihu.jh.module.system.controller.admin.sms.vo.channel.SmsChannelPageReqVO; 
 | 
import cn.lihu.jh.module.system.controller.admin.sms.vo.channel.SmsChannelRespVO; 
 | 
import cn.lihu.jh.module.system.controller.admin.sms.vo.channel.SmsChannelSaveReqVO; 
 | 
import cn.lihu.jh.module.system.controller.admin.sms.vo.channel.SmsChannelSimpleRespVO; 
 | 
import cn.lihu.jh.module.system.dal.dataobject.sms.SmsChannelDO; 
 | 
import cn.lihu.jh.module.system.service.sms.SmsChannelService; 
 | 
import io.swagger.v3.oas.annotations.Operation; 
 | 
import io.swagger.v3.oas.annotations.Parameter; 
 | 
import io.swagger.v3.oas.annotations.tags.Tag; 
 | 
import org.springframework.security.access.prepost.PreAuthorize; 
 | 
import org.springframework.web.bind.annotation.*; 
 | 
  
 | 
import javax.annotation.Resource; 
 | 
import javax.validation.Valid; 
 | 
import java.util.Comparator; 
 | 
import java.util.List; 
 | 
  
 | 
import static cn.lihu.jh.framework.common.pojo.CommonResult.success; 
 | 
  
 | 
@Tag(name = "管理后台 - 短信渠道") 
 | 
@RestController 
 | 
@RequestMapping("system/sms-channel") 
 | 
public class SmsChannelController { 
 | 
  
 | 
    @Resource 
 | 
    private SmsChannelService smsChannelService; 
 | 
  
 | 
    @PostMapping("/create") 
 | 
    @Operation(summary = "创建短信渠道") 
 | 
    @PreAuthorize("@ss.hasPermission('system:sms-channel:create')") 
 | 
    public CommonResult<Long> createSmsChannel(@Valid @RequestBody SmsChannelSaveReqVO createReqVO) { 
 | 
        return success(smsChannelService.createSmsChannel(createReqVO)); 
 | 
    } 
 | 
  
 | 
    @PutMapping("/update") 
 | 
    @Operation(summary = "更新短信渠道") 
 | 
    @PreAuthorize("@ss.hasPermission('system:sms-channel:update')") 
 | 
    public CommonResult<Boolean> updateSmsChannel(@Valid @RequestBody SmsChannelSaveReqVO updateReqVO) { 
 | 
        smsChannelService.updateSmsChannel(updateReqVO); 
 | 
        return success(true); 
 | 
    } 
 | 
  
 | 
    @DeleteMapping("/delete") 
 | 
    @Operation(summary = "删除短信渠道") 
 | 
    @Parameter(name = "id", description = "编号", required = true) 
 | 
    @PreAuthorize("@ss.hasPermission('system:sms-channel:delete')") 
 | 
    public CommonResult<Boolean> deleteSmsChannel(@RequestParam("id") Long id) { 
 | 
        smsChannelService.deleteSmsChannel(id); 
 | 
        return success(true); 
 | 
    } 
 | 
  
 | 
    @GetMapping("/get") 
 | 
    @Operation(summary = "获得短信渠道") 
 | 
    @Parameter(name = "id", description = "编号", required = true, example = "1024") 
 | 
    @PreAuthorize("@ss.hasPermission('system:sms-channel:query')") 
 | 
    public CommonResult<SmsChannelRespVO> getSmsChannel(@RequestParam("id") Long id) { 
 | 
        SmsChannelDO channel = smsChannelService.getSmsChannel(id); 
 | 
        return success(BeanUtils.toBean(channel, SmsChannelRespVO.class)); 
 | 
    } 
 | 
  
 | 
    @GetMapping("/page") 
 | 
    @Operation(summary = "获得短信渠道分页") 
 | 
    @PreAuthorize("@ss.hasPermission('system:sms-channel:query')") 
 | 
    public CommonResult<PageResult<SmsChannelRespVO>> getSmsChannelPage(@Valid SmsChannelPageReqVO pageVO) { 
 | 
        PageResult<SmsChannelDO> pageResult = smsChannelService.getSmsChannelPage(pageVO); 
 | 
        return success(BeanUtils.toBean(pageResult, SmsChannelRespVO.class)); 
 | 
    } 
 | 
  
 | 
    @GetMapping({"/list-all-simple", "/simple-list"}) 
 | 
    @Operation(summary = "获得短信渠道精简列表", description = "包含被禁用的短信渠道") 
 | 
    public CommonResult<List<SmsChannelSimpleRespVO>> getSimpleSmsChannelList() { 
 | 
        List<SmsChannelDO> list = smsChannelService.getSmsChannelList(); 
 | 
        list.sort(Comparator.comparing(SmsChannelDO::getId)); 
 | 
        return success(BeanUtils.toBean(list, SmsChannelSimpleRespVO.class)); 
 | 
    } 
 | 
  
 | 
} 
 |