All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.base4j.mvc.sys.controller.SysResourceController Maven / Gradle / Ivy

There is a newer version: 1.3.0
Show newest version
package com.base4j.mvc.sys.controller;

import com.base4j.mvc.base.controller.BaseController;
import com.base4j.mvc.sys.entity.SysResource;
import com.base4j.mvc.sys.service.SysResourceService;
import com.base4j.mvc.util.ILoginUserTool;
import com.base4j.mvc.util.Res;
import com.base4j.mybatis.base.QueryParams;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.ModelAndView;

import java.util.List;

@RestController
@RequestMapping("/sys/resource")
public class SysResourceController extends BaseController {

    @Autowired
    private SysResourceService sysResourceService;
    @Autowired
    private ILoginUserTool loginUserTool;

    @RequestMapping("/index")
    public ModelAndView index() {
        return new ModelAndView("/sys/resource");
    }

    @RequestMapping("/findResourceTreeForLoginUser")
    public Res findResourceTreeForLoginUser() {
        List resourceTreeForLoginUser = sysResourceService.findResourceTreeForLoginUser();
        return Res.ok(resourceTreeForLoginUser);
    }

    @RequestMapping("/selectResourceTree")
    public Res selectResourceTree() {
        List sysResources = sysResourceService.selectResourceTree();
        return Res.ok(sysResources);
    }

    @Override
    @RequestMapping("/save")
    public Res save(@RequestBody SysResource sysResource) {
        if (sysResource.getId() == null) {
            sysResourceService.insert(sysResource);
        } else {
            sysResourceService.updateSelectiveByPrimaryKey(sysResource);
        }
        return Res.ok(sysResource.getId().toString());
    }

    /** 删除当前资源及期子资源
     * @param id
     * @return
     */
    @RequestMapping("deleteAllSubMenusById/{id}")
    public Res deleteAllSubMenusById(@PathVariable Long id) {
        QueryParams queryParams = new QueryParams(SysResource.class);
        QueryParams.Criteria criteria = queryParams.createCriteria();
        criteria.andEqualTo("id", id);
        QueryParams.Criteria or = queryParams.or();
        or.andEqualTo("parentId", id);
        sysResourceService.deleteByParams(queryParams);
        return Res.ok();
    }

    @RequestMapping("selectOrgTree")
    public List selectOrgTree() {
        return sysResourceService.selectOrgTree();
    }

    /**
     * 根据父级菜单id查找其下级菜单
     *
     * @param parentId 父级菜单id
     * @return Res
     */
    @RequestMapping("/selectListByParentId")
    public Res selectListByParentId(long parentId) {
        List subResources = sysResourceService.selectChildNumListByParentId(parentId);
        return Res.ok(subResources);
    }

    /**
     * 查询本目录下的所有菜单
     *
     * @return Res
     */
    @RequestMapping("/selectOwnResourceList")
    public Res selectOwnResourceList() {
        QueryParams queryParams = new QueryParams(SysResource.class);
        QueryParams.Criteria criteria = queryParams.createCriteria();
        criteria.andEqualTo("sysResourceId", loginUserTool.getLoginUser().getSysOrgId());
        List sysDepts = sysResourceService.selectListByParams(queryParams);
        return Res.ok(sysDepts);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy