parent
eff1294ca6
commit
a6526c17d3
@ -0,0 +1,22 @@
|
|||||||
|
package com.kob.backend.controller.user.bot;
|
||||||
|
|
||||||
|
import com.kob.backend.service.user.bot.AddService;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
public class AddController {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private AddService addService;
|
||||||
|
|
||||||
|
@PostMapping("/user/bot/add/")
|
||||||
|
public Map<String ,String> add(@RequestParam Map<String,String> data)
|
||||||
|
{
|
||||||
|
return addService.add(data);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
package com.kob.backend.controller.user.bot;
|
||||||
|
|
||||||
|
import com.kob.backend.pojo.Bot;
|
||||||
|
import com.kob.backend.service.user.bot.GetListService;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.web.bind.annotation.GetMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
public class GetListController{
|
||||||
|
@Autowired
|
||||||
|
private GetListService getListService;
|
||||||
|
|
||||||
|
@GetMapping("/user/bot/getlist/")
|
||||||
|
public List<Bot> getList()
|
||||||
|
{
|
||||||
|
return getListService.getList();
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,21 @@
|
|||||||
|
package com.kob.backend.controller.user.bot;
|
||||||
|
|
||||||
|
import com.kob.backend.service.user.bot.RemoveService;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
public class RemoveController {
|
||||||
|
@Autowired
|
||||||
|
private RemoveService removeService;
|
||||||
|
|
||||||
|
@PostMapping("/user/bot/remove/")
|
||||||
|
public Map<String,String> remove(@RequestParam Map<String,String> data)
|
||||||
|
{
|
||||||
|
return removeService.remove(data);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,20 @@
|
|||||||
|
package com.kob.backend.controller.user.bot;
|
||||||
|
|
||||||
|
import com.kob.backend.service.user.bot.UpdateService;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestParam;
|
||||||
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
@RestController
|
||||||
|
public class UpdateController {
|
||||||
|
@Autowired
|
||||||
|
private UpdateService updateService;
|
||||||
|
|
||||||
|
@PostMapping("/user/bot/update/")
|
||||||
|
public Map<String,String> update(@RequestParam Map<String,String> data){
|
||||||
|
return updateService.update(data);
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
package com.kob.backend.mapper;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.kob.backend.pojo.Bot;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
|
||||||
|
@Mapper
|
||||||
|
public interface BotMapper extends BaseMapper<Bot> {
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,26 @@
|
|||||||
|
package com.kob.backend.pojo;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
@NoArgsConstructor
|
||||||
|
@AllArgsConstructor
|
||||||
|
public class Bot {
|
||||||
|
@TableId(type = IdType.AUTO)
|
||||||
|
private Integer id;
|
||||||
|
private Integer userId;
|
||||||
|
private String title;
|
||||||
|
private String description;
|
||||||
|
private String content;
|
||||||
|
private Integer rating;
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date createtime;
|
||||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
||||||
|
private Date modifytime;
|
||||||
|
}
|
@ -0,0 +1,71 @@
|
|||||||
|
package com.kob.backend.service.impl.bot;
|
||||||
|
|
||||||
|
import com.kob.backend.mapper.BotMapper;
|
||||||
|
import com.kob.backend.pojo.Bot;
|
||||||
|
import com.kob.backend.pojo.User;
|
||||||
|
import com.kob.backend.service.impl.utils.UserDetailsImpl;
|
||||||
|
import com.kob.backend.service.user.bot.AddService;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
|
||||||
|
import org.springframework.security.core.context.SecurityContextHolder;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class AddServiceImpl implements AddService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private BotMapper botMapper;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Map<String, String> add(Map<String, String> data) {
|
||||||
|
//认证+获取user
|
||||||
|
UsernamePasswordAuthenticationToken authenticationToken =
|
||||||
|
(UsernamePasswordAuthenticationToken) SecurityContextHolder.getContext().getAuthentication();
|
||||||
|
UserDetailsImpl loginUser = (UserDetailsImpl) authenticationToken.getPrincipal();
|
||||||
|
User user = loginUser.getUser();
|
||||||
|
|
||||||
|
//传入参数
|
||||||
|
String title = data.get("title");
|
||||||
|
String description = data.get("description");
|
||||||
|
String content = data.get("content");
|
||||||
|
|
||||||
|
//定义返回
|
||||||
|
Map<String,String> map = new HashMap<>();
|
||||||
|
|
||||||
|
if(title == null || title.length() == 0){
|
||||||
|
map.put("error_message","标题不能为空");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
if(title.length() > 100){
|
||||||
|
map.put("error_message","标题长度不能大于100");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
if(description == null || description.length() == 0){
|
||||||
|
description = "这个用户很懒,没有添加描述~~";
|
||||||
|
}
|
||||||
|
if(description.length() > 300){
|
||||||
|
map.put("error_message","Bot描述不能大于300");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
if(content == null || content.length() == 0){
|
||||||
|
map.put("error_message","代码不能为空");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
if(content.length() > 10000){
|
||||||
|
map.put("error_message","代码长度不能超过10000");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
Date now = new Date();
|
||||||
|
Bot bot = new Bot(null,user.getId(),title,description,content,1500,now,now);
|
||||||
|
botMapper.insert(bot);
|
||||||
|
|
||||||
|
map.put("error_message","success");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,35 @@
|
|||||||
|
package com.kob.backend.service.impl.bot;
|
||||||
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
||||||
|
import com.kob.backend.mapper.BotMapper;
|
||||||
|
import com.kob.backend.pojo.Bot;
|
||||||
|
import com.kob.backend.pojo.User;
|
||||||
|
import com.kob.backend.service.impl.utils.UserDetailsImpl;
|
||||||
|
import com.kob.backend.service.user.bot.GetListService;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
|
||||||
|
import org.springframework.security.core.context.SecurityContextHolder;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class GetListServiceImpl implements GetListService {
|
||||||
|
@Autowired
|
||||||
|
private BotMapper botMapper;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<Bot> getList()
|
||||||
|
{
|
||||||
|
UsernamePasswordAuthenticationToken authenticationToken =
|
||||||
|
(UsernamePasswordAuthenticationToken) SecurityContextHolder.getContext().getAuthentication();
|
||||||
|
UserDetailsImpl loginUser = (UserDetailsImpl) authenticationToken.getPrincipal();
|
||||||
|
User user = loginUser.getUser();
|
||||||
|
|
||||||
|
QueryWrapper<Bot> queryWrapper = new QueryWrapper<>();
|
||||||
|
queryWrapper.eq("user_id",user.getId());
|
||||||
|
|
||||||
|
List<Bot> bots = botMapper.selectList(queryWrapper);
|
||||||
|
|
||||||
|
return bots;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,48 @@
|
|||||||
|
package com.kob.backend.service.impl.bot;
|
||||||
|
|
||||||
|
import com.kob.backend.mapper.BotMapper;
|
||||||
|
import com.kob.backend.pojo.Bot;
|
||||||
|
import com.kob.backend.pojo.User;
|
||||||
|
import com.kob.backend.service.impl.utils.UserDetailsImpl;
|
||||||
|
import com.kob.backend.service.user.bot.RemoveService;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
|
||||||
|
import org.springframework.security.core.context.SecurityContextHolder;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class RemoveServiceImpl implements RemoveService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private BotMapper botMapper;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Map<String, String> remove(Map<String, String> data) {
|
||||||
|
//认证+获取用户
|
||||||
|
UsernamePasswordAuthenticationToken authenticationToken =
|
||||||
|
(UsernamePasswordAuthenticationToken) SecurityContextHolder.getContext().getAuthentication();
|
||||||
|
UserDetailsImpl loginUser = (UserDetailsImpl)authenticationToken.getPrincipal();
|
||||||
|
User user = loginUser.getUser();
|
||||||
|
|
||||||
|
Map<String,String> map = new HashMap<>();
|
||||||
|
int bot_id = Integer.parseInt(data.get("bot_id"));
|
||||||
|
Bot bot = botMapper.selectById(bot_id);
|
||||||
|
|
||||||
|
if(bot == null){
|
||||||
|
map.put("error_message","Bot不存在或已删除");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
if(!bot.getUserId().equals(user.getId())){
|
||||||
|
map.put("error_message","没有权限删除该Bot");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
botMapper.deleteById(bot_id);
|
||||||
|
|
||||||
|
map.put("error_message","success");
|
||||||
|
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,92 @@
|
|||||||
|
package com.kob.backend.service.impl.bot;
|
||||||
|
|
||||||
|
import com.kob.backend.mapper.BotMapper;
|
||||||
|
import com.kob.backend.pojo.Bot;
|
||||||
|
import com.kob.backend.pojo.User;
|
||||||
|
import com.kob.backend.service.impl.utils.UserDetailsImpl;
|
||||||
|
import com.kob.backend.service.user.bot.UpdateService;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.security.authentication.UsernamePasswordAuthenticationToken;
|
||||||
|
import org.springframework.security.core.context.SecurityContextHolder;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
public class UpdateServiceImpl implements UpdateService {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private BotMapper botMapper;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Map<String, String> update(Map<String, String> data) {
|
||||||
|
UsernamePasswordAuthenticationToken authenticationToken =
|
||||||
|
(UsernamePasswordAuthenticationToken) SecurityContextHolder.getContext().getAuthentication();
|
||||||
|
UserDetailsImpl loginUser = (UserDetailsImpl) authenticationToken.getPrincipal();
|
||||||
|
User user = loginUser.getUser();
|
||||||
|
|
||||||
|
int bot_id = Integer.parseInt(data.get("bot_id"));
|
||||||
|
|
||||||
|
//传入参数
|
||||||
|
String title = data.get("title");
|
||||||
|
String description = data.get("description");
|
||||||
|
String content = data.get("content");
|
||||||
|
|
||||||
|
//定义返回
|
||||||
|
Map<String,String> map = new HashMap<>();
|
||||||
|
|
||||||
|
if(title == null || title.length() == 0){
|
||||||
|
map.put("error_message","标题不能为空");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
if(title.length() > 100){
|
||||||
|
map.put("error_message","标题长度不能大于100");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
if(description == null || description.length() == 0){
|
||||||
|
description = "这个用户很懒,没有添加描述~~";
|
||||||
|
}
|
||||||
|
if(description.length() > 300){
|
||||||
|
map.put("error_message","Bot描述不能大于300");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
if(content == null || content.length() == 0){
|
||||||
|
map.put("error_message","代码不能为空");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
if(content.length() > 10000){
|
||||||
|
map.put("error_message","代码长度不能超过10000");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Bot bot = botMapper.selectById(bot_id);
|
||||||
|
if(bot == null){
|
||||||
|
map.put("error_message","Bot不存在或已删除");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
if(!bot.getUserId().equals(user.getId())){
|
||||||
|
map.put("error_message","没有权限修改该Bot");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Date now = new Date();
|
||||||
|
Bot new_bot = new Bot(
|
||||||
|
bot.getId(),
|
||||||
|
user.getId(),
|
||||||
|
title,
|
||||||
|
description,
|
||||||
|
content,
|
||||||
|
bot.getRating(),
|
||||||
|
bot.getCreatetime(),
|
||||||
|
now
|
||||||
|
);
|
||||||
|
botMapper.updateById(new_bot);
|
||||||
|
|
||||||
|
map.put("error_message","success");
|
||||||
|
return map;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
package com.kob.backend.service.user.bot;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
|
||||||
|
public interface AddService {
|
||||||
|
public Map<String ,String> add(Map<String,String> data);
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
package com.kob.backend.service.user.bot;
|
||||||
|
|
||||||
|
import com.kob.backend.pojo.Bot;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public interface GetListService {
|
||||||
|
public List<Bot> getList();
|
||||||
|
}
|
@ -0,0 +1,8 @@
|
|||||||
|
package com.kob.backend.service.user.bot;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public interface RemoveService {
|
||||||
|
public Map<String,String> remove(Map<String,String> data);
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
package com.kob.backend.service.user.bot;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public interface UpdateService {
|
||||||
|
public Map<String,String> update(Map<String,String> data);
|
||||||
|
}
|
Loading…
Reference in new issue