package com.ruoyi.other.controller;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.ruoyi.common.core.domain.R;
|
import com.ruoyi.common.core.web.controller.BaseController;
|
import com.ruoyi.common.security.service.TokenService;
|
import com.ruoyi.other.api.domain.Share;
|
import com.ruoyi.other.enums.ShareAddType;
|
import com.ruoyi.other.enums.ShareAuditStatus;
|
import com.ruoyi.other.service.ShareService;
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiImplicitParam;
|
import io.swagger.annotations.ApiImplicitParams;
|
import io.swagger.annotations.ApiOperation;
|
import org.springframework.web.bind.annotation.*;
|
|
import javax.annotation.Resource;
|
import java.util.List;
|
|
/**
|
* <p>
|
* 前端控制器
|
* </p>
|
*
|
* @author luodangjia
|
* @since 2024-11-20
|
*/
|
@Api(tags = "分享")
|
@RestController
|
@RequestMapping("/share")
|
public class ShareController extends BaseController {
|
@Resource
|
private ShareService shareService;
|
@Resource
|
private TokenService tokenService;
|
|
/**
|
* 分享列表
|
*/
|
@ApiOperation(value = "分享列表", tags = {"小程序-个人中心-门店管理-分享列表"})
|
@ApiImplicitParams({
|
@ApiImplicitParam(value = "对象id(addType=1:平台添加,addType=2:推广人添加,addType=3:门店添加)", name = "objectId", required = true, dataType = "int"),
|
})
|
@GetMapping("/list")
|
public R<List<Share>> list(@RequestParam Integer objectId){
|
return R.ok(shareService.list(new LambdaQueryWrapper<Share>()
|
.eq(Share::getObjectId, objectId)));
|
}
|
|
|
@ApiOperation(value = "分享页列表", tags = {"小程序-推广中心"})
|
@GetMapping("/recommand/list")
|
public R<List<Share>> recommandlist(){
|
Long userid = tokenService.getLoginUserApplet().getUserid();
|
return R.ok(shareService.list(new LambdaQueryWrapper<Share>().eq(Share::getAddType,2)
|
.eq(Share::getObjectId, userid)));
|
}
|
|
|
|
/**
|
* 分享添加
|
*/
|
@ApiOperation(value = "分享添加", tags = {"小程序-个人中心-门店管理-分享添加"})
|
@PostMapping
|
public R<Void> add(@RequestBody Share share){
|
Long userid = tokenService.getLoginUserApplet().getUserid();
|
if (share.getAddType()==1) {
|
share.setAuditStatus(ShareAuditStatus.WAIT.getCode());
|
}else if (share.getAddType()==2){
|
share.setAuditStatus(ShareAuditStatus.WAIT.getCode());
|
share.setObjectId(userid.toString());
|
}
|
share.setDelFlag(0);
|
share.setAppletShare(1);
|
shareService.save(share);
|
return R.ok();
|
}
|
|
/**
|
* 分享删除
|
*/
|
@ApiOperation(value = "分享删除", tags = {"小程序-个人中心-门店管理-分享删除-小程序"})
|
@DeleteMapping
|
public R<Void> delete(@RequestBody Share share){
|
shareService.removeById(share);
|
return R.ok();
|
}
|
|
/**
|
* 分享编辑
|
*/
|
@ApiOperation(value = "分享编辑", tags = {"小程序-个人中心-门店管理-分享编辑-小程序"})
|
@PutMapping
|
public R<Void> edit(@RequestBody Share share){
|
share.setAuditStatus(ShareAuditStatus.WAIT.getCode());
|
shareService.updateById(share);
|
return R.ok();
|
}
|
|
/**
|
* 分享详情
|
*/
|
@ApiOperation(value = "分享详情", tags = {"小程序-个人中心-门店管理-分享详情-小程序"})
|
@GetMapping("/detail/{id}")
|
public R<Share> detail(@PathVariable("id") Integer id){
|
return R.ok(shareService.getById(id));
|
}
|
|
|
@ApiOperation(value = "添加", tags = {"后台-分享管理"})
|
@PostMapping("/manage/add")
|
public R<Void> manage(@RequestBody Share share){
|
Long userid = tokenService.getLoginUser().getUserid();
|
share.setAddType(1);
|
share.setAuditStatus(ShareAuditStatus.SUCCESS.getCode());
|
share.setObjectId(userid.toString());
|
share.setDelFlag(0);
|
shareService.save(share);
|
return R.ok();
|
}
|
|
@ApiOperation(value = "编辑", tags = {"后台-分享管理"})
|
@PostMapping("/manage/edit")
|
public R<Void> manageedit(@RequestBody Share share){
|
|
shareService.updateById(share);
|
return R.ok();
|
}
|
|
@ApiOperation(value = "删除", tags = {"后台-分享管理"})
|
@GetMapping("/manage/delete")
|
public R<Void> managedelete(@RequestParam Integer id){
|
|
shareService.removeById(id);
|
return R.ok();
|
}
|
|
@ApiOperation(value = "列表", tags = {"后台-分享管理"})
|
@GetMapping("/manage/list")
|
public R<Page<Share>> managelist(String name,Integer addType,@RequestParam Integer PageNum,Integer pageSize){
|
Page<Share> page = shareService.lambdaQuery().like(name != null, Share::getName, name).eq(addType != null, Share::getAddType, addType).page(Page.of(pageSize, pageSize));
|
return R.ok(page);
|
}
|
|
@ApiOperation(value = "设为小程序分享", tags = {"后台-分享管理"})
|
@GetMapping("/manage/set")
|
public R<Void> set(@RequestParam Integer id){
|
//将所有分享设为不是小程序分享
|
List<Share> list = shareService.lambdaQuery().list();
|
if (!list.isEmpty()){
|
for (Share share : list) {
|
share.setAppletShare(0);
|
}
|
shareService.updateBatchById(list);
|
}
|
//设置小程序分享
|
Share byId = shareService.getById(id);
|
byId.setAppletShare(1);
|
shareService.updateById(byId);
|
return R.ok();
|
}
|
|
|
|
|
|
|
|
|
}
|