VideoContentCatController.java 13.9 KB
Newer Older
liqin's avatar
liqin committed
1
package cn.chnmuseum.party.web.controller;
liqin's avatar
liqin committed
2

liqin's avatar
liqin committed
3 4 5 6 7 8 9 10
import cn.chnmuseum.party.common.log.MethodLog;
import cn.chnmuseum.party.common.log.OperModule;
import cn.chnmuseum.party.common.log.OperType;
import cn.chnmuseum.party.common.validator.groups.Add;
import cn.chnmuseum.party.common.vo.GenericPageParam;
import cn.chnmuseum.party.model.*;
import cn.chnmuseum.party.service.*;
import cn.chnmuseum.party.web.controller.base.BaseController;
liqin's avatar
liqin committed
11
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
liqin's avatar
liqin committed
12
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
liqin's avatar
liqin committed
13 14 15 16 17 18 19 20
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiImplicitParam;
import io.swagger.annotations.ApiImplicitParams;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
wzp's avatar
wzp committed
21
import org.apache.shiro.authz.annotation.RequiresAuthentication;
liqin's avatar
liqin committed
22 23 24 25
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.*;

import javax.annotation.Resource;
liqin's avatar
liqin committed
26
import java.util.Collections;
liqin's avatar
liqin committed
27
import java.util.LinkedHashSet;
liqin's avatar
liqin committed
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;

/**
 * <pre>
 * 视频内容分类 前端控制器
 * </pre>
 *
 * @author Danny Lee
 * @since 2021-03-17
 */
@Slf4j
@RestController
@RequestMapping("/videoContentCat")
@Api(tags = {"视频内容分类接口"})
public class VideoContentCatController extends BaseController {

liqin's avatar
liqin committed
46 47
    @Resource
    private CopyrightOwnerVideoContentCatService copyrightOwnerVideoContentCatService;
liqin's avatar
liqin committed
48 49 50 51 52 53
    @Resource
    private VideoContentCatService videoContentCatService;
    @Resource
    private VideoContentService videoContentService;
    @Resource
    private CopyrightOwnerService copyrightOwnerService;
liqin's avatar
liqin committed
54 55
    @Resource
    private ExhibitionBoardService exhibitionBoardService;
liqin's avatar
liqin committed
56 57 58 59 60 61 62 63 64
    @Resource
    private LearningContentBoardCatService learningContentBoardCatService;
    @Resource
    private LearningContentBoardService learningContentBoardService;
    @Resource
    private LearningContentCopyrightOwnerService learningContentCopyrightOwnerService;
    @Resource
    private LearningContentService learningContentService;
    @Resource
liqin's avatar
liqin committed
65
    private AssetService assetService;
liqin's avatar
liqin committed
66

liqin's avatar
liqin committed
67
    @PostMapping(value = "/save")
wzp's avatar
wzp committed
68
    @RequiresAuthentication  //@RequiresPermissions("video:content:cat:save")
liqin's avatar
liqin committed
69
    @ApiOperation(value = "添加视频内容分类", notes = "添加视频内容分类")
wzp's avatar
wzp committed
70
    @MethodLog(operModule = OperModule.VIDEOCLASSIFY, operType = OperType.ADD)
liqin's avatar
liqin committed
71 72 73 74 75 76 77 78 79 80 81 82 83 84
    public Map<String, Object> saveVideoContentCat(@Validated(value = {Add.class}) VideoContentCat videoContentCat) {
        // 保存业务节点信息
        boolean result = videoContentCatService.save(videoContentCat);
        // 返回操作结果
        if (result) {
            return getSuccessResult();
        } else {
            // 保存失败
            return getFailResult();
        }
    }

