package com.gkhy.safePlatform.accountController;
|
|
import com.alibaba.fastjson.JSONObject;
|
import com.gkhy.safePlatform.account.rpc.apimodel.AccountAuthService;
|
import com.gkhy.safePlatform.account.rpc.apimodel.model.resp.MenuRPCRespDTO;
|
import com.gkhy.safePlatform.account.rpc.apimodel.model.resp.UserLoginRPCRespDTO;
|
import com.gkhy.safePlatform.commons.vo.ResultVO;
|
import org.apache.dubbo.config.annotation.DubboReference;
|
import org.apache.dubbo.config.annotation.DubboService;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
import java.security.Principal;
|
import java.util.List;
|
|
@RestController
|
@RequestMapping("/auth")
|
public class LoginController {
|
|
@DubboReference(check = false)
|
private AccountAuthService accountAuthService;
|
|
@RequestMapping("/login")
|
public ResultVO<UserLoginRPCRespDTO> authLogin(@RequestBody JSONObject loginForm){
|
String username = loginForm.getString("username");
|
String password = loginForm.getString("password");
|
return accountAuthService.authLogin(username, password);
|
}
|
|
@RequestMapping("/menu")
|
public ResultVO<List<MenuRPCRespDTO>> getMenu(Principal principal, Long projectId){
|
String userId = principal.getName();
|
return accountAuthService.getMenu(Long.valueOf(userId), projectId);
|
}
|
}
|