2021-01-10 22:35:34 +08:00
|
|
|
|
package nodes
|
|
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
|
"crypto/rand"
|
|
|
|
|
|
"fmt"
|
2021-12-02 11:30:47 +08:00
|
|
|
|
teaconst "github.com/TeaOSLab/EdgeNode/internal/const"
|
|
|
|
|
|
"github.com/TeaOSLab/EdgeNode/internal/utils"
|
2021-01-10 22:35:34 +08:00
|
|
|
|
"io"
|
2021-12-14 21:27:24 +08:00
|
|
|
|
"net/http"
|
2021-01-10 22:35:34 +08:00
|
|
|
|
"strconv"
|
|
|
|
|
|
"strings"
|
2021-12-02 11:30:47 +08:00
|
|
|
|
"sync/atomic"
|
2021-01-10 22:35:34 +08:00
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
// 分解Range
|
2021-01-13 12:52:38 +08:00
|
|
|
|
func httpRequestParseContentRange(rangeValue string) (result [][]int64, ok bool) {
|
2021-01-10 22:35:34 +08:00
|
|
|
|
// 参考RFC:https://tools.ietf.org/html/rfc7233
|
|
|
|
|
|
index := strings.Index(rangeValue, "=")
|
|
|
|
|
|
if index == -1 {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
unit := rangeValue[:index]
|
|
|
|
|
|
if unit != "bytes" {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
rangeSetString := rangeValue[index+1:]
|
|
|
|
|
|
if len(rangeSetString) == 0 {
|
|
|
|
|
|
ok = true
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
pieces := strings.Split(rangeSetString, ", ")
|
|
|
|
|
|
for _, piece := range pieces {
|
|
|
|
|
|
index := strings.Index(piece, "-")
|
|
|
|
|
|
if index == -1 {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
first := piece[:index]
|
2021-01-13 12:52:38 +08:00
|
|
|
|
firstInt := int64(-1)
|
2021-01-10 22:35:34 +08:00
|
|
|
|
|
|
|
|
|
|
var err error
|
|
|
|
|
|
last := piece[index+1:]
|
2021-01-13 12:52:38 +08:00
|
|
|
|
var lastInt = int64(-1)
|
2021-01-10 22:35:34 +08:00
|
|
|
|
|
|
|
|
|
|
if len(first) > 0 {
|
2021-01-13 12:52:38 +08:00
|
|
|
|
firstInt, err = strconv.ParseInt(first, 10, 64)
|
2021-01-10 22:35:34 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if len(last) > 0 {
|
2021-01-13 12:52:38 +08:00
|
|
|
|
lastInt, err = strconv.ParseInt(last, 10, 64)
|
2021-01-10 22:35:34 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
if lastInt < firstInt {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
} else {
|
|
|
|
|
|
if len(last) == 0 {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-01-13 12:52:38 +08:00
|
|
|
|
lastInt, err = strconv.ParseInt(last, 10, 64)
|
2021-01-10 22:35:34 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
lastInt = -lastInt
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-01-13 12:52:38 +08:00
|
|
|
|
result = append(result, []int64{firstInt, lastInt})
|
2021-01-10 22:35:34 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ok = true
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 读取内容Range
|
2021-01-13 12:52:38 +08:00
|
|
|
|
func httpRequestReadRange(reader io.Reader, buf []byte, start int64, end int64, callback func(buf []byte, n int) error) (ok bool, err error) {
|
2021-01-10 22:35:34 +08:00
|
|
|
|
if start < 0 || end < 0 {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
|
|
|
|
|
seeker, ok := reader.(io.Seeker)
|
|
|
|
|
|
if !ok {
|
|
|
|
|
|
return
|
|
|
|
|
|
}
|
2021-01-13 12:52:38 +08:00
|
|
|
|
_, err = seeker.Seek(start, io.SeekStart)
|
2021-01-10 22:35:34 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return false, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
offset := start
|
|
|
|
|
|
for {
|
|
|
|
|
|
n, err := reader.Read(buf)
|
|
|
|
|
|
if n > 0 {
|
2021-01-13 12:52:38 +08:00
|
|
|
|
offset += int64(n)
|
2021-01-10 22:35:34 +08:00
|
|
|
|
if end < offset {
|
2021-01-13 12:52:38 +08:00
|
|
|
|
err = callback(buf, n-int(offset-end-1))
|
2021-01-10 22:35:34 +08:00
|
|
|
|
if err != nil {
|
|
|
|
|
|
return false, err
|
|
|
|
|
|
}
|
|
|
|
|
|
return true, nil
|
|
|
|
|
|
} else {
|
|
|
|
|
|
err = callback(buf, n)
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
return false, err
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
if err == io.EOF {
|
|
|
|
|
|
return true, nil
|
|
|
|
|
|
}
|
|
|
|
|
|
return false, err
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// 生成boundary
|
|
|
|
|
|
// 仿照Golang自带的函数(multipart包)
|
|
|
|
|
|
func httpRequestGenBoundary() string {
|
|
|
|
|
|
var buf [30]byte
|
|
|
|
|
|
_, err := io.ReadFull(rand.Reader, buf[:])
|
|
|
|
|
|
if err != nil {
|
|
|
|
|
|
panic(err)
|
|
|
|
|
|
}
|
|
|
|
|
|
return fmt.Sprintf("%x", buf[:])
|
|
|
|
|
|
}
|
2021-12-02 11:30:47 +08:00
|
|
|
|
|
2021-12-14 21:27:24 +08:00
|
|
|
|
// 判断状态是否为跳转
|
|
|
|
|
|
func httpStatusIsRedirect(statusCode int) bool {
|
|
|
|
|
|
return statusCode == http.StatusPermanentRedirect ||
|
|
|
|
|
|
statusCode == http.StatusTemporaryRedirect ||
|
|
|
|
|
|
statusCode == http.StatusMovedPermanently ||
|
|
|
|
|
|
statusCode == http.StatusSeeOther ||
|
|
|
|
|
|
statusCode == http.StatusFound
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2021-12-02 11:30:47 +08:00
|
|
|
|
// 生成请求ID
|
|
|
|
|
|
var httpRequestTimestamp int64
|
|
|
|
|
|
var httpRequestId int32 = 1_000_000
|
|
|
|
|
|
|
|
|
|
|
|
func httpRequestNextId() string {
|
|
|
|
|
|
var unixTime = utils.UnixTimeMilli()
|
|
|
|
|
|
if unixTime > httpRequestTimestamp {
|
|
|
|
|
|
atomic.StoreInt32(&httpRequestId, 1_000_000)
|
|
|
|
|
|
httpRequestTimestamp = unixTime
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// timestamp + requestId + nodeId
|
|
|
|
|
|
return strconv.FormatInt(unixTime, 10) + strconv.Itoa(int(atomic.AddInt32(&httpRequestId, 1))) + teaconst.NodeIdString
|
|
|
|
|
|
}
|