mirror of
https://gitee.com/IrisVega/frp.git
synced 2024-11-01 22:31:29 +08:00
105 lines
2.3 KiB
Go
105 lines
2.3 KiB
Go
|
// Copyright 2019 fatedier, fatedier@gmail.com
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
// you may not use this file except in compliance with the License.
|
||
|
// You may obtain a copy of the License at
|
||
|
//
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||
|
//
|
||
|
// Unless required by applicable law or agreed to in writing, software
|
||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
// See the License for the specific language governing permissions and
|
||
|
// limitations under the License.
|
||
|
|
||
|
package plugin
|
||
|
|
||
|
import (
|
||
|
"bytes"
|
||
|
"context"
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"io/ioutil"
|
||
|
"net/http"
|
||
|
"reflect"
|
||
|
)
|
||
|
|
||
|
type HTTPPluginOptions struct {
|
||
|
Name string
|
||
|
Addr string
|
||
|
Path string
|
||
|
Ops []string
|
||
|
}
|
||
|
|
||
|
type httpPlugin struct {
|
||
|
options HTTPPluginOptions
|
||
|
|
||
|
url string
|
||
|
client *http.Client
|
||
|
}
|
||
|
|
||
|
func NewHTTPPluginOptions(options HTTPPluginOptions) Plugin {
|
||
|
return &httpPlugin{
|
||
|
options: options,
|
||
|
url: fmt.Sprintf("http://%s%s", options.Addr, options.Path),
|
||
|
client: &http.Client{},
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func (p *httpPlugin) Name() string {
|
||
|
return p.options.Name
|
||
|
}
|
||
|
|
||
|
func (p *httpPlugin) IsSupport(op string) bool {
|
||
|
for _, v := range p.options.Ops {
|
||
|
if v == op {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func (p *httpPlugin) Handle(ctx context.Context, op string, content interface{}) (*Response, interface{}, error) {
|
||
|
r := &Request{
|
||
|
Version: APIVersion,
|
||
|
Op: op,
|
||
|
Content: content,
|
||
|
}
|
||
|
var res Response
|
||
|
res.Content = reflect.New(reflect.TypeOf(content)).Interface()
|
||
|
if err := p.do(ctx, r, &res); err != nil {
|
||
|
return nil, nil, err
|
||
|
}
|
||
|
return &res, res.Content, nil
|
||
|
}
|
||
|
|
||
|
func (p *httpPlugin) do(ctx context.Context, r *Request, res *Response) error {
|
||
|
buf, err := json.Marshal(r)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
req, err := http.NewRequest("POST", p.url, bytes.NewReader(buf))
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
req = req.WithContext(ctx)
|
||
|
req.Header.Set("X-Frp-Reqid", GetReqidFromContext(ctx))
|
||
|
resp, err := p.client.Do(req)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
defer resp.Body.Close()
|
||
|
|
||
|
if resp.StatusCode != http.StatusOK {
|
||
|
return fmt.Errorf("do http request error code: %d", resp.StatusCode)
|
||
|
}
|
||
|
buf, err = ioutil.ReadAll(resp.Body)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
if err = json.Unmarshal(buf, res); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return nil
|
||
|
}
|