123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- package main
- import (
- "net/http"
- "os/exec"
- "runtime"
- "imuslab.com/arozos/mod/utils"
- )
- func HardwarePowerInit() {
- if *allow_power_management {
- //Only register these paths when hardware management is enabled
- http.HandleFunc("/system/power/shutdown", hardware_power_poweroff)
- http.HandleFunc("/system/power/restart", hardware_power_restart)
- //Register a power handler in system setting menu
- registerSetting(settingModule{
- Name: "Power",
- Desc: "Set the power state of the host device",
- IconPath: "SystemAO/boot/img/boot.png",
- Group: "Info",
- StartDir: "SystemAO/boot/poweroff.html",
- RequireAdmin: true,
- })
- }
- http.HandleFunc("/system/power/accessCheck", hardware_power_checkIfHardware)
- }
- func hardware_power_checkIfHardware(w http.ResponseWriter, r *http.Request) {
- if *allow_power_management {
- utils.SendJSONResponse(w, "true")
- } else {
- utils.SendJSONResponse(w, "false")
- }
- }
- func hardware_power_poweroff(w http.ResponseWriter, r *http.Request) {
- //validate password using authreq.html
- if !AuthValidateSecureRequest(w, r, true) {
- return
- }
- if runtime.GOOS == "windows" {
- //Only allow Linux to do power operation
- cmd := exec.Command("shutdown", "-s", "-t", "20")
- out, err := cmd.CombinedOutput()
- if err != nil {
- systemWideLogger.PrintAndLog("Power", string(out), err)
- utils.SendErrorResponse(w, string(out))
- }
- systemWideLogger.PrintAndLog("Power", string(out), nil)
- }
- if runtime.GOOS == "linux" {
- //Only allow Linux to do power operation
- cmd := exec.Command("/sbin/shutdown")
- out, err := cmd.CombinedOutput()
- if err != nil {
- systemWideLogger.PrintAndLog("Power", string(out), err)
- utils.SendErrorResponse(w, string(out))
- }
- systemWideLogger.PrintAndLog("Power", string(out), nil)
- }
- if runtime.GOOS == "darwin" {
- //Only allow Linux to do power operation
- cmd := exec.Command("sudo", "shutdown", "-h", "+1")
- out, err := cmd.CombinedOutput()
- if err != nil {
- systemWideLogger.PrintAndLog("Power", string(out), err)
- utils.SendErrorResponse(w, string(out))
- }
- systemWideLogger.PrintAndLog("Power", string(out), nil)
- }
- utils.SendOK(w)
- }
- func hardware_power_restart(w http.ResponseWriter, r *http.Request) {
- //Validate password using authreq.html
- if !AuthValidateSecureRequest(w, r, true) {
- return
- }
- if runtime.GOOS == "windows" {
- //Only allow Linux to do power operation
- cmd := exec.Command("shutdown", "-r", "-t", "20")
- out, err := cmd.CombinedOutput()
- if err != nil {
- systemWideLogger.PrintAndLog("Power", string(out), err)
- utils.SendErrorResponse(w, string(out))
- }
- systemWideLogger.PrintAndLog("Power", string(out), nil)
- }
- if runtime.GOOS == "linux" {
- //Only allow Linux to do power operation
- cmd := exec.Command("systemctl", "reboot")
- out, err := cmd.CombinedOutput()
- if err != nil {
- systemWideLogger.PrintAndLog("Power", string(out), err)
- utils.SendErrorResponse(w, string(out))
- }
- systemWideLogger.PrintAndLog("Power", string(out), nil)
- }
- if runtime.GOOS == "darwin" {
- //Only allow Linux to do power operation
- cmd := exec.Command("shutdown", "-r", "+1")
- out, err := cmd.CombinedOutput()
- if err != nil {
- systemWideLogger.PrintAndLog("Power", string(out), err)
- utils.SendErrorResponse(w, string(out))
- }
- systemWideLogger.PrintAndLog("Power", string(out), nil)
- }
- utils.SendOK(w)
- }
|