2022-11-20 14:11:47 +00:00
|
|
|
|
package dependencies
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"bytes"
|
|
|
|
|
"context"
|
|
|
|
|
"fmt"
|
|
|
|
|
"github.com/huoxue1/qinglong-go/models"
|
|
|
|
|
"github.com/huoxue1/qinglong-go/utils"
|
|
|
|
|
"io"
|
|
|
|
|
"strings"
|
|
|
|
|
"time"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func AddDep(dep *models.Dependences) {
|
|
|
|
|
if dep.Type == models.NODE {
|
|
|
|
|
addNodeDep(dep)
|
2023-01-10 12:43:28 +00:00
|
|
|
|
} else if dep.Type == models.PYTHON {
|
|
|
|
|
addPythonDep(dep)
|
2022-11-20 14:11:47 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func addNodeDep(dep *models.Dependences) {
|
|
|
|
|
log := ""
|
|
|
|
|
buffer := bytes.NewBufferString(log)
|
|
|
|
|
ctx := context.WithValue(context.Background(), "cancel", make(chan int, 1))
|
|
|
|
|
now := time.Now()
|
|
|
|
|
utils.RunTask(ctx, fmt.Sprintf("yarn add %s", dep.Name), map[string]string{}, func(ctx context.Context) {
|
|
|
|
|
writer := ctx.Value("log").(io.Writer)
|
|
|
|
|
writer.Write([]byte(fmt.Sprintf("##开始执行.. %s\n\n", now.Format("2006-01-02 15:04:05"))))
|
|
|
|
|
}, func(ctx context.Context) {
|
|
|
|
|
writer := ctx.Value("log").(io.Writer)
|
|
|
|
|
writer.Write([]byte(fmt.Sprintf("\n##执行结束.. %s,耗时%.1f秒\n\n", time.Now().Format("2006-01-02 15:04:05"), time.Now().Sub(now).Seconds())))
|
|
|
|
|
dep.Status = 1
|
|
|
|
|
var logs []string
|
|
|
|
|
for _, i2 := range strings.Split(buffer.String(), "\n") {
|
|
|
|
|
logs = append(logs, i2+"\n\n")
|
|
|
|
|
}
|
|
|
|
|
dep.Log = logs
|
|
|
|
|
models.AddDependences(dep)
|
|
|
|
|
}, buffer)
|
|
|
|
|
}
|
2023-01-10 12:43:28 +00:00
|
|
|
|
|
|
|
|
|
func addPythonDep(dep *models.Dependences) {
|
|
|
|
|
log := ""
|
|
|
|
|
buffer := bytes.NewBufferString(log)
|
|
|
|
|
ctx := context.WithValue(context.Background(), "cancel", make(chan int, 1))
|
|
|
|
|
now := time.Now()
|
|
|
|
|
utils.RunTask(ctx, fmt.Sprintf("pip install %s", dep.Name), map[string]string{}, func(ctx context.Context) {
|
|
|
|
|
writer := ctx.Value("log").(io.Writer)
|
|
|
|
|
writer.Write([]byte(fmt.Sprintf("##开始执行.. %s\n\n", now.Format("2006-01-02 15:04:05"))))
|
|
|
|
|
}, func(ctx context.Context) {
|
|
|
|
|
writer := ctx.Value("log").(io.Writer)
|
|
|
|
|
writer.Write([]byte(fmt.Sprintf("\n##执行结束.. %s,耗时%.1f秒\n\n", time.Now().Format("2006-01-02 15:04:05"), time.Now().Sub(now).Seconds())))
|
|
|
|
|
dep.Status = 1
|
|
|
|
|
var logs []string
|
|
|
|
|
for _, i2 := range strings.Split(buffer.String(), "\n") {
|
|
|
|
|
logs = append(logs, i2+"\n\n")
|
|
|
|
|
}
|
|
|
|
|
dep.Log = logs
|
|
|
|
|
models.AddDependences(dep)
|
|
|
|
|
}, buffer)
|
|
|
|
|
}
|