clash/adapter/provider/vehicle.go

65 lines
1.1 KiB
Go
Raw Normal View History

2019-12-08 04:17:24 +00:00
package provider
import (
"context"
2022-06-04 11:14:39 +00:00
netHttp "github.com/Dreamacro/clash/component/http"
types "github.com/Dreamacro/clash/constant/provider"
2021-10-09 12:35:06 +00:00
"io"
2019-12-08 04:17:24 +00:00
"net/http"
2021-10-09 12:35:06 +00:00
"os"
2019-12-08 04:17:24 +00:00
"time"
)
type FileVehicle struct {
path string
}
func (f *FileVehicle) Type() types.VehicleType {
return types.File
2019-12-08 04:17:24 +00:00
}
func (f *FileVehicle) Path() string {
return f.path
}
func (f *FileVehicle) Read() ([]byte, error) {
2021-10-09 12:35:06 +00:00
return os.ReadFile(f.path)
2019-12-08 04:17:24 +00:00
}
func NewFileVehicle(path string) *FileVehicle {
return &FileVehicle{path: path}
}
type HTTPVehicle struct {
url string
path string
}
func (h *HTTPVehicle) Type() types.VehicleType {
return types.HTTP
2019-12-08 04:17:24 +00: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()
2022-06-04 11:14:39 +00:00
resp, err := netHttp.HttpRequest(ctx, h.url, http.MethodGet, nil, nil)
if err != nil {
return nil, err
}
defer resp.Body.Close()
2021-10-09 12:35:06 +00:00
buf, err := io.ReadAll(resp.Body)
2019-12-08 04:17:24 +00:00
if err != nil {
return nil, err
}
return buf, nil
}
func NewHTTPVehicle(url string, path string) *HTTPVehicle {
return &HTTPVehicle{url, path}
}