2014-09-12 13:10:58 +04:00
|
|
|
|
// 构建、运行、go tool 操作.
|
2014-08-18 17:45:43 +04:00
|
|
|
|
package output
|
|
|
|
|
|
|
|
|
|
import (
|
2014-10-23 10:44:06 +04:00
|
|
|
|
"bufio"
|
2014-08-18 17:45:43 +04:00
|
|
|
|
"encoding/json"
|
|
|
|
|
"io"
|
2014-10-23 11:02:33 +04:00
|
|
|
|
"io/ioutil"
|
2014-08-18 17:45:43 +04:00
|
|
|
|
"math/rand"
|
|
|
|
|
"net/http"
|
|
|
|
|
"os"
|
|
|
|
|
"os/exec"
|
2014-10-28 05:13:00 +03:00
|
|
|
|
"path/filepath"
|
2014-08-22 07:57:05 +04:00
|
|
|
|
"runtime"
|
2014-09-09 11:33:12 +04:00
|
|
|
|
"strconv"
|
2014-08-22 07:57:05 +04:00
|
|
|
|
"strings"
|
2014-09-16 11:06:52 +04:00
|
|
|
|
"time"
|
2014-09-08 07:37:34 +04:00
|
|
|
|
|
|
|
|
|
"github.com/b3log/wide/conf"
|
2014-10-22 17:03:34 +04:00
|
|
|
|
"github.com/b3log/wide/i18n"
|
2014-09-17 10:35:48 +04:00
|
|
|
|
"github.com/b3log/wide/session"
|
2014-09-08 07:37:34 +04:00
|
|
|
|
"github.com/b3log/wide/util"
|
|
|
|
|
"github.com/golang/glog"
|
|
|
|
|
"github.com/gorilla/websocket"
|
2014-08-18 17:45:43 +04:00
|
|
|
|
)
|
|
|
|
|
|
2014-09-26 13:36:12 +04:00
|
|
|
|
const (
|
|
|
|
|
lintSeverityError = "error" // Lint 严重级别:错误
|
|
|
|
|
lintSeverityWarn = "warning" // Lint 严重级别:警告
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
// 代码 Lint 结构.
|
|
|
|
|
type Lint struct {
|
|
|
|
|
File string `json:"file"`
|
|
|
|
|
LineNo int `json:"lineNo"`
|
|
|
|
|
Severity string `json:"severity"`
|
2014-10-28 04:12:32 +03:00
|
|
|
|
Msg string `json:"msg"`
|
2014-09-26 13:36:12 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-09-16 11:06:52 +04:00
|
|
|
|
// 建立输出通道.
|
2014-08-18 17:45:43 +04:00
|
|
|
|
func WSHandler(w http.ResponseWriter, r *http.Request) {
|
2014-09-17 06:54:57 +04:00
|
|
|
|
sid := r.URL.Query()["sid"][0]
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
2014-09-16 11:06:52 +04:00
|
|
|
|
conn, _ := websocket.Upgrade(w, r, nil, 1024, 1024)
|
|
|
|
|
wsChan := util.WSChannel{Sid: sid, Conn: conn, Request: r, Time: time.Now()}
|
|
|
|
|
|
2014-09-20 06:39:29 +04:00
|
|
|
|
session.OutputWS[sid] = &wsChan
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
|
|
|
|
ret := map[string]interface{}{"output": "Ouput initialized", "cmd": "init-output"}
|
2014-09-16 11:06:52 +04:00
|
|
|
|
wsChan.Conn.WriteJSON(&ret)
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
2014-09-20 06:39:29 +04:00
|
|
|
|
glog.V(4).Infof("Open a new [Output] with session [%s], %d", sid, len(session.OutputWS))
|
2014-08-18 17:45:43 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-09-12 13:10:58 +04:00
|
|
|
|
// 运行一个可执行文件.
|
2014-08-18 17:45:43 +04:00
|
|
|
|
func RunHandler(w http.ResponseWriter, r *http.Request) {
|
2014-09-01 16:50:51 +04:00
|
|
|
|
data := map[string]interface{}{"succ": true}
|
|
|
|
|
defer util.RetJSON(w, r, data)
|
|
|
|
|
|
2014-08-18 17:45:43 +04:00
|
|
|
|
var args map[string]interface{}
|
|
|
|
|
|
2014-10-27 18:02:15 +03:00
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(&args); err != nil {
|
2014-08-18 17:45:43 +04:00
|
|
|
|
glog.Error(err)
|
2014-09-01 16:50:51 +04:00
|
|
|
|
data["succ"] = false
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-17 06:54:57 +04:00
|
|
|
|
sid := args["sid"].(string)
|
2014-09-19 15:21:13 +04:00
|
|
|
|
wSession := session.WideSessions.Get(sid)
|
|
|
|
|
if nil == wSession {
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
2014-09-17 06:54:57 +04:00
|
|
|
|
|
2014-08-22 07:57:05 +04:00
|
|
|
|
filePath := args["executable"].(string)
|
2014-10-28 05:13:00 +03:00
|
|
|
|
curDir := filepath.Dir(filePath)
|
2014-08-22 07:57:05 +04:00
|
|
|
|
|
|
|
|
|
cmd := exec.Command(filePath)
|
|
|
|
|
cmd.Dir = curDir
|
|
|
|
|
|
|
|
|
|
stdout, err := cmd.StdoutPipe()
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
2014-09-01 16:50:51 +04:00
|
|
|
|
data["succ"] = false
|
2014-08-22 07:57:05 +04:00
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stderr, err := cmd.StderrPipe()
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
2014-09-01 16:50:51 +04:00
|
|
|
|
data["succ"] = false
|
2014-08-22 07:57:05 +04:00
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-23 10:44:06 +04:00
|
|
|
|
reader := bufio.NewReader(io.MultiReader(stdout, stderr))
|
2014-08-22 07:57:05 +04:00
|
|
|
|
|
2014-09-16 13:32:55 +04:00
|
|
|
|
if err := cmd.Start(); nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 添加到用户进程集中
|
2014-09-19 15:21:13 +04:00
|
|
|
|
processes.add(wSession, cmd.Process)
|
2014-08-22 07:57:05 +04:00
|
|
|
|
|
2014-08-22 11:37:26 +04:00
|
|
|
|
channelRet := map[string]interface{}{}
|
2014-09-16 13:32:55 +04:00
|
|
|
|
channelRet["pid"] = cmd.Process.Pid
|
2014-08-22 07:57:05 +04:00
|
|
|
|
|
|
|
|
|
go func(runningId int) {
|
2014-09-26 13:36:12 +04:00
|
|
|
|
defer util.Recover()
|
2014-10-16 06:39:09 +04:00
|
|
|
|
defer cmd.Wait()
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-09-08 07:37:34 +04:00
|
|
|
|
glog.V(3).Infof("Session [%s] is running [id=%d, file=%s]", sid, runningId, filePath)
|
2014-08-22 07:57:05 +04:00
|
|
|
|
|
2014-10-22 12:42:03 +04:00
|
|
|
|
// 在读取程序输出前先返回一次,使前端获取到 run 状态与 pid
|
2014-10-16 06:39:09 +04:00
|
|
|
|
if nil != session.OutputWS[sid] {
|
|
|
|
|
wsChannel := session.OutputWS[sid]
|
|
|
|
|
|
|
|
|
|
channelRet["cmd"] = "run"
|
|
|
|
|
channelRet["output"] = ""
|
|
|
|
|
err := wsChannel.Conn.WriteJSON(&channelRet)
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 更新通道最近使用时间
|
|
|
|
|
wsChannel.Time = time.Now()
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 07:57:05 +04:00
|
|
|
|
for {
|
2014-10-23 10:44:06 +04:00
|
|
|
|
buf, err := reader.ReadBytes('\n')
|
2014-08-22 07:57:05 +04:00
|
|
|
|
|
2014-10-23 10:44:06 +04:00
|
|
|
|
if nil != err || 0 == len(buf) {
|
2014-09-23 05:45:56 +04:00
|
|
|
|
// 从用户进程集中移除这个执行完毕(或是被主动停止)的进程
|
2014-09-19 15:21:13 +04:00
|
|
|
|
processes.remove(wSession, cmd.Process)
|
2014-09-16 13:32:55 +04:00
|
|
|
|
|
2014-09-08 07:37:34 +04:00
|
|
|
|
glog.V(3).Infof("Session [%s] 's running [id=%d, file=%s] has done", sid, runningId, filePath)
|
2014-08-22 07:57:05 +04:00
|
|
|
|
|
2014-09-20 06:39:29 +04:00
|
|
|
|
if nil != session.OutputWS[sid] {
|
|
|
|
|
wsChannel := session.OutputWS[sid]
|
2014-09-16 13:32:55 +04:00
|
|
|
|
|
|
|
|
|
channelRet["cmd"] = "run-done"
|
2014-10-23 10:44:06 +04:00
|
|
|
|
channelRet["output"] = "<pre>" + string(buf) + "</pre>"
|
2014-09-16 13:32:55 +04:00
|
|
|
|
err := wsChannel.Conn.WriteJSON(&channelRet)
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 更新通道最近使用时间
|
|
|
|
|
wsChannel.Time = time.Now()
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 07:57:05 +04:00
|
|
|
|
break
|
|
|
|
|
} else {
|
2014-09-20 06:39:29 +04:00
|
|
|
|
if nil != session.OutputWS[sid] {
|
|
|
|
|
wsChannel := session.OutputWS[sid]
|
2014-09-16 11:06:52 +04:00
|
|
|
|
|
2014-09-16 13:32:55 +04:00
|
|
|
|
channelRet["cmd"] = "run"
|
2014-10-23 10:44:06 +04:00
|
|
|
|
channelRet["output"] = "<pre>" + string(buf) + "</pre>"
|
2014-09-16 11:06:52 +04:00
|
|
|
|
err := wsChannel.Conn.WriteJSON(&channelRet)
|
2014-08-22 07:57:05 +04:00
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
break
|
|
|
|
|
}
|
2014-09-16 11:11:14 +04:00
|
|
|
|
|
|
|
|
|
// 更新通道最近使用时间
|
|
|
|
|
wsChannel.Time = time.Now()
|
2014-08-22 07:57:05 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}(rand.Int())
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-12 13:10:58 +04:00
|
|
|
|
// 构建可执行文件.
|
2014-08-22 07:57:05 +04:00
|
|
|
|
func BuildHandler(w http.ResponseWriter, r *http.Request) {
|
2014-09-01 16:50:51 +04:00
|
|
|
|
data := map[string]interface{}{"succ": true}
|
|
|
|
|
defer util.RetJSON(w, r, data)
|
|
|
|
|
|
2014-09-17 10:35:48 +04:00
|
|
|
|
httpSession, _ := session.HTTPSession.Get(r, "wide-session")
|
2014-09-17 06:54:57 +04:00
|
|
|
|
username := httpSession.Values["username"].(string)
|
2014-10-23 17:43:35 +04:00
|
|
|
|
locale := conf.Wide.GetUser(username).Locale
|
2014-08-22 07:57:05 +04:00
|
|
|
|
|
|
|
|
|
var args map[string]interface{}
|
|
|
|
|
|
2014-10-27 18:02:15 +03:00
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(&args); err != nil {
|
2014-08-22 07:57:05 +04:00
|
|
|
|
glog.Error(err)
|
2014-09-01 16:50:51 +04:00
|
|
|
|
data["succ"] = false
|
2014-08-22 07:57:05 +04:00
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-17 06:54:57 +04:00
|
|
|
|
sid := args["sid"].(string)
|
|
|
|
|
|
2014-08-18 17:45:43 +04:00
|
|
|
|
filePath := args["file"].(string)
|
2014-10-28 05:13:00 +03:00
|
|
|
|
curDir := filepath.Dir(filePath)
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
|
|
|
|
fout, err := os.Create(filePath)
|
|
|
|
|
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
2014-09-01 16:50:51 +04:00
|
|
|
|
data["succ"] = false
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
code := args["code"].(string)
|
|
|
|
|
|
|
|
|
|
fout.WriteString(code)
|
|
|
|
|
|
|
|
|
|
if err := fout.Close(); nil != err {
|
|
|
|
|
glog.Error(err)
|
2014-09-01 16:50:51 +04:00
|
|
|
|
data["succ"] = false
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2014-08-22 07:57:05 +04:00
|
|
|
|
suffix := ""
|
2014-10-26 10:41:34 +03:00
|
|
|
|
if util.OS.IsWindows() {
|
2014-08-22 07:57:05 +04:00
|
|
|
|
suffix = ".exe"
|
|
|
|
|
}
|
|
|
|
|
executable := "main" + suffix
|
2014-10-16 05:53:22 +04:00
|
|
|
|
argv := []string{"build", "-o", executable}
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
|
|
|
|
cmd := exec.Command("go", argv...)
|
2014-08-22 07:57:05 +04:00
|
|
|
|
cmd.Dir = curDir
|
|
|
|
|
|
2014-09-02 20:26:10 +04:00
|
|
|
|
setCmdEnv(cmd, username)
|
2014-08-28 06:19:00 +04:00
|
|
|
|
|
2014-10-16 05:53:22 +04:00
|
|
|
|
glog.V(5).Infof("go build -o %s", executable)
|
2014-08-22 11:37:26 +04:00
|
|
|
|
|
2014-10-28 05:13:00 +03:00
|
|
|
|
executable = filepath.Join(curDir, executable)
|
2014-08-22 11:37:26 +04:00
|
|
|
|
|
|
|
|
|
// 先把可执行文件删了
|
2014-09-01 16:50:51 +04:00
|
|
|
|
err = os.RemoveAll(executable)
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Info(err)
|
|
|
|
|
data["succ"] = false
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
2014-09-01 16:50:51 +04:00
|
|
|
|
return
|
|
|
|
|
}
|
2014-09-01 14:55:11 +04:00
|
|
|
|
|
2014-08-18 17:45:43 +04:00
|
|
|
|
stdout, err := cmd.StdoutPipe()
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
2014-09-01 14:55:11 +04:00
|
|
|
|
data["succ"] = false
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stderr, err := cmd.StderrPipe()
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
2014-09-01 14:55:11 +04:00
|
|
|
|
data["succ"] = false
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
if !data["succ"].(bool) {
|
|
|
|
|
return
|
|
|
|
|
}
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
channelRet := map[string]interface{}{}
|
|
|
|
|
|
|
|
|
|
if nil != session.OutputWS[sid] {
|
|
|
|
|
// 在前端 output 中显示“开始构建”
|
|
|
|
|
|
2014-10-23 17:43:35 +04:00
|
|
|
|
channelRet["output"] = "<span class='start-build'>" + i18n.Get(locale, "start-build").(string) + "</span>\n"
|
2014-10-22 17:41:14 +04:00
|
|
|
|
channelRet["cmd"] = "start-build"
|
2014-09-16 13:32:55 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
wsChannel := session.OutputWS[sid]
|
|
|
|
|
|
|
|
|
|
err := wsChannel.Conn.WriteJSON(&channelRet)
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
2014-09-16 13:32:55 +04:00
|
|
|
|
return
|
|
|
|
|
}
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
// 更新通道最近使用时间
|
|
|
|
|
wsChannel.Time = time.Now()
|
|
|
|
|
}
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-10-23 11:02:33 +04:00
|
|
|
|
reader := bufio.NewReader(io.MultiReader(stdout, stderr))
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
if err := cmd.Start(); nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
return
|
|
|
|
|
}
|
2014-09-09 11:33:12 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
go func(runningId int) {
|
|
|
|
|
defer util.Recover()
|
|
|
|
|
defer cmd.Wait()
|
2014-09-16 18:39:22 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
glog.V(3).Infof("Session [%s] is building [id=%d, dir=%s]", sid, runningId, curDir)
|
2014-09-04 19:48:49 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
// 一次性读取
|
2014-10-23 11:02:33 +04:00
|
|
|
|
buf, _ := ioutil.ReadAll(reader)
|
2014-09-04 19:48:49 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
channelRet := map[string]interface{}{}
|
|
|
|
|
channelRet["cmd"] = "build"
|
|
|
|
|
channelRet["executable"] = executable
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-10-23 11:02:33 +04:00
|
|
|
|
if 0 == len(buf) { // 说明构建成功,没有错误信息输出
|
2014-10-23 10:01:10 +04:00
|
|
|
|
// 设置下一次执行命令(前端会根据该参数发送请求)
|
2014-10-22 13:47:53 +04:00
|
|
|
|
channelRet["nextCmd"] = args["nextCmd"]
|
2014-10-23 17:43:35 +04:00
|
|
|
|
channelRet["output"] = "<span class='build-succ'>" + i18n.Get(locale, "build-succ").(string) + "</span>\n"
|
2014-09-09 09:53:25 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
go func() { // 运行 go install,生成的库用于 gocode lib-path
|
|
|
|
|
cmd := exec.Command("go", "install")
|
|
|
|
|
cmd.Dir = curDir
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
setCmdEnv(cmd, username)
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
out, _ := cmd.CombinedOutput()
|
|
|
|
|
if len(out) > 0 {
|
|
|
|
|
glog.Warning(string(out))
|
|
|
|
|
}
|
|
|
|
|
}()
|
|
|
|
|
} else { // 构建失败
|
|
|
|
|
// 解析错误信息,返回给编辑器 gutter lint
|
2014-10-23 11:02:33 +04:00
|
|
|
|
errOut := string(buf)
|
2014-10-27 18:58:10 +03:00
|
|
|
|
channelRet["output"] = "<span class='build-error'>" + i18n.Get(locale, "build-error").(string) + "</span>\n" + errOut
|
2014-10-22 13:55:22 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
lines := strings.Split(errOut, "\n")
|
|
|
|
|
|
|
|
|
|
if lines[0][0] == '#' {
|
|
|
|
|
lines = lines[1:] // 跳过第一行
|
|
|
|
|
}
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
lints := []*Lint{}
|
|
|
|
|
|
|
|
|
|
for _, line := range lines {
|
|
|
|
|
if len(line) < 1 {
|
|
|
|
|
continue
|
|
|
|
|
}
|
2014-09-04 19:48:49 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
if line[0] == '\t' {
|
|
|
|
|
// 添加到上一个 lint 中
|
|
|
|
|
last := len(lints)
|
|
|
|
|
msg := lints[last-1].Msg
|
|
|
|
|
msg += line
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
lints[last-1].Msg = msg
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
continue
|
2014-09-09 11:33:12 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
file := line[:strings.Index(line, ":")]
|
|
|
|
|
left := line[strings.Index(line, ":")+1:]
|
2014-10-28 04:12:32 +03:00
|
|
|
|
index := strings.Index(left, ":")
|
2014-10-28 04:16:42 +03:00
|
|
|
|
lineNo := 0
|
2014-10-28 04:12:32 +03:00
|
|
|
|
msg := left
|
|
|
|
|
if index >= 0 {
|
|
|
|
|
lineNo, _ = strconv.Atoi(left[:index])
|
|
|
|
|
msg = left[index+2:]
|
|
|
|
|
}
|
2014-10-22 13:47:53 +04:00
|
|
|
|
|
|
|
|
|
lint := &Lint{
|
|
|
|
|
File: file,
|
|
|
|
|
LineNo: lineNo - 1,
|
|
|
|
|
Severity: lintSeverityError,
|
|
|
|
|
Msg: msg,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lints = append(lints, lint)
|
2014-09-09 11:33:12 +04:00
|
|
|
|
}
|
2014-08-18 17:45:43 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
channelRet["lints"] = lints
|
|
|
|
|
}
|
2014-08-22 07:57:05 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
if nil != session.OutputWS[sid] {
|
|
|
|
|
glog.V(3).Infof("Session [%s] 's build [id=%d, dir=%s] has done", sid, runningId, curDir)
|
2014-09-16 11:11:14 +04:00
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
wsChannel := session.OutputWS[sid]
|
|
|
|
|
err := wsChannel.Conn.WriteJSON(&channelRet)
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
2014-08-18 17:45:43 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-22 13:47:53 +04:00
|
|
|
|
// 更新通道最近使用时间
|
|
|
|
|
wsChannel.Time = time.Now()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}(rand.Int())
|
2014-08-18 17:45:43 +04:00
|
|
|
|
}
|
2014-08-28 06:19:00 +04:00
|
|
|
|
|
2014-10-27 18:02:15 +03:00
|
|
|
|
// go test.
|
|
|
|
|
func GoTestHandler(w http.ResponseWriter, r *http.Request) {
|
2014-09-09 13:01:22 +04:00
|
|
|
|
data := map[string]interface{}{"succ": true}
|
|
|
|
|
defer util.RetJSON(w, r, data)
|
|
|
|
|
|
2014-09-17 10:35:48 +04:00
|
|
|
|
httpSession, _ := session.HTTPSession.Get(r, "wide-session")
|
2014-09-17 06:54:57 +04:00
|
|
|
|
username := httpSession.Values["username"].(string)
|
2014-10-23 17:43:35 +04:00
|
|
|
|
locale := conf.Wide.GetUser(username).Locale
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
|
|
|
|
var args map[string]interface{}
|
|
|
|
|
|
2014-10-27 18:02:15 +03:00
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(&args); err != nil {
|
2014-09-09 13:01:22 +04:00
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-17 06:54:57 +04:00
|
|
|
|
sid := args["sid"].(string)
|
|
|
|
|
|
2014-09-09 13:01:22 +04:00
|
|
|
|
filePath := args["file"].(string)
|
2014-10-28 05:13:00 +03:00
|
|
|
|
curDir := filepath.Dir(filePath)
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-27 18:02:15 +03:00
|
|
|
|
cmd := exec.Command("go", "test", "-v")
|
|
|
|
|
cmd.Dir = curDir
|
|
|
|
|
|
|
|
|
|
setCmdEnv(cmd, username)
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-27 18:02:15 +03:00
|
|
|
|
stdout, err := cmd.StdoutPipe()
|
2014-09-09 13:01:22 +04:00
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-27 18:02:15 +03:00
|
|
|
|
stderr, err := cmd.StderrPipe()
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-27 18:02:15 +03:00
|
|
|
|
return
|
|
|
|
|
}
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-27 18:02:15 +03:00
|
|
|
|
if !data["succ"].(bool) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
channelRet := map[string]interface{}{}
|
|
|
|
|
|
|
|
|
|
if nil != session.OutputWS[sid] {
|
|
|
|
|
// 在前端 output 中显示“开始 go test
|
|
|
|
|
|
|
|
|
|
channelRet["output"] = "<span class='start-test'>" + i18n.Get(locale, "start-test").(string) + "</span>\n"
|
|
|
|
|
channelRet["cmd"] = "start-test"
|
|
|
|
|
|
|
|
|
|
wsChannel := session.OutputWS[sid]
|
|
|
|
|
|
|
|
|
|
err := wsChannel.Conn.WriteJSON(&channelRet)
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 更新通道最近使用时间
|
|
|
|
|
wsChannel.Time = time.Now()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
reader := bufio.NewReader(io.MultiReader(stdout, stderr))
|
|
|
|
|
|
|
|
|
|
if err := cmd.Start(); nil != err {
|
2014-09-09 13:01:22 +04:00
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-27 18:02:15 +03:00
|
|
|
|
go func(runningId int) {
|
|
|
|
|
defer util.Recover()
|
|
|
|
|
|
|
|
|
|
glog.V(3).Infof("Session [%s] is running [go test] [runningId=%d]", sid, runningId)
|
|
|
|
|
|
|
|
|
|
channelRet := map[string]interface{}{}
|
|
|
|
|
channelRet["cmd"] = "go test"
|
|
|
|
|
|
|
|
|
|
// 一次性读取
|
|
|
|
|
buf, _ := ioutil.ReadAll(reader)
|
|
|
|
|
|
|
|
|
|
// 同步点,等待 go test 执行完成
|
|
|
|
|
cmd.Wait()
|
|
|
|
|
|
|
|
|
|
if !cmd.ProcessState.Success() {
|
|
|
|
|
glog.V(3).Infof("Session [%s] 's running [go test] [runningId=%d] has done (with error)", sid, runningId)
|
|
|
|
|
|
2014-10-27 18:58:10 +03:00
|
|
|
|
channelRet["output"] = "<span class='test-error'>" + i18n.Get(locale, "test-error").(string) + "</span>\n" + string(buf)
|
2014-10-27 18:02:15 +03:00
|
|
|
|
} else {
|
|
|
|
|
glog.V(3).Infof("Session [%s] 's running [go test] [runningId=%d] has done", sid, runningId)
|
|
|
|
|
|
|
|
|
|
channelRet["output"] = "<span class='test-succ'>" + i18n.Get(locale, "test-succ").(string) + "</span>\n" + string(buf)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if nil != session.OutputWS[sid] {
|
|
|
|
|
wsChannel := session.OutputWS[sid]
|
|
|
|
|
|
|
|
|
|
err := wsChannel.Conn.WriteJSON(&channelRet)
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 更新通道最近使用时间
|
|
|
|
|
wsChannel.Time = time.Now()
|
|
|
|
|
}
|
|
|
|
|
}(rand.Int())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// go install.
|
|
|
|
|
func GoInstallHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
data := map[string]interface{}{"succ": true}
|
|
|
|
|
defer util.RetJSON(w, r, data)
|
|
|
|
|
|
|
|
|
|
httpSession, _ := session.HTTPSession.Get(r, "wide-session")
|
|
|
|
|
username := httpSession.Values["username"].(string)
|
|
|
|
|
locale := conf.Wide.GetUser(username).Locale
|
|
|
|
|
|
|
|
|
|
var args map[string]interface{}
|
|
|
|
|
|
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(&args); err != nil {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sid := args["sid"].(string)
|
|
|
|
|
|
|
|
|
|
filePath := args["file"].(string)
|
2014-10-28 05:13:00 +03:00
|
|
|
|
curDir := filepath.Dir(filePath)
|
2014-10-27 18:02:15 +03:00
|
|
|
|
|
2014-09-09 13:01:22 +04:00
|
|
|
|
cmd := exec.Command("go", "install")
|
|
|
|
|
cmd.Dir = curDir
|
|
|
|
|
|
|
|
|
|
setCmdEnv(cmd, username)
|
|
|
|
|
|
|
|
|
|
glog.V(5).Infof("go install %s", curDir)
|
|
|
|
|
|
|
|
|
|
stdout, err := cmd.StdoutPipe()
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stderr, err := cmd.StderrPipe()
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
if !data["succ"].(bool) {
|
|
|
|
|
return
|
|
|
|
|
}
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
channelRet := map[string]interface{}{}
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
if nil != session.OutputWS[sid] {
|
2014-10-22 18:35:14 +04:00
|
|
|
|
// 在前端 output 中显示“开始 go install”
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-10-23 17:43:35 +04:00
|
|
|
|
channelRet["output"] = "<span class='start-install'>" + i18n.Get(locale, "start-install").(string) + "</span>\n"
|
2014-10-22 17:57:21 +04:00
|
|
|
|
channelRet["cmd"] = "start-install"
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
wsChannel := session.OutputWS[sid]
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
err := wsChannel.Conn.WriteJSON(&channelRet)
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
// 更新通道最近使用时间
|
|
|
|
|
wsChannel.Time = time.Now()
|
|
|
|
|
}
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-10-23 11:22:15 +04:00
|
|
|
|
reader := bufio.NewReader(io.MultiReader(stdout, stderr))
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
if err := cmd.Start(); nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
return
|
|
|
|
|
}
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
go func(runningId int) {
|
|
|
|
|
defer util.Recover()
|
|
|
|
|
defer cmd.Wait()
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
glog.V(3).Infof("Session [%s] is running [go install] [id=%d, dir=%s]", sid, runningId, curDir)
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-10-23 11:22:15 +04:00
|
|
|
|
// 一次性读取
|
|
|
|
|
buf, _ := ioutil.ReadAll(reader)
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
channelRet := map[string]interface{}{}
|
|
|
|
|
channelRet["cmd"] = "go install"
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-23 11:22:15 +04:00
|
|
|
|
if 0 != len(buf) { // 构建失败
|
2014-10-22 17:57:21 +04:00
|
|
|
|
// 解析错误信息,返回给编辑器 gutter lint
|
2014-10-23 11:22:15 +04:00
|
|
|
|
errOut := string(buf)
|
2014-10-22 17:57:21 +04:00
|
|
|
|
lines := strings.Split(errOut, "\n")
|
|
|
|
|
|
|
|
|
|
if lines[0][0] == '#' {
|
|
|
|
|
lines = lines[1:] // 跳过第一行
|
2014-09-09 13:01:22 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
lints := []*Lint{}
|
2014-09-09 13:01:22 +04:00
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
for _, line := range lines {
|
|
|
|
|
if len(line) < 1 {
|
|
|
|
|
continue
|
2014-09-09 13:01:22 +04:00
|
|
|
|
}
|
2014-09-16 11:11:14 +04:00
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
if line[0] == '\t' {
|
|
|
|
|
// 添加到上一个 lint 中
|
|
|
|
|
last := len(lints)
|
|
|
|
|
msg := lints[last-1].Msg
|
|
|
|
|
msg += line
|
|
|
|
|
|
|
|
|
|
lints[last-1].Msg = msg
|
|
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
file := line[:strings.Index(line, ":")]
|
|
|
|
|
left := line[strings.Index(line, ":")+1:]
|
2014-10-28 04:12:32 +03:00
|
|
|
|
index := strings.Index(left, ":")
|
2014-10-28 04:16:42 +03:00
|
|
|
|
lineNo := 0
|
2014-10-28 04:12:32 +03:00
|
|
|
|
msg := left
|
|
|
|
|
if index >= 0 {
|
|
|
|
|
lineNo, _ = strconv.Atoi(left[:index])
|
|
|
|
|
msg = left[index+2:]
|
|
|
|
|
}
|
2014-10-22 17:57:21 +04:00
|
|
|
|
|
|
|
|
|
lint := &Lint{
|
|
|
|
|
File: file,
|
|
|
|
|
LineNo: lineNo - 1,
|
|
|
|
|
Severity: lintSeverityError,
|
|
|
|
|
Msg: msg,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
lints = append(lints, lint)
|
2014-09-09 13:01:22 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-22 17:57:21 +04:00
|
|
|
|
channelRet["lints"] = lints
|
|
|
|
|
|
2014-10-27 18:58:10 +03:00
|
|
|
|
channelRet["output"] = "<span class='install-error'>" + i18n.Get(locale, "install-error").(string) + "</span>\n" + errOut
|
2014-10-22 17:57:21 +04:00
|
|
|
|
} else {
|
2014-10-23 17:43:35 +04:00
|
|
|
|
channelRet["output"] = "<span class='install-succ'>" + i18n.Get(locale, "install-succ").(string) + "</span>\n"
|
2014-10-22 17:57:21 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if nil != session.OutputWS[sid] {
|
|
|
|
|
glog.V(3).Infof("Session [%s] 's running [go install] [id=%d, dir=%s] has done", sid, runningId, curDir)
|
|
|
|
|
|
|
|
|
|
wsChannel := session.OutputWS[sid]
|
|
|
|
|
err := wsChannel.Conn.WriteJSON(&channelRet)
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 更新通道最近使用时间
|
|
|
|
|
wsChannel.Time = time.Now()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}(rand.Int())
|
2014-09-09 13:01:22 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-09-12 13:10:58 +04:00
|
|
|
|
// go get.
|
2014-09-05 08:18:50 +04:00
|
|
|
|
func GoGetHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
data := map[string]interface{}{"succ": true}
|
|
|
|
|
defer util.RetJSON(w, r, data)
|
|
|
|
|
|
2014-09-17 10:35:48 +04:00
|
|
|
|
httpSession, _ := session.HTTPSession.Get(r, "wide-session")
|
2014-09-17 06:54:57 +04:00
|
|
|
|
username := httpSession.Values["username"].(string)
|
2014-10-23 17:43:35 +04:00
|
|
|
|
locale := conf.Wide.GetUser(username).Locale
|
2014-09-05 08:18:50 +04:00
|
|
|
|
|
|
|
|
|
var args map[string]interface{}
|
|
|
|
|
|
2014-10-27 18:02:15 +03:00
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(&args); err != nil {
|
2014-09-05 08:18:50 +04:00
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-17 06:54:57 +04:00
|
|
|
|
sid := args["sid"].(string)
|
|
|
|
|
|
2014-09-05 08:18:50 +04:00
|
|
|
|
filePath := args["file"].(string)
|
2014-10-28 05:13:00 +03:00
|
|
|
|
curDir := filepath.Dir(filePath)
|
2014-09-05 08:18:50 +04:00
|
|
|
|
|
|
|
|
|
cmd := exec.Command("go", "get")
|
|
|
|
|
cmd.Dir = curDir
|
|
|
|
|
|
|
|
|
|
setCmdEnv(cmd, username)
|
|
|
|
|
|
|
|
|
|
stdout, err := cmd.StdoutPipe()
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
stderr, err := cmd.StderrPipe()
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-22 18:35:14 +04:00
|
|
|
|
if !data["succ"].(bool) {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
channelRet := map[string]interface{}{}
|
|
|
|
|
|
|
|
|
|
if nil != session.OutputWS[sid] {
|
|
|
|
|
// 在前端 output 中显示“开始 go get
|
|
|
|
|
|
2014-10-23 17:43:35 +04:00
|
|
|
|
channelRet["output"] = "<span class='start-get'>" + i18n.Get(locale, "start-get").(string) + "</span>\n"
|
2014-10-22 18:35:14 +04:00
|
|
|
|
channelRet["cmd"] = "start-get"
|
|
|
|
|
|
|
|
|
|
wsChannel := session.OutputWS[sid]
|
|
|
|
|
|
|
|
|
|
err := wsChannel.Conn.WriteJSON(&channelRet)
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 更新通道最近使用时间
|
|
|
|
|
wsChannel.Time = time.Now()
|
|
|
|
|
}
|
|
|
|
|
|
2014-10-23 11:22:15 +04:00
|
|
|
|
reader := bufio.NewReader(io.MultiReader(stdout, stderr))
|
2014-09-05 08:18:50 +04:00
|
|
|
|
|
2014-10-22 18:35:14 +04:00
|
|
|
|
if err := cmd.Start(); nil != err {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
2014-09-05 08:18:50 +04:00
|
|
|
|
|
2014-10-22 18:35:14 +04:00
|
|
|
|
return
|
|
|
|
|
}
|
2014-09-05 08:18:50 +04:00
|
|
|
|
|
|
|
|
|
go func(runningId int) {
|
2014-09-26 13:36:12 +04:00
|
|
|
|
defer util.Recover()
|
2014-09-30 13:00:51 +04:00
|
|
|
|
defer cmd.Wait()
|
2014-09-26 13:36:12 +04:00
|
|
|
|
|
2014-09-08 07:37:34 +04:00
|
|
|
|
glog.V(3).Infof("Session [%s] is running [go get] [runningId=%d]", sid, runningId)
|
2014-09-05 08:18:50 +04:00
|
|
|
|
|
2014-10-22 18:35:14 +04:00
|
|
|
|
channelRet := map[string]interface{}{}
|
|
|
|
|
channelRet["cmd"] = "go get"
|
|
|
|
|
|
2014-10-23 12:05:21 +04:00
|
|
|
|
// 一次性读取
|
|
|
|
|
buf, _ := ioutil.ReadAll(reader)
|
2014-10-22 18:35:14 +04:00
|
|
|
|
|
2014-10-23 12:05:21 +04:00
|
|
|
|
if 0 != len(buf) {
|
|
|
|
|
glog.V(3).Infof("Session [%s] 's running [go get] [runningId=%d] has done (with error)", sid, runningId)
|
2014-10-22 18:35:14 +04:00
|
|
|
|
|
2014-10-27 18:58:10 +03:00
|
|
|
|
channelRet["output"] = "<span class='get-error'>" + i18n.Get(locale, "get-error").(string) + "</span>\n" + string(buf)
|
2014-10-23 12:05:21 +04:00
|
|
|
|
} else {
|
|
|
|
|
glog.V(3).Infof("Session [%s] 's running [go get] [runningId=%d] has done", sid, runningId)
|
2014-09-05 08:18:50 +04:00
|
|
|
|
|
2014-10-23 17:43:35 +04:00
|
|
|
|
channelRet["output"] = "<span class='get-succ'>" + i18n.Get(locale, "get-succ").(string) + "</span>\n"
|
2014-09-16 11:06:52 +04:00
|
|
|
|
|
2014-10-23 12:05:21 +04:00
|
|
|
|
}
|
2014-09-16 11:11:14 +04:00
|
|
|
|
|
2014-10-23 12:05:21 +04:00
|
|
|
|
if nil != session.OutputWS[sid] {
|
|
|
|
|
wsChannel := session.OutputWS[sid]
|
2014-10-22 18:35:14 +04:00
|
|
|
|
|
2014-10-23 12:05:21 +04:00
|
|
|
|
err := wsChannel.Conn.WriteJSON(&channelRet)
|
|
|
|
|
if nil != err {
|
|
|
|
|
glog.Error(err)
|
2014-10-22 18:35:14 +04:00
|
|
|
|
}
|
|
|
|
|
|
2014-10-23 12:05:21 +04:00
|
|
|
|
// 更新通道最近使用时间
|
|
|
|
|
wsChannel.Time = time.Now()
|
2014-09-05 08:18:50 +04:00
|
|
|
|
}
|
|
|
|
|
}(rand.Int())
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-22 13:44:07 +04:00
|
|
|
|
// 结束正在运行的进程.
|
|
|
|
|
func StopHandler(w http.ResponseWriter, r *http.Request) {
|
|
|
|
|
data := map[string]interface{}{"succ": true}
|
|
|
|
|
defer util.RetJSON(w, r, data)
|
|
|
|
|
|
|
|
|
|
var args map[string]interface{}
|
|
|
|
|
if err := json.NewDecoder(r.Body).Decode(&args); err != nil {
|
|
|
|
|
glog.Error(err)
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
sid := args["sid"].(string)
|
2014-09-23 05:45:56 +04:00
|
|
|
|
pid := int(args["pid"].(float64))
|
2014-09-22 13:44:07 +04:00
|
|
|
|
|
|
|
|
|
wSession := session.WideSessions.Get(sid)
|
|
|
|
|
if nil == wSession {
|
|
|
|
|
data["succ"] = false
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
processes.kill(wSession, pid)
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-02 20:26:10 +04:00
|
|
|
|
func setCmdEnv(cmd *exec.Cmd, username string) {
|
2014-09-05 07:24:53 +04:00
|
|
|
|
userWorkspace := conf.Wide.GetUserWorkspace(username)
|
2014-10-21 06:25:45 +04:00
|
|
|
|
masterWorkspace := conf.Wide.GetWorkspace()
|
2014-09-02 20:26:10 +04:00
|
|
|
|
|
|
|
|
|
cmd.Env = append(cmd.Env,
|
2014-10-28 07:06:50 +03:00
|
|
|
|
"GOPATH="+userWorkspace+conf.PathListSeparator+masterWorkspace,
|
2014-09-04 19:48:49 +04:00
|
|
|
|
"GOOS="+runtime.GOOS,
|
|
|
|
|
"GOARCH="+runtime.GOARCH,
|
2014-09-05 08:18:50 +04:00
|
|
|
|
"GOROOT="+runtime.GOROOT(),
|
|
|
|
|
"PATH="+os.Getenv("PATH"))
|
2014-08-28 06:19:00 +04:00
|
|
|
|
}
|