Files
goma-gateway/internal/helpers.go

108 lines
2.7 KiB
Go
Raw Normal View History

2024-10-27 06:10:27 +01:00
/*
* Copyright 2024 Jonas Kaninda
*
* 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.
*
*/
2024-10-27 06:10:27 +01:00
package pkg
2024-10-27 06:10:27 +01:00
import (
"context"
"encoding/json"
2024-10-27 06:10:27 +01:00
"fmt"
"github.com/jedib0t/go-pretty/v6/table"
"golang.org/x/oauth2"
2024-11-17 03:56:47 +01:00
"io"
"net"
2024-10-28 02:26:02 +01:00
"net/http"
2024-10-27 06:10:27 +01:00
)
// printRoute prints routes
func printRoute(routes []Route) {
t := table.NewWriter()
t.AppendHeader(table.Row{"Name", "Path", "Rewrite", "Destination"})
for _, route := range routes {
if len(route.Backends) != 0 {
t.AppendRow(table.Row{route.Name, route.Path, route.Rewrite, fmt.Sprintf("backends: [%d]", len(route.Backends))})
} else {
t.AppendRow(table.Row{route.Name, route.Path, route.Rewrite, route.Destination})
}
}
fmt.Println(t.Render())
}
// getRealIP gets user real IP
2024-10-28 02:26:02 +01:00
func getRealIP(r *http.Request) string {
if ip := r.Header.Get("X-Real-IP"); ip != "" {
return ip
}
if ip := r.Header.Get("X-Forwarded-For"); ip != "" {
return ip
}
return r.RemoteAddr
}
// getUserInfo returns struct of UserInfo
func (oauth *OauthRulerMiddleware) getUserInfo(token *oauth2.Token) (UserInfo, error) {
oauthConfig := oauth2Config(oauth)
// Call the user info endpoint with the token
client := oauthConfig.Client(context.Background(), token)
resp, err := client.Get(oauth.Endpoint.UserInfoURL)
if err != nil {
return UserInfo{}, err
}
2024-11-17 03:56:47 +01:00
defer func(Body io.ReadCloser) {
err := Body.Close()
if err != nil {
return
2024-11-17 03:56:47 +01:00
}
}(resp.Body)
// Parse the user info
var userInfo UserInfo
if err := json.NewDecoder(resp.Body).Decode(&userInfo); err != nil {
return UserInfo{}, err
}
return userInfo, nil
}
// validateIPAddress checks if the input is a valid IP address (IPv4 or IPv6)
func validateIPAddress(ip string) bool {
return net.ParseIP(ip) != nil
}
// validateCIDR checks if the input is a valid CIDR notation
func validateCIDR(cidr string) bool {
_, _, err := net.ParseCIDR(cidr)
return err == nil
}
// isIPOrCIDR determines whether the input is an IP address or a CIDR
func isIPOrCIDR(input string) (isIP bool, isCIDR bool) {
// Check if it's a valid IP address
if net.ParseIP(input) != nil {
return true, false
}
// Check if it's a valid CIDR
if _, _, err := net.ParseCIDR(input); err == nil {
return false, true
}
// Neither IP nor CIDR
return false, false
}