mirror of
https://github.com/minoplhy/chibisafe-netproxy.git
synced 2025-04-04 09:38:00 +00:00
Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
3eddc23eb6 | |||
f28f2fb72a | |||
362641a436 | |||
c4cc672c52 | |||
fa8788bd29 | |||
b52d99c45f | |||
22c23cc2ee | |||
f269bfaa9c | |||
53c6992ef6 | |||
2650a8c31f | |||
b5dfbf5395 |
21
LICENSE
Normal file
21
LICENSE
Normal file
@ -0,0 +1,21 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2024 Minoplhy
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
@ -53,11 +53,12 @@ func UploadPost(BasePath string, headers map[string]string, PostData UploadPostM
|
||||
defer resp.Body.Close()
|
||||
|
||||
if resp.StatusCode == http.StatusOK {
|
||||
BodyRead, err := io.ReadAll(resp.Body)
|
||||
buffer := bytes.NewBuffer(nil)
|
||||
_, err := io.Copy(buffer, resp.Body)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return BodyRead, nil
|
||||
return buffer.Bytes(), nil
|
||||
} else {
|
||||
return nil, err
|
||||
}
|
||||
@ -99,11 +100,12 @@ func NetworkStoragePut(URL string, ContentType string, filepath string) ([]byte,
|
||||
defer resp.Body.Close()
|
||||
|
||||
if resp.StatusCode == http.StatusOK {
|
||||
BodyRead, err := io.ReadAll(resp.Body)
|
||||
buffer := bytes.NewBuffer(nil)
|
||||
_, err := io.Copy(buffer, resp.Body)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return BodyRead, nil
|
||||
return buffer.Bytes(), nil
|
||||
} else {
|
||||
return nil, err
|
||||
}
|
||||
@ -127,13 +129,15 @@ func UploadProcessPost(BasePath string, headers map[string]string, PostData Uplo
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
defer resp.Body.Close()
|
||||
|
||||
if resp.StatusCode == http.StatusOK {
|
||||
BodyRead, err := io.ReadAll(resp.Body)
|
||||
buffer := bytes.NewBuffer(nil)
|
||||
_, err := io.Copy(buffer, resp.Body)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return BodyRead, nil
|
||||
return buffer.Bytes(), nil
|
||||
} else {
|
||||
return nil, err
|
||||
}
|
||||
|
@ -75,5 +75,5 @@ func HTTPClientDo(Request *http.Request) (*http.Response, error) {
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return response, err
|
||||
return response, nil
|
||||
}
|
||||
|
@ -1,8 +1,15 @@
|
||||
package handler
|
||||
|
||||
import "net"
|
||||
import (
|
||||
"net"
|
||||
"strings"
|
||||
)
|
||||
|
||||
// Check if request IP Address is in internal ranges
|
||||
func IsInternalIP(ip string) bool {
|
||||
parts := strings.Split(ip, ":")
|
||||
ip = parts[0]
|
||||
|
||||
// Parse the IP address
|
||||
ipAddress := net.ParseIP(ip)
|
||||
if ipAddress == nil {
|
||||
@ -18,7 +25,7 @@ func IsInternalIP(ip string) bool {
|
||||
for _, internalRange := range internalRanges {
|
||||
_, ipNet, err := net.ParseCIDR(internalRange)
|
||||
if err != nil {
|
||||
return false
|
||||
continue
|
||||
}
|
||||
|
||||
if ipNet.Contains(ipAddress) {
|
||||
|
@ -2,18 +2,28 @@ package handler
|
||||
|
||||
import (
|
||||
"encoding/json"
|
||||
"net/http"
|
||||
"strings"
|
||||
|
||||
"github.com/rs/zerolog/log"
|
||||
)
|
||||
|
||||
func ErrorResponseBuild(StatusCode int64, Message string) string {
|
||||
func ResponseBuild(w http.ResponseWriter, ContentType string, ContentData []byte) {
|
||||
w.Header().Set("Content-Type", ContentType)
|
||||
w.WriteHeader(http.StatusOK)
|
||||
w.Write(ContentData)
|
||||
}
|
||||
|
||||
func ErrorResponseBuild(w http.ResponseWriter, StatusCode int64, Message string) {
|
||||
ErrorResponse := ErrorResponse{
|
||||
StatusCode: StatusCode,
|
||||
Message: Message,
|
||||
}
|
||||
Response, _ := json.Marshal(ErrorResponse)
|
||||
return string(Response)
|
||||
|
||||
w.Header().Set("Content-Type", "application/json")
|
||||
w.WriteHeader(int(StatusCode))
|
||||
w.Write(Response)
|
||||
}
|
||||
|
||||
func InfoLogBuilder(headers []string, message string) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user