Clash.Meta/component/resource/vehicle.go

73 lines
1.3 KiB
Go
Raw Normal View History

package resource
2019-12-08 12:17:24 +08:00
import (
"context"
2023-07-16 11:10:07 +08:00
"errors"
2021-10-09 20:35:06 +08:00
"io"
2019-12-08 12:17:24 +08:00
"net/http"
2021-10-09 20:35:06 +08:00
"os"
2019-12-08 12:17:24 +08:00
"time"
2023-07-16 11:10:07 +08:00
clashHttp "github.com/Dreamacro/clash/component/http"
types "github.com/Dreamacro/clash/constant/provider"
2019-12-08 12:17:24 +08:00
)
type FileVehicle struct {
path string
}
func (f *FileVehicle) Type() types.VehicleType {
return types.File
2019-12-08 12:17:24 +08:00
}
func (f *FileVehicle) Path() string {
return f.path
}
func (f *FileVehicle) Read() ([]byte, error) {
2021-10-09 20:35:06 +08:00
return os.ReadFile(f.path)
2019-12-08 12:17:24 +08:00
}
func NewFileVehicle(path string) *FileVehicle {
return &FileVehicle{path: path}
}
type HTTPVehicle struct {
url string
path string
}
2022-11-05 02:24:08 +08:00
func (h *HTTPVehicle) Url() string {
return h.url
}
func (h *HTTPVehicle) Type() types.VehicleType {
return types.HTTP
2019-12-08 12:17:24 +08:00
}
func (h *HTTPVehicle) Path() string {
return h.path
}
func (h *HTTPVehicle) Read() ([]byte, error) {
ctx, cancel := context.WithTimeout(context.Background(), time.Second*20)
defer cancel()
resp, err := clashHttp.HttpRequest(ctx, h.url, http.MethodGet, nil, nil)
if err != nil {
return nil, err
}
defer resp.Body.Close()
2023-07-16 11:10:07 +08:00
if resp.StatusCode < 200 && resp.StatusCode > 299 {
return nil, errors.New(resp.Status)
}
2021-10-09 20:35:06 +08:00
buf, err := io.ReadAll(resp.Body)
2019-12-08 12:17:24 +08:00
if err != nil {
return nil, err
}
return buf, nil
}
func NewHTTPVehicle(url string, path string) *HTTPVehicle {
return &HTTPVehicle{url, path}
}