casdoor/notification/custom_http.go

78 lines
2.0 KiB
Go
Raw Permalink Normal View History

2023-08-12 12:52:53 +08:00
// Copyright 2023 The Casdoor Authors. All Rights Reserved.
//
// 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 notification
2023-08-12 12:52:53 +08:00
import (
"context"
2023-08-12 12:52:53 +08:00
"fmt"
"net/http"
"net/url"
"strings"
2023-08-12 12:52:53 +08:00
"github.com/casdoor/casdoor/proxy"
)
type HttpNotificationClient struct {
2023-08-12 12:52:53 +08:00
endpoint string
method string
paramName string
}
func NewCustomHttpProvider(endpoint string, method string, paramName string) (*HttpNotificationClient, error) {
client := &HttpNotificationClient{
2023-08-12 12:52:53 +08:00
endpoint: endpoint,
method: method,
paramName: paramName,
}
return client, nil
}
func (c *HttpNotificationClient) Send(ctx context.Context, subject string, content string) error {
var req *http.Request
2023-08-12 12:52:53 +08:00
var err error
if c.method == "POST" {
formValues := url.Values{}
formValues.Set(c.paramName, content)
req, err = http.NewRequest(c.method, c.endpoint, strings.NewReader(formValues.Encode()))
if err != nil {
return err
2023-08-12 12:52:53 +08:00
}
req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
2023-08-12 12:52:53 +08:00
} else if c.method == "GET" {
req, err = http.NewRequest(c.method, c.endpoint, nil)
if err != nil {
return err
}
2023-08-12 12:52:53 +08:00
q := req.URL.Query()
q.Add(c.paramName, content)
req.URL.RawQuery = q.Encode()
}
httpClient := proxy.DefaultHttpClient
2023-08-12 12:52:53 +08:00
resp, err := httpClient.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return fmt.Errorf("HttpNotificationClient's SendMessage() error, custom HTTP Notification request failed with status: %s", resp.Status)
2023-08-12 12:52:53 +08:00
}
return err
}