    @PutMapping(value = "/update")
    @ApiOperation(value = "修改视频内容分类信息", notes = "修改视频内容分类信息")
wzp's avatar
wzp committed
85
    @MethodLog(operModule = OperModule.VIDEOCLASSIFY, operType = OperType.UPDATE)
liqin's avatar
liqin committed
86 87 88 89 90 91 92 93
    public Map<String, Object> updateVideoContentCat(@Validated VideoContentCat videoContentCat) {
        boolean flag = videoContentCatService.updateById(videoContentCat);
        if (flag) {
            return getSuccessResult();
        }
        return getFailResult();
    }

liqin's avatar
liqin committed
94 95 96
    @ApiImplicitParams(value = {
            @ApiImplicitParam(name = "copyrightOwnerId", value = "视频内容版权方ID", paramType = "query", dataType = "String")
    })
liqin's avatar
liqin committed
97
    @GetMapping("/getList")
wzp's avatar
wzp committed
98
    @RequiresAuthentication  //@RequiresPermissions("video:content:cat:list")
liqin's avatar
liqin committed
99
    @ApiOperation(value = "获取视频内容分类全部列表(无分页)", notes = "获取视频内容分类全部列表(无分页)")
wzp's avatar
wzp committed
100
    @MethodLog(operModule = OperModule.VIDEOCLASSIFY, operType = OperType.SELECT)
liqin's avatar
liqin committed
101
    public Map<String, Object> getVideoContentCatList(@RequestParam(value = "copyrightOwnerId", required = false) List<String> copyrightOwnerIdList) {
liqin's avatar
liqin committed
102
        final LambdaQueryWrapper<VideoContentCat> videoContentCatLambdaQueryWrapper = Wrappers.<VideoContentCat>lambdaQuery().orderByDesc(VideoContentCat::getCreateTime);
liqin's avatar
liqin committed
103 104 105 106 107 108
        if (copyrightOwnerIdList != null && !copyrightOwnerIdList.isEmpty()) {
            final LambdaQueryWrapper<CopyrightOwnerVideoContentCat> queryWrapper = Wrappers.<CopyrightOwnerVideoContentCat>lambdaQuery().in(CopyrightOwnerVideoContentCat::getCopyrightOwnerId, copyrightOwnerIdList);
            final List<CopyrightOwnerVideoContentCat> copyrightOwnerVideoContentCatList = this.copyrightOwnerVideoContentCatService.list(queryWrapper);
            if (!copyrightOwnerVideoContentCatList.isEmpty()) {
                final List<String> collect = copyrightOwnerVideoContentCatList.stream().map(CopyrightOwnerVideoContentCat::getVideoContentCatId).distinct().collect(Collectors.toList());
                videoContentCatLambdaQueryWrapper.in(VideoContentCat::getId, collect);
liqin's avatar
liqin committed
109 110
            } else {
                return getResult(Collections.emptyList());
liqin's avatar
liqin committed
111
            }
liqin's avatar
liqin committed
112 113
        }
        List<VideoContentCat> videoContentCatList = videoContentCatService.list(videoContentCatLambdaQueryWrapper);
liqin's avatar
liqin committed
114 115 116 117 118 119 120 121 122 123 124
        return getResult(videoContentCatList);
    }

    @ApiImplicitParams(value = {
            @ApiImplicitParam(name = "_index", value = "分页起始偏移量", paramType = "query", dataType = "Integer"),
            @ApiImplicitParam(name = "_size", value = "返回条数", paramType = "query", dataType = "Integer"),
            @ApiImplicitParam(name = "nameOrCode", value = "名称或编码", paramType = "query", dataType = "String"),
            @ApiImplicitParam(name = "startDate", value = "创建时间-开始", paramType = "query", dataType = "String"),
            @ApiImplicitParam(name = "endDate", value = "创建时间-结束", paramType = "query", dataType = "String")
    })
    @PostMapping("/getPageList")
wzp's avatar
wzp committed
125
    @RequiresAuthentication  //@RequiresPermissions("video:content:cat:page")
liqin's avatar
liqin committed
126
    @ApiOperation(value = "获取视频内容分类分页列表", notes = "获取视频内容分类分页列表")
wzp's avatar
wzp committed
127
    @MethodLog(operModule = OperModule.VIDEOCLASSIFY, operType = OperType.SELECT)
liqin's avatar
liqin committed
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148
    public Map<String, Object> getVideoContentCatPageList(GenericPageParam genericPageParam) {
        LambdaQueryWrapper<VideoContentCat> queryWrapper = new LambdaQueryWrapper<>();
        // 对名称或编码模糊查询
        if (StringUtils.isNotBlank(genericPageParam.getNameOrCode())) {
            queryWrapper.like(VideoContentCat::getName, genericPageParam.getNameOrCode());
        }
        // 根据创建时间区间检索
        if (genericPageParam.getStartDate() != null && genericPageParam.getEndDate() != null) {
            queryWrapper.ge(VideoContentCat::getCreateTime, genericPageParam.getStartDate().atTime(0, 0, 0))
                    .le(VideoContentCat::getCreateTime, genericPageParam.getEndDate().atTime(23, 59, 59));
        }
        // 设置排序规则
        queryWrapper.orderByDesc(VideoContentCat::getCreateTime);
        // 设置查询内容
        queryWrapper.select(
                VideoContentCat::getId,
                VideoContentCat::getName,
                VideoContentCat::getCreateTime,
                VideoContentCat::getUpdateTime);
        Page<VideoContentCat> page = this.videoContentCatService.page(getPage(), queryWrapper);
        for (VideoContentCat videoContentCat : page.getRecords()) {
liqin's avatar
liqin committed
149 150 151 152 153
            LambdaQueryWrapper<VideoContent> lambdaQueryWrapper = Wrappers.<VideoContent>lambdaQuery().eq(VideoContent::getVideoContentCatId, videoContentCat.getId()).select(VideoContent::getVideoContentCopyrightOwnerId);
            final List<String> videoContentCopyrightOwnerIdList = this.videoContentService.listObjs(lambdaQueryWrapper, Object::toString);
            if (!videoContentCopyrightOwnerIdList.isEmpty()) {
                List<CopyrightOwner> copyrightOwnerList = this.copyrightOwnerService.listByIds(new LinkedHashSet<>(videoContentCopyrightOwnerIdList));
                videoContentCat.setCopyrightOwnerName(copyrightOwnerList.stream().map(CopyrightOwner::getName).collect(Collectors.joining("、")));
liqin's avatar
liqin committed
154 155 156 157 158 159 160 161 162 163
            }
        }
        return getResult(page);
    }

