代码拉取完成,页面将自动刷新
同步操作将从 Kevin2li/PDF-Guru 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
//go:build darwin || linux
package main
import (
"encoding/json"
"os"
"os/exec"
"path/filepath"
"github.com/pkg/errors"
)
type CmdOutput struct {
Status string `json:"status"`
Message string `json:"message"`
}
func GetCmdStatusAndMessage(cmd *exec.Cmd, cmdType string) error {
defer func() {
if err := recover(); err != nil {
logger.Fatalln(err)
}
}()
out, err := cmd.CombinedOutput()
if err != nil {
// err = errors.Wrap(err, "get cmd output error! \n args: "+strings.Join(cmd.Args, " ")+"\n stderr: "+string(err.(*exec.ExitError).Stderr))
err = errors.Wrap(err, "命令执行失败!"+string(out))
logger.Errorln("Error:", err)
return err
}
logger.Println(string(out))
if cmdType == "pdf" {
ret_path := filepath.Join(logdir, "cmd_output.json")
var ret CmdOutput
data, err := os.ReadFile(ret_path)
if err != nil {
err = errors.Wrap(err, "read cmd output file error")
return err
}
err = json.Unmarshal(data, &ret)
if err != nil {
err = errors.Wrap(err, "json umarshal error")
return err
}
if ret.Status != "success" {
logger.Errorf("Error: %v\n", ret.Message)
return errors.New(ret.Message)
}
}
return nil
}
func (a *App) cmdRunner(args []string, cmdType string) error {
config, err := a.LoadConfig()
if err != nil {
err = errors.Wrap(err, "")
return err
}
var cmd *exec.Cmd
if cmdType == "pdf" {
cmd = exec.Command(config.PdfPath, args...)
} else if cmdType == "python" {
err = a.CheckFileExists(config.PythonPath)
if err != nil {
return err
}
cmd = exec.Command(config.PythonPath, args...)
} else if cmdType == "pandoc" {
path := config.PandocPath
err = a.CheckFileExists(config.PandocPath)
if err != nil {
pandoc_path, err := exec.LookPath("pandoc.exe")
if err != nil {
err = errors.Wrap(err, "pandoc not found!")
return err
}
path = pandoc_path
}
cmd = exec.Command(path, args...)
} else if cmdType == "tesseract" {
path := config.TesseractPath
err = a.CheckFileExists(config.TesseractPath)
if err != nil {
tesseract_path, err := exec.LookPath("tesseract.exe")
if err != nil {
err = errors.Wrap(err, "tesseract not found!")
return err
}
path = tesseract_path
}
cmd = exec.Command(path, args...)
} else if cmdType == "hashcat" {
err = a.CheckFileExists(config.HashcatPath)
if err != nil {
err = errors.Wrap(err, "hashcat not found!")
return err
}
cmd = exec.Command(config.HashcatPath, args...)
} else {
err = errors.Wrap(err, "unsupport cmd type!")
return err
}
err = GetCmdStatusAndMessage(cmd, cmdType)
if err != nil {
err = errors.Wrap(err, "")
return err
}
return nil
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。