|
@@ -26,10 +26,10 @@ public class DeviceController {
|
|
|
@Autowired
|
|
|
DeviceService deviceService;
|
|
|
|
|
|
- @RequestMapping(value = "/login" ,method = RequestMethod.POST)
|
|
|
- public Map Login(@RequestParam int id, @RequestParam String token){
|
|
|
- Device device = deviceService.Login(id, token);
|
|
|
+ @RequestMapping(value = "/token" ,method = RequestMethod.POST)
|
|
|
+ public Map Login(@RequestParam long id, @RequestParam String token){
|
|
|
Map map = new HashMap<>();
|
|
|
+ Device device = deviceService.Login(id, token);
|
|
|
if(device==null){
|
|
|
map.put("code", ApiCode.INVALID_TOKEN.getCode());
|
|
|
map.put("msg", ApiCode.INVALID_TOKEN.getCode());
|
|
@@ -38,6 +38,7 @@ public class DeviceController {
|
|
|
|
|
|
map.put("code", ApiCode.OK.getCode());
|
|
|
Map data = new HashMap<>();
|
|
|
+ data.put("id", device.getId());
|
|
|
data.put("token", device.getTokenNew());
|
|
|
map.put("data", data);
|
|
|
|
|
@@ -46,9 +47,9 @@ public class DeviceController {
|
|
|
|
|
|
@RequestMapping(value = "/register" ,method = RequestMethod.POST)
|
|
|
public Map Register(HttpServletRequest request){
|
|
|
+ Map map = new HashMap<>();
|
|
|
String idChannel = request.getParameter("idChannel");
|
|
|
String idDevice = request.getParameter("idDevice");
|
|
|
- Map map = new HashMap<>();
|
|
|
if(idChannel==null || idDevice==null){
|
|
|
map.put("code", ApiCode.PARAMETER_ERROR.getCode());
|
|
|
map.put("msg", ApiCode.PARAMETER_ERROR.getMessage());
|
|
@@ -63,6 +64,7 @@ public class DeviceController {
|
|
|
if(device!=null){
|
|
|
map.put("code", ApiCode.OK.getCode());
|
|
|
Map data = new HashMap<>();
|
|
|
+ data.put("id", device.getId());
|
|
|
data.put("token", device.getTokenNew());
|
|
|
map.put("data", data);
|
|
|
}
|