forked from fatedier/frp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
18 changed files
with
410 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
// Copyright 2019 fatedier, [email protected] | ||
// | ||
// 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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
// Copyright 2019 fatedier, [email protected] | ||
// | ||
// 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 ( | ||
"context" | ||
"errors" | ||
"fmt" | ||
|
||
"github.com/fatedier/frp/utils/util" | ||
"github.com/fatedier/frp/utils/xlog" | ||
) | ||
|
||
type Manager struct { | ||
loginPlugins []Plugin | ||
newProxyPlugins []Plugin | ||
} | ||
|
||
func NewManager() *Manager { | ||
return &Manager{ | ||
loginPlugins: make([]Plugin, 0), | ||
newProxyPlugins: make([]Plugin, 0), | ||
} | ||
} | ||
|
||
func (m *Manager) Register(p Plugin) { | ||
if p.IsSupport(OpLogin) { | ||
m.loginPlugins = append(m.loginPlugins, p) | ||
} | ||
if p.IsSupport(OpNewProxy) { | ||
m.newProxyPlugins = append(m.newProxyPlugins, p) | ||
} | ||
} | ||
|
||
func (m *Manager) Login(content *LoginContent) (*LoginContent, error) { | ||
var ( | ||
res = &Response{ | ||
Reject: false, | ||
Unchange: true, | ||
} | ||
retContent interface{} | ||
err error | ||
) | ||
reqid, _ := util.RandId() | ||
xl := xlog.New().AppendPrefix("reqid: " + reqid) | ||
ctx := xlog.NewContext(context.Background(), xl) | ||
ctx = NewReqidContext(ctx, reqid) | ||
|
||
for _, p := range m.loginPlugins { | ||
res, retContent, err = p.Handle(ctx, OpLogin, *content) | ||
if err != nil { | ||
xl.Warn("send Login request to plugin [%s] error: %v", p.Name(), err) | ||
return nil, errors.New("send Login request to plugin error") | ||
} | ||
if res.Reject { | ||
return nil, fmt.Errorf("%s", res.RejectReason) | ||
} | ||
if !res.Unchange { | ||
content = retContent.(*LoginContent) | ||
} | ||
} | ||
return content, nil | ||
} | ||
|
||
func (m *Manager) NewProxy(content *NewProxyContent) (*NewProxyContent, error) { | ||
var ( | ||
res = &Response{ | ||
Reject: false, | ||
Unchange: true, | ||
} | ||
retContent interface{} | ||
err error | ||
) | ||
reqid, _ := util.RandId() | ||
xl := xlog.New().AppendPrefix("reqid: " + reqid) | ||
ctx := xlog.NewContext(context.Background(), xl) | ||
ctx = NewReqidContext(ctx, reqid) | ||
|
||
for _, p := range m.newProxyPlugins { | ||
res, retContent, err = p.Handle(ctx, OpNewProxy, *content) | ||
if err != nil { | ||
xl.Warn("send NewProxy request to plugin [%s] error: %v", p.Name(), err) | ||
return nil, errors.New("send NewProxy request to plugin error") | ||
} | ||
if res.Reject { | ||
return nil, fmt.Errorf("%s", res.RejectReason) | ||
} | ||
if !res.Unchange { | ||
content = retContent.(*NewProxyContent) | ||
} | ||
} | ||
return content, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// Copyright 2019 fatedier, [email protected] | ||
// | ||
// 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 ( | ||
"context" | ||
) | ||
|
||
const ( | ||
APIVersion = "0.1.0" | ||
|
||
OpLogin = "Login" | ||
OpNewProxy = "NewProxy" | ||
) | ||
|
||
type Plugin interface { | ||
Name() string | ||
IsSupport(op string) bool | ||
Handle(ctx context.Context, op string, content interface{}) (res *Response, retContent interface{}, err error) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Copyright 2019 fatedier, [email protected] | ||
// | ||
// 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 ( | ||
"context" | ||
) | ||
|
||
type key int | ||
|
||
const ( | ||
reqidKey key = 0 | ||
) | ||
|
||
func NewReqidContext(ctx context.Context, reqid string) context.Context { | ||
return context.WithValue(ctx, reqidKey, reqid) | ||
} | ||
|
||
func GetReqidFromContext(ctx context.Context) string { | ||
ret, _ := ctx.Value(reqidKey).(string) | ||
return ret | ||
} |
Oops, something went wrong.