diff --git a/casdoorsdk/notification.go b/casdoorsdk/notification.go new file mode 100644 index 00000000..c00c0672 --- /dev/null +++ b/casdoorsdk/notification.go @@ -0,0 +1,39 @@ +// Copyright 2026 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 casdoorsdk + +import "encoding/json" + +type notificationForm struct { + Content string `json:"content"` + Recipient string `json:"recipient,omitempty"` +} + +func (c *Client) SendNotification(content string, recipient string) error { + form := notificationForm{ + Content: content, + Recipient: recipient, + } + postBytes, err := json.Marshal(form) + if err != nil { + return err + } + + _, err = c.DoPost("send-notification", nil, postBytes, false, false) + if err != nil { + return err + } + return nil +} diff --git a/casdoorsdk/notification_global.go b/casdoorsdk/notification_global.go new file mode 100644 index 00000000..99ce5994 --- /dev/null +++ b/casdoorsdk/notification_global.go @@ -0,0 +1,19 @@ +// Copyright 2026 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 casdoorsdk + +func SendNotification(content string, recipient string) error { + return globalClient.SendNotification(content, recipient) +}