2021-12-18 17:33:14 +08:00
|
|
|
package com.yutou.qqbot.Controllers;
|
|
|
|
|
2022-01-09 03:32:30 +08:00
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
|
import com.yutou.qqbot.QQBotManager;
|
2021-12-18 17:33:14 +08:00
|
|
|
import com.yutou.qqbot.utlis.AppTools;
|
2022-01-09 03:32:30 +08:00
|
|
|
import com.yutou.qqbot.utlis.HttpTools;
|
2021-12-20 00:47:02 +08:00
|
|
|
import com.yutou.qqbot.utlis.RedisTools;
|
2021-12-18 17:33:14 +08:00
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
|
2022-01-09 03:32:30 +08:00
|
|
|
import java.io.File;
|
|
|
|
|
2021-12-18 17:33:14 +08:00
|
|
|
@Controller
|
|
|
|
public class AppController {
|
|
|
|
@RequestMapping("/restart.do")
|
|
|
|
@ResponseBody
|
2021-12-20 00:47:02 +08:00
|
|
|
public String restart() {
|
|
|
|
AppTools.exec("cd /home/yutou/public/servier/qqbot && ./start.sh", null, true, false);
|
2021-12-18 17:33:14 +08:00
|
|
|
return "";
|
|
|
|
}
|
2021-12-20 00:47:02 +08:00
|
|
|
|
|
|
|
@ResponseBody
|
|
|
|
@RequestMapping("/door/set.do")
|
|
|
|
public String openDoor(String status) {
|
|
|
|
RedisTools.set("door", status);
|
|
|
|
return "1";
|
|
|
|
}
|
|
|
|
|
|
|
|
@ResponseBody
|
|
|
|
@RequestMapping("/door/get.do")
|
|
|
|
public String getDoor() {
|
|
|
|
if ("open".equals(RedisTools.get("door"))) {
|
|
|
|
RedisTools.set("door", "on");
|
|
|
|
return "1";
|
|
|
|
}
|
|
|
|
return "0";
|
|
|
|
}
|
|
|
|
|
|
|
|
@ResponseBody
|
|
|
|
@RequestMapping("/door/status.do")
|
|
|
|
public String getStatus() {
|
|
|
|
String status = RedisTools.get("door");
|
|
|
|
if ("open".equals(status)) {
|
|
|
|
return "0";
|
|
|
|
} else if ("on".equals(status)) {
|
2021-12-20 17:34:23 +08:00
|
|
|
return "2";
|
2022-01-09 03:32:30 +08:00
|
|
|
} else if ("over".equals(status)) {
|
|
|
|
RedisTools.set("door", "ready");
|
2021-12-20 00:47:02 +08:00
|
|
|
return "1";
|
|
|
|
}
|
|
|
|
return "-1";
|
|
|
|
}
|
2022-01-09 03:32:30 +08:00
|
|
|
|
|
|
|
@ResponseBody
|
|
|
|
@RequestMapping("/qq/send.do")
|
|
|
|
public String sendQQ(JSONObject json) {
|
|
|
|
File image = null;
|
|
|
|
String ret;
|
|
|
|
if (json.containsKey("image")) {
|
|
|
|
image = HttpTools.syncDownload(json.getString("image"), System.currentTimeMillis() + ".png");
|
|
|
|
}
|
|
|
|
if (image != null) {
|
|
|
|
ret = QQBotManager.getInstance().sendMessage(image, json.getLong("qq"), json.getString("message"));
|
|
|
|
|
|
|
|
} else {
|
|
|
|
ret = QQBotManager.getInstance().sendMessage(json.getLong("qq"), json.getString("message"));
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
2021-12-18 17:33:14 +08:00
|
|
|
}
|