diff --git a/im-admin-ui/src/api/im/platformConfiguration/index.ts b/im-admin-ui/src/api/im/platformConfiguration/index.ts new file mode 100644 index 0000000..11b36db --- /dev/null +++ b/im-admin-ui/src/api/im/platformConfiguration/index.ts @@ -0,0 +1,63 @@ +import request from '@/utils/request'; +import { AxiosPromise } from 'axios'; +import { PlatformConfigurationVO, PlatformConfigurationForm, PlatformConfigurationQuery } from '@/api/im/platformConfiguration/types'; + +/** + * 查询平台管理配置列表 + * @param query + * @returns {*} + */ + +export const listPlatformConfiguration = (query?: PlatformConfigurationQuery): AxiosPromise => { + return request({ + url: '/im/platformConfiguration/list', + method: 'get', + params: query + }); +}; + +/** + * 查询平台管理配置详细 + * @param id + */ +export const getPlatformConfiguration = (id: string | number): AxiosPromise => { + return request({ + url: '/im/platformConfiguration/' + id, + method: 'get' + }); +}; + +/** + * 新增平台管理配置 + * @param data + */ +export const addPlatformConfiguration = (data: PlatformConfigurationForm) => { + return request({ + url: '/im/platformConfiguration', + method: 'post', + data: data + }); +}; + +/** + * 修改平台管理配置 + * @param data + */ +export const updatePlatformConfiguration = (data: PlatformConfigurationForm) => { + return request({ + url: '/im/platformConfiguration', + method: 'put', + data: data + }); +}; + +/** + * 删除平台管理配置 + * @param id + */ +export const delPlatformConfiguration = (id: string | number | Array) => { + return request({ + url: '/im/platformConfiguration/' + id, + method: 'delete' + }); +}; diff --git a/im-admin-ui/src/api/im/platformConfiguration/types.ts b/im-admin-ui/src/api/im/platformConfiguration/types.ts new file mode 100644 index 0000000..add295e --- /dev/null +++ b/im-admin-ui/src/api/im/platformConfiguration/types.ts @@ -0,0 +1,61 @@ +export interface PlatformConfigurationVO { + /** + * 主键ID + */ + id: string | number; + + /** + * 唯一token + */ + uniqueToken: string; + + /** + * 域名名称 + */ + domainName: string; + + /** + * 备注 + */ + remark: string; + + /** + * 创建时间 + */ + createdTime: string; + +} + +export interface PlatformConfigurationForm extends BaseEntity { + /** + * 主键ID + */ + id?: string | number; + + /** + * 域名名称 + */ + domainName?: string; + + /** + * 备注 + */ + remark?: string; + +} + +export interface PlatformConfigurationQuery extends PageQuery { + + /** + * 域名名称 + */ + domainName?: string; + + /** + * 日期范围参数 + */ + params?: any; +} + + + diff --git a/im-admin-ui/src/views/im/customer/index.vue b/im-admin-ui/src/views/im/customer/index.vue index ac6f6fc..41dba29 100644 --- a/im-admin-ui/src/views/im/customer/index.vue +++ b/im-admin-ui/src/views/im/customer/index.vue @@ -286,7 +286,7 @@ const handleCopyLink = async (row: UserVO) => { // 构建链接,拼接 kefuid 参数 const baseUrl = `${location.origin}/h5`; const linkUrl = `${baseUrl}?token=${uniqueToken.value}&kefuid=${row.id}`; - + try { // 使用现代 Clipboard API await navigator.clipboard.writeText(linkUrl); @@ -302,7 +302,7 @@ const handleCopyLink = async (row: UserVO) => { const fallbackCopyTextToClipboard = (text: string) => { const textArea = document.createElement('textarea'); textArea.value = text; - + // 避免闪烁 // textArea.style.position = 'fixed'; // textArea.style.top = '0'; @@ -314,11 +314,11 @@ const fallbackCopyTextToClipboard = (text: string) => { // textArea.style.outline = 'none'; // textArea.style.boxShadow = 'none'; // textArea.style.background = 'transparent'; - + document.body.appendChild(textArea); textArea.focus(); textArea.select(); - + try { const successful = document.execCommand('copy'); if (successful) { @@ -330,7 +330,7 @@ const fallbackCopyTextToClipboard = (text: string) => { console.error('Fallback: Oops, unable to copy', err); ElMessage.error('复制失败,请手动复制'); } - + document.body.removeChild(textArea); }; /** 重置按钮操作 */ diff --git a/im-admin-ui/src/views/im/platformConfiguration/index.vue b/im-admin-ui/src/views/im/platformConfiguration/index.vue new file mode 100644 index 0000000..e15abdc --- /dev/null +++ b/im-admin-ui/src/views/im/platformConfiguration/index.vue @@ -0,0 +1,237 @@ + + + diff --git a/im-admin/ruoyi-im/src/main/java/org/dromara/im/controller/ImPlatformConfigurationController.java b/im-admin/ruoyi-im/src/main/java/org/dromara/im/controller/ImPlatformConfigurationController.java new file mode 100644 index 0000000..7692b3b --- /dev/null +++ b/im-admin/ruoyi-im/src/main/java/org/dromara/im/controller/ImPlatformConfigurationController.java @@ -0,0 +1,105 @@ +package org.dromara.im.controller; + +import java.util.List; + +import lombok.RequiredArgsConstructor; +import jakarta.servlet.http.HttpServletResponse; +import jakarta.validation.constraints.*; +import cn.dev33.satoken.annotation.SaCheckPermission; +import org.springframework.web.bind.annotation.*; +import org.springframework.validation.annotation.Validated; +import org.dromara.common.idempotent.annotation.RepeatSubmit; +import org.dromara.common.log.annotation.Log; +import org.dromara.common.web.core.BaseController; +import org.dromara.common.mybatis.core.page.PageQuery; +import org.dromara.common.core.domain.R; +import org.dromara.common.core.validate.AddGroup; +import org.dromara.common.core.validate.EditGroup; +import org.dromara.common.log.enums.BusinessType; +import org.dromara.common.excel.utils.ExcelUtil; +import org.dromara.im.domain.vo.ImPlatformConfigurationVo; +import org.dromara.im.domain.bo.ImPlatformConfigurationBo; +import org.dromara.im.service.IImPlatformConfigurationService; +import org.dromara.common.mybatis.core.page.TableDataInfo; + +/** + * 平台管理配置 + * + * @author Blue + * @date 2026-04-20 + */ +@Validated +@RequiredArgsConstructor +@RestController +@RequestMapping("/im/platformConfiguration") +public class ImPlatformConfigurationController extends BaseController { + + private final IImPlatformConfigurationService imPlatformConfigurationService; + + /** + * 查询平台管理配置列表 + */ + @SaCheckPermission("im:platformConfiguration:list") + @GetMapping("/list") + public TableDataInfo list(ImPlatformConfigurationBo bo, PageQuery pageQuery) { + return imPlatformConfigurationService.queryPageList(bo, pageQuery); + } + + /** + * 导出平台管理配置列表 + */ + @SaCheckPermission("im:platformConfiguration:export") + @Log(title = "平台管理配置", businessType = BusinessType.EXPORT) + //@PostMapping("/export") + public void export(ImPlatformConfigurationBo bo, HttpServletResponse response) { + List list = imPlatformConfigurationService.queryList(bo); + ExcelUtil.exportExcel(list, "平台管理配置", ImPlatformConfigurationVo.class, response); + } + + /** + * 获取平台管理配置详细信息 + * + * @param id 主键 + */ + @SaCheckPermission("im:platformConfiguration:query") + @GetMapping("/{id}") + public R getInfo(@NotNull(message = "主键不能为空") + @PathVariable Long id) { + return R.ok(imPlatformConfigurationService.queryById(id)); + } + + /** + * 新增平台管理配置 + */ + @SaCheckPermission("im:platformConfiguration:add") + @Log(title = "平台管理配置", businessType = BusinessType.INSERT) + @RepeatSubmit() + @PostMapping() + public R add(@Validated(AddGroup.class) @RequestBody ImPlatformConfigurationBo bo) { + return toAjax(imPlatformConfigurationService.insertByBo(bo)); + } + + /** + * 修改平台管理配置 + */ + @SaCheckPermission("im:platformConfiguration:edit") + @Log(title = "平台管理配置", businessType = BusinessType.UPDATE) + @RepeatSubmit() + @PutMapping() + public R edit(@Validated(EditGroup.class) @RequestBody ImPlatformConfigurationBo bo) { + return toAjax(imPlatformConfigurationService.updateByBo(bo)); + } + + /** + * 删除平台管理配置 + * + * @param ids 主键串 + */ + @SaCheckPermission("im:platformConfiguration:remove") + @Log(title = "平台管理配置", businessType = BusinessType.DELETE) + @DeleteMapping("/{ids}") + public R remove(@NotEmpty(message = "主键不能为空") + @PathVariable Long[] ids) { + return toAjax(imPlatformConfigurationService.deleteWithValidByIds(List.of(ids), true)); + } +} diff --git a/im-admin/ruoyi-im/src/main/java/org/dromara/im/domain/ImPlatformConfiguration.java b/im-admin/ruoyi-im/src/main/java/org/dromara/im/domain/ImPlatformConfiguration.java new file mode 100644 index 0000000..53580fa --- /dev/null +++ b/im-admin/ruoyi-im/src/main/java/org/dromara/im/domain/ImPlatformConfiguration.java @@ -0,0 +1,64 @@ +package org.dromara.im.domain; + +import com.fhs.core.trans.vo.TransPojo; +import org.dromara.common.mybatis.core.domain.BaseEntity; +import com.baomidou.mybatisplus.annotation.*; +import lombok.Data; +import lombok.EqualsAndHashCode; +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; + +import java.io.Serial; + +/** + * 平台管理配置对象 im_platform_configuration + * + * @author Blue + * @date 2026-04-20 + */ +@Data +@TableName("im_platform_configuration") +public class ImPlatformConfiguration implements TransPojo { + /** + * 主键ID + */ + @TableId(value = "id") + private Long id; + + /** + * 唯一token + */ + private String uniqueToken; + + /** + * 域名名称 + */ + private String domainName; + + /** + * 备注 + */ + private String remark; + + /** + * 创建时间 + */ + private Date createdTime; + + /** + * 更新时间 + */ + private Date updatedTime; + + /** + * 创建者ID + */ + private Long creatorId; + + /** + * 更新者ID + */ + private Long updaterId; + + +} diff --git a/im-admin/ruoyi-im/src/main/java/org/dromara/im/domain/bo/ImPlatformConfigurationBo.java b/im-admin/ruoyi-im/src/main/java/org/dromara/im/domain/bo/ImPlatformConfigurationBo.java new file mode 100644 index 0000000..03ed921 --- /dev/null +++ b/im-admin/ruoyi-im/src/main/java/org/dromara/im/domain/bo/ImPlatformConfigurationBo.java @@ -0,0 +1,43 @@ +package org.dromara.im.domain.bo; + +import org.dromara.im.domain.ImPlatformConfiguration; +import org.dromara.common.mybatis.core.domain.BaseEntity; +import org.dromara.common.core.validate.AddGroup; +import org.dromara.common.core.validate.EditGroup; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; +import lombok.EqualsAndHashCode; +import jakarta.validation.constraints.*; +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; + +/** + * 平台管理配置业务对象 im_platform_configuration + * + * @author Blue + * @date 2026-04-20 + */ +@Data +@EqualsAndHashCode(callSuper = true) +@AutoMapper(target = ImPlatformConfiguration.class, reverseConvertGenerate = false) +public class ImPlatformConfigurationBo extends BaseEntity { + + /** + * 主键ID + */ + @NotNull(message = "主键ID不能为空", groups = { EditGroup.class }) + private Long id; + + /** + * 域名名称 + */ + @NotBlank(message = "域名名称不能为空", groups = { AddGroup.class, EditGroup.class }) + private String domainName; + + /** + * 备注 + */ + private String remark; + + +} diff --git a/im-admin/ruoyi-im/src/main/java/org/dromara/im/domain/vo/ImPlatformConfigurationVo.java b/im-admin/ruoyi-im/src/main/java/org/dromara/im/domain/vo/ImPlatformConfigurationVo.java new file mode 100644 index 0000000..f946113 --- /dev/null +++ b/im-admin/ruoyi-im/src/main/java/org/dromara/im/domain/vo/ImPlatformConfigurationVo.java @@ -0,0 +1,64 @@ +package org.dromara.im.domain.vo; + +import java.util.Date; +import com.fasterxml.jackson.annotation.JsonFormat; +import org.dromara.im.domain.ImPlatformConfiguration; +import com.alibaba.excel.annotation.ExcelIgnoreUnannotated; +import com.alibaba.excel.annotation.ExcelProperty; +import org.dromara.common.excel.annotation.ExcelDictFormat; +import org.dromara.common.excel.convert.ExcelDictConvert; +import io.github.linpeilie.annotations.AutoMapper; +import lombok.Data; + +import java.io.Serial; +import java.io.Serializable; +import java.util.Date; + + + +/** + * 平台管理配置视图对象 im_platform_configuration + * + * @author Blue + * @date 2026-04-20 + */ +@Data +@ExcelIgnoreUnannotated +@AutoMapper(target = ImPlatformConfiguration.class) +public class ImPlatformConfigurationVo implements Serializable { + + @Serial + private static final long serialVersionUID = 1L; + + /** + * 主键ID + */ + @ExcelProperty(value = "主键ID") + private Long id; + + /** + * 唯一token + */ + @ExcelProperty(value = "唯一token") + private String uniqueToken; + + /** + * 域名名称 + */ + @ExcelProperty(value = "域名名称") + private String domainName; + + /** + * 备注 + */ + @ExcelProperty(value = "备注") + private String remark; + + /** + * 创建时间 + */ + @ExcelProperty(value = "创建时间") + private Date createdTime; + + +} diff --git a/im-admin/ruoyi-im/src/main/java/org/dromara/im/mapper/ImPlatformConfigurationMapper.java b/im-admin/ruoyi-im/src/main/java/org/dromara/im/mapper/ImPlatformConfigurationMapper.java new file mode 100644 index 0000000..289082b --- /dev/null +++ b/im-admin/ruoyi-im/src/main/java/org/dromara/im/mapper/ImPlatformConfigurationMapper.java @@ -0,0 +1,15 @@ +package org.dromara.im.mapper; + +import org.dromara.im.domain.ImPlatformConfiguration; +import org.dromara.im.domain.vo.ImPlatformConfigurationVo; +import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; + +/** + * 平台管理配置Mapper接口 + * + * @author Blue + * @date 2026-04-20 + */ +public interface ImPlatformConfigurationMapper extends BaseMapperPlus { + +} diff --git a/im-admin/ruoyi-im/src/main/java/org/dromara/im/service/IImPlatformConfigurationService.java b/im-admin/ruoyi-im/src/main/java/org/dromara/im/service/IImPlatformConfigurationService.java new file mode 100644 index 0000000..759c745 --- /dev/null +++ b/im-admin/ruoyi-im/src/main/java/org/dromara/im/service/IImPlatformConfigurationService.java @@ -0,0 +1,68 @@ +package org.dromara.im.service; + +import org.dromara.im.domain.vo.ImPlatformConfigurationVo; +import org.dromara.im.domain.bo.ImPlatformConfigurationBo; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; + +import java.util.Collection; +import java.util.List; + +/** + * 平台管理配置Service接口 + * + * @author Blue + * @date 2026-04-20 + */ +public interface IImPlatformConfigurationService { + + /** + * 查询平台管理配置 + * + * @param id 主键 + * @return 平台管理配置 + */ + ImPlatformConfigurationVo queryById(Long id); + + /** + * 分页查询平台管理配置列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 平台管理配置分页列表 + */ + TableDataInfo queryPageList(ImPlatformConfigurationBo bo, PageQuery pageQuery); + + /** + * 查询符合条件的平台管理配置列表 + * + * @param bo 查询条件 + * @return 平台管理配置列表 + */ + List queryList(ImPlatformConfigurationBo bo); + + /** + * 新增平台管理配置 + * + * @param bo 平台管理配置 + * @return 是否新增成功 + */ + Boolean insertByBo(ImPlatformConfigurationBo bo); + + /** + * 修改平台管理配置 + * + * @param bo 平台管理配置 + * @return 是否修改成功 + */ + Boolean updateByBo(ImPlatformConfigurationBo bo); + + /** + * 校验并批量删除平台管理配置信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + Boolean deleteWithValidByIds(Collection ids, Boolean isValid); +} diff --git a/im-admin/ruoyi-im/src/main/java/org/dromara/im/service/impl/ImPlatformConfigurationServiceImpl.java b/im-admin/ruoyi-im/src/main/java/org/dromara/im/service/impl/ImPlatformConfigurationServiceImpl.java new file mode 100644 index 0000000..61698b3 --- /dev/null +++ b/im-admin/ruoyi-im/src/main/java/org/dromara/im/service/impl/ImPlatformConfigurationServiceImpl.java @@ -0,0 +1,199 @@ +package org.dromara.im.service.impl; + +import cn.hutool.core.date.DateUtil; +import com.baomidou.dynamic.datasource.annotation.DS; +import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper; +import org.dromara.common.core.utils.MapstructUtils; +import org.dromara.common.core.utils.StringUtils; +import org.dromara.common.mybatis.core.page.TableDataInfo; +import org.dromara.common.mybatis.core.page.PageQuery; +import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; +import com.baomidou.mybatisplus.core.toolkit.Wrappers; +import lombok.RequiredArgsConstructor; +import org.dromara.common.satoken.utils.LoginHelper; +import org.dromara.im.constant.ImConstant; +import org.dromara.im.domain.ImPlatformConfiguration; +import org.dromara.im.service.IImAgentService; +import org.dromara.im.util.LambdaQueryWrapperHelper; +import org.springframework.stereotype.Service; +import org.dromara.im.domain.bo.ImPlatformConfigurationBo; +import org.dromara.im.domain.vo.ImPlatformConfigurationVo; +import org.dromara.im.domain.ImPlatformConfiguration; +import org.dromara.im.mapper.ImPlatformConfigurationMapper; +import org.dromara.im.service.IImPlatformConfigurationService; + +import java.util.List; +import java.util.Map; +import java.util.Collection; + +/** + * 平台管理配置Service业务层处理 + * + * @author Blue + * @date 2026-04-20 + */ +@RequiredArgsConstructor +@Service +@DS(ImConstant.DS_IM_PLATFORM) +public class ImPlatformConfigurationServiceImpl implements IImPlatformConfigurationService { + + private final ImPlatformConfigurationMapper baseMapper; + + private final IImAgentService imAgentService; + + + /** + * 查询平台管理配置 + * + * @param id 主键 + * @return 平台管理配置 + */ + @Override + public ImPlatformConfigurationVo queryById(Long id){ + + LambdaQueryWrapper lqw = Wrappers.lambdaQuery(); + lqw.eq(ImPlatformConfiguration::getId, id); + + if(!LoginHelper.isSuperAdmin()) { + LambdaQueryWrapperHelper.appendToken(lqw, ImPlatformConfiguration::getUniqueToken); + } + + return baseMapper.selectVoOne(lqw); + } + + /** + * 分页查询平台管理配置列表 + * + * @param bo 查询条件 + * @param pageQuery 分页参数 + * @return 平台管理配置分页列表 + */ + @Override + public TableDataInfo queryPageList(ImPlatformConfigurationBo bo, PageQuery pageQuery) { + LambdaQueryWrapper lqw = buildQueryWrapper(bo); + Page result = baseMapper.selectVoPage(pageQuery.build(), lqw); + return TableDataInfo.build(result); + } + + /** + * 查询符合条件的平台管理配置列表 + * + * @param bo 查询条件 + * @return 平台管理配置列表 + */ + @Override + public List queryList(ImPlatformConfigurationBo bo) { + LambdaQueryWrapper lqw = buildQueryWrapper(bo); + return baseMapper.selectVoList(lqw); + } + + private LambdaQueryWrapper buildQueryWrapper(ImPlatformConfigurationBo bo) { + Map params = bo.getParams(); + LambdaQueryWrapper lqw = Wrappers.lambdaQuery(); + lqw.like(StringUtils.isNotBlank(bo.getDomainName()), ImPlatformConfiguration::getDomainName, bo.getDomainName()); + + if(!LoginHelper.isSuperAdmin()) { + LambdaQueryWrapperHelper.appendToken(lqw, ImPlatformConfiguration::getUniqueToken); + } + + return lqw; + } + + /** + * 新增平台管理配置 + * + * @param bo 平台管理配置 + * @return 是否新增成功 + */ + @Override + public Boolean insertByBo(ImPlatformConfigurationBo bo) { + ImPlatformConfiguration add = MapstructUtils.convert(bo, ImPlatformConfiguration.class); + + if (add == null) { + return false; + } + + add.setCreatorId(LoginHelper.getUserId()); + add.setCreatedTime(DateUtil.date()); + add.setUpdaterId(LoginHelper.getUserId()); + add.setUpdatedTime(DateUtil.date()); + + // 如果不是超级管理员,则设置 uniqueToken + if(!LoginHelper.isSuperAdmin()) { + add.setUniqueToken(imAgentService.getTokenByUserId()); + } + + + validEntityBeforeSave(add); + boolean flag = baseMapper.insert(add) > 0; + if (flag) { + bo.setId(add.getId()); + } + return flag; + } + + /** + * 修改平台管理配置 + * + * @param bo 平台管理配置 + * @return 是否修改成功 + */ + @Override + public Boolean updateByBo(ImPlatformConfigurationBo bo) { + ImPlatformConfiguration update = MapstructUtils.convert(bo, ImPlatformConfiguration.class); + if (update == null) { + return false; + } + validEntityBeforeSave(update); + LambdaUpdateWrapper updateWrapper = new LambdaUpdateWrapper<>(); + updateWrapper.eq(ImPlatformConfiguration::getId, update.getId()); + + if(!LoginHelper.isSuperAdmin()) { + // 使用当前用户的 token 而不是从 bo 中获取,防止篡改 + updateWrapper.eq(ImPlatformConfiguration::getUniqueToken, imAgentService.getTokenByUserId()); + } + + updateWrapper.set(ImPlatformConfiguration::getDomainName, update.getDomainName()); + updateWrapper.set(ImPlatformConfiguration::getRemark, update.getRemark()); + + updateWrapper.set(ImPlatformConfiguration::getUpdaterId, LoginHelper.getUserId()); + updateWrapper.set(ImPlatformConfiguration::getUpdatedTime, DateUtil.date()); + + return baseMapper.update(null, updateWrapper) > 0; + + } + + /** + * 保存前的数据校验 + */ + private void validEntityBeforeSave(ImPlatformConfiguration entity){ + //TODO 做一些数据校验,如唯一约束 + } + + /** + * 校验并批量删除平台管理配置信息 + * + * @param ids 待删除的主键集合 + * @param isValid 是否进行有效性校验 + * @return 是否删除成功 + */ + @Override + public Boolean deleteWithValidByIds(Collection ids, Boolean isValid) { + if(isValid){ + if (ids == null || ids.isEmpty()) { + return false; + } + } + + LambdaUpdateWrapper updateWrapper = new LambdaUpdateWrapper<>(); + updateWrapper.in(ImPlatformConfiguration::getId, ids); + + if(!LoginHelper.isSuperAdmin()) { + // 添加 uniqueToken 条件,确保只能删除当前用户的记录 + updateWrapper.eq(ImPlatformConfiguration::getUniqueToken, imAgentService.getTokenByUserId()); + } + + return baseMapper.delete(updateWrapper) > 0; + } +} diff --git a/im-admin/ruoyi-im/src/main/resources/mapper/im/ImPlatformConfigurationMapper.xml b/im-admin/ruoyi-im/src/main/resources/mapper/im/ImPlatformConfigurationMapper.xml new file mode 100644 index 0000000..9ce9afd --- /dev/null +++ b/im-admin/ruoyi-im/src/main/resources/mapper/im/ImPlatformConfigurationMapper.xml @@ -0,0 +1,7 @@ + + + + +