Hunter0x7c7
2022-08-11 a82f9cb69f63aaeba40c024960deda7d75b9fece
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package cmdarg
 
import (
    "bytes"
    "io"
    "io/ioutil"
    "net/http"
    "net/url"
    "strings"
    "time"
 
    "github.com/v2fly/v2ray-core/v5/common/buf"
)
 
// LoadArg loads one arg, maybe an remote url, or local file path
func LoadArg(arg string) (out io.Reader, err error) {
    bs, err := LoadArgToBytes(arg)
    if err != nil {
        return nil, err
    }
    out = bytes.NewBuffer(bs)
    return
}
 
// LoadArgToBytes loads one arg to []byte, maybe an remote url, or local file path
func LoadArgToBytes(arg string) (out []byte, err error) {
    out, err = ioutil.ReadFile(arg)
    if err != nil {
        return
    }
    return
}
 
// FetchHTTPContent dials https for remote content
func FetchHTTPContent(target string) ([]byte, error) {
    parsedTarget, err := url.Parse(target)
    if err != nil {
        return nil, newError("invalid URL: ", target).Base(err)
    }
 
    if s := strings.ToLower(parsedTarget.Scheme); s != "http" && s != "https" {
        return nil, newError("invalid scheme: ", parsedTarget.Scheme)
    }
 
    client := &http.Client{
        Timeout: 30 * time.Second,
    }
    resp, err := client.Do(&http.Request{
        Method: "GET",
        URL:    parsedTarget,
        Close:  true,
    })
    if err != nil {
        return nil, newError("failed to dial to ", target).Base(err)
    }
    defer resp.Body.Close()
 
    if resp.StatusCode != 200 {
        return nil, newError("unexpected HTTP status code: ", resp.StatusCode)
    }
 
    content, err := buf.ReadAllToBytes(resp.Body)
    if err != nil {
        return nil, newError("failed to read HTTP response").Base(err)
    }
 
    return content, nil
}