    @ApiOperation(value = "获取视频内容分类详情", notes = "获取视频内容分类详情")
    @ApiImplicitParams({
            @ApiImplicitParam(name = "id", value = "标识ID", dataType = "String", paramType = "path")
    })
    @GetMapping("/get/{id}")
wzp's avatar
wzp committed
164
    @RequiresAuthentication  //@RequiresPermissions("video:content:cat:get:id")
wzp's avatar
wzp committed
165
    @MethodLog(operModule = OperModule.VIDEOCLASSIFY, operType = OperType.SELECT)
liqin's avatar
liqin committed
166 167 168 169 170
    public Map<String, Object> getById(@PathVariable("id") String id) {
        VideoContentCat videoContentCat = videoContentCatService.getById(id);
        return getResult(videoContentCat);
    }

liqin's avatar
liqin committed
171 172 173 174 175 176
    @DeleteMapping("/delete/{id}")
    @RequiresAuthentication  //@RequiresPermissions("exhibition:board:cat:delete")
    @ApiOperation(value = "根据ID删除视频内容分类", notes = "根据ID删除视频内容分类")
    @ApiImplicitParams(value = {
            @ApiImplicitParam(name = "id", value = "标识ID", paramType = "path", dataType = "String")
    })
wzp's avatar
wzp committed
177
    @MethodLog(operModule = OperModule.VIDEOCLASSIFY, operType = OperType.DELETE)
liqin's avatar
liqin committed
178 179
    public Map<String, Object> deleteVideoContentCat(@PathVariable("id") String id) {
        this.videoContentCatService.removeById(id);
liqin's avatar
liqin committed
180

liqin's avatar
liqin committed
181 182 183
        final LambdaUpdateWrapper<CopyrightOwnerVideoContentCat> updateWrapper1 = Wrappers.<CopyrightOwnerVideoContentCat>lambdaUpdate().eq(CopyrightOwnerVideoContentCat::getVideoContentCatId, id);
        this.copyrightOwnerVideoContentCatService.remove(updateWrapper1);

liqin's avatar
liqin committed
184 185 186
        final LambdaQueryWrapper<VideoContent> lambdaQueryWrapper = Wrappers.<VideoContent>lambdaQuery().eq(VideoContent::getVideoContentCatId, id).select(VideoContent::getId);
        final List<String> videoContentIdList = this.videoContentService.listObjs(lambdaQueryWrapper, Object::toString);
        if (videoContentIdList != null && !videoContentIdList.isEmpty()) {
liqin's avatar
liqin committed
187 188
            this.videoContentService.removeByIds(videoContentIdList);
            this.assetService.remove(Wrappers.<Asset>lambdaUpdate().in(Asset::getRefItemId, videoContentIdList));
liqin's avatar
liqin committed
189 190

            final LambdaQueryWrapper<ExhibitionBoard> queryWrapper = Wrappers.<ExhibitionBoard>lambdaQuery().in(ExhibitionBoard::getVideoContentId, videoContentIdList).select(ExhibitionBoard::getId);
liqin's avatar
liqin committed
191 192 193 194
            final List<String> exhibitionBoardIdList = this.exhibitionBoardService.listObjs(queryWrapper, Object::toString);
            if (exhibitionBoardIdList != null && !exhibitionBoardIdList.isEmpty()) {
                this.exhibitionBoardService.removeByIds(exhibitionBoardIdList);
                this.assetService.remove(Wrappers.<Asset>lambdaUpdate().in(Asset::getRefItemId, exhibitionBoardIdList));
liqin's avatar
liqin committed
195

liqin's avatar
liqin committed
196
                final LambdaQueryWrapper<LearningContentBoard> learningContentBoardLambdaQueryWrapper = Wrappers.<LearningContentBoard>lambdaQuery().in(LearningContentBoard::getExhibitionBoardCatId, exhibitionBoardIdList);
liqin's avatar
liqin committed
197 198 199 200 201 202 203 204 205 206 207 208
                final List<LearningContentBoard> learningContentBoardList = this.learningContentBoardService.list(learningContentBoardLambdaQueryWrapper);
                if (learningContentBoardList != null && !learningContentBoardList.isEmpty()) {
                    final Map<String, List<String>> collect = learningContentBoardList.stream().collect(Collectors.groupingBy(LearningContentBoard::getLearningContentId, Collectors.mapping(LearningContentBoard::getExhibitionBoardId, Collectors.toList())));
                    collect.forEach((k, v) -> {
                        if (v.size() == 1) {
                            this.learningContentService.removeById(k);
                            this.learningContentBoardService.remove(Wrappers.<LearningContentBoard>lambdaUpdate().eq(LearningContentBoard::getLearningContentId, k));
                            this.learningContentBoardCatService.remove(Wrappers.<LearningContentBoardCat>lambdaUpdate().eq(LearningContentBoardCat::getLearningContentId, k));
                            this.learningContentCopyrightOwnerService.remove(Wrappers.<LearningContentCopyrightOwner>lambdaUpdate().eq(LearningContentCopyrightOwner::getLearningContentId, k));
                        }
                    });

liqin's avatar
liqin committed
209
                    LambdaUpdateWrapper<LearningContentBoard> deleteWrapper1 = Wrappers.<LearningContentBoard>lambdaUpdate().in(LearningContentBoard::getExhibitionBoardId, exhibitionBoardIdList);
liqin's avatar
liqin committed
210 211 212 213
                    this.learningContentBoardService.remove(deleteWrapper1);
                }
            }
        }
liqin's avatar
liqin committed
214

liqin's avatar
liqin committed
215 216 217 218 219 220 221 222 223 224 225 226 227 228
//        final LambdaQueryWrapper<CopyrightOwnerVideoContentCat> eq = Wrappers.<CopyrightOwnerVideoContentCat>lambdaQuery().eq(CopyrightOwnerVideoContentCat::getVideoContentCatId, id);
//        final List<CopyrightOwnerVideoContentCat> list = this.copyrightOwnerVideoContentCatService.list(eq);
//        final List<String> collect = list.stream().map(CopyrightOwnerVideoContentCat::getCopyrightOwnerId).distinct().collect(Collectors.toList());
//
//        final LambdaUpdateWrapper<VideoContent> updateWrapper2 = Wrappers.<VideoContent>lambdaUpdate().in(VideoContent::getVideoContentCopyrightOwnerId, collect);
//        updateWrapper2.set(VideoContent::getDeleted, true);
//        this.videoContentService.update(updateWrapper2);
//
//        final LambdaUpdateWrapper<ExhibitionBoard> updateWrapper3 = Wrappers.<ExhibitionBoard>lambdaUpdate().in(ExhibitionBoard::getBoardCopyrightOwnerId, collect);
//        updateWrapper3.set(ExhibitionBoard::getDeleted, true);
//        this.exhibitionBoardService.update(updateWrapper3);
//
//        LambdaUpdateWrapper<CopyrightOwnerBoardCat> deleteWrapper = Wrappers.<CopyrightOwnerBoardCat>lambdaUpdate().in(CopyrightOwnerBoardCat::getCopyrightOwnerId, collect);
//        this.copyrightOwnerBoardCatService.remove(deleteWrapper);
liqin's avatar
liqin committed
229

liqin's avatar
liqin committed
230 231 232
        return getSuccessResult();
    }

liqin's avatar
liqin committed
233 234
}