吉安感知网项目-后端
xiebin
2026-01-06 d207a86cdf1ab52ef8cb7cd83bad8fceab8038cf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/*
 *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill 庄骞 (smallchill@163.com)
 */
package org.sxkj.resource.service.impl;
 
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.springblade.core.cache.utils.CacheUtil;
import org.springblade.core.log.exception.ServiceException;
import org.springblade.core.mp.base.BaseServiceImpl;
import org.springblade.core.oss.enums.OssEnum;
import org.springblade.core.secure.utils.AuthUtil;
import org.springblade.core.tool.utils.Func;
import org.sxkj.resource.cacel.OssCache;
import org.sxkj.resource.entity.Oss;
import org.sxkj.resource.vo.OssVO;
import org.sxkj.resource.mapper.OssMapper;
import org.sxkj.resource.service.IOssService;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.sxkj.system.cache.DictBizCache;
 
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
 
import static org.springblade.core.cache.constant.CacheConstant.RESOURCE_CACHE;
import static org.springblade.core.cache.constant.CacheConstant.SYS_CACHE;
 
/**
 * 服务实现类
 *
 * @author BladeX
 */
@Service
public class OssServiceImpl extends BaseServiceImpl<OssMapper, Oss> implements IOssService {
 
    @Override
    public IPage<OssVO> selectOssPage(IPage<OssVO> page, OssVO oss) {
        return page.setRecords(baseMapper.selectOssPage(page, oss));
    }
 
    @Override
    public boolean submit(Oss oss) {
        LambdaQueryWrapper<Oss> lqw = Wrappers.<Oss>query().lambda()
            .eq(Oss::getOssCode, oss.getOssCode()).eq(Oss::getTenantId, AuthUtil.getTenantId());
        Long cnt = baseMapper.selectCount(Func.isEmpty(oss.getId()) ? lqw : lqw.notIn(Oss::getId, oss.getId()));
        if (cnt > 0L) {
            throw new ServiceException("当前资源编号已存在!");
        }
        return this.saveOrUpdate(oss);
    }
 
    @Override
    @Transactional(rollbackFor = Exception.class)
    public boolean enable(Long id) {
        // 先禁用
//        boolean temp1 = this.update(Wrappers.<Oss>update().lambda().set(Oss::getStatus, 1));
        // 在启用
        boolean temp2 = this.update(Wrappers.<Oss>update().lambda().set(Oss::getStatus, 2).eq(Oss::getId, id));
        return temp2;
    }
 
    /**
     * 获取存储对象信息
     * @param sn 机场编号
     * @return
     */
    @Override
    public Oss getOssInfoByDevSn(String sn) {
        return baseMapper.getOssInfoByDevSn(sn);
    }
 
    /**
     * 获取默认的 oss 信息
     * @param tenantId
     * @return Oss
     */
    @Override
    public Oss getDefaultOss(String tenantId) {
        QueryWrapper<Oss> wrapper = new QueryWrapper<>();
        wrapper.eq("tenant_id",tenantId);
        wrapper.eq("is_def",1);
        Oss one = getOne(wrapper);
        return one;
    }
 
    @Override
    public Oss getOssCacheBySn(String sn) {
        return OssCache.getOssBySn(sn);
    }
 
    /**
     * 禁用
     * @param id
     * @return
     */
    @Override
    public boolean disable(Long id) {
        // 禁用
        boolean temp2 = this.update(Wrappers.<Oss>update().lambda().set(Oss::getStatus, 1).eq(Oss::getId, id));
        return temp2;
    }
}