mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-06-23 13:07:49 +08:00
1. Config Verify 和 Contact 的 InitalizeData 写得过于直接了。 会导致正常的数据被覆盖。实际上,数据的Init只需要更换数据 库的时候更新,如何判断数据库要被更新了,就是判断新出现的 column 有没有非零值的,如果有,就说明数据库不是第一次更新。 2. 前端的请求经过yunionapi,最终会调用climc里面注册的ResourceManager, 所以这个地方一定要和后端的参数处理统一。之前因为添加 uname 的支持破坏了这个地方的统一,虽然climc可以调用成功但是前端接口调用会失败。 3. Resend 的bug,会导致任务的阻塞。 4. 为了兼容kapacitor对climc notify的调用,分成了notify和notify-batch两个命令。
65 lines
2.1 KiB
Go
65 lines
2.1 KiB
Go
// Copyright 2019 Yunion
|
|
//
|
|
// 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 notify
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"yunion.io/x/jsonutils"
|
|
|
|
"yunion.io/x/onecloud/pkg/mcclient"
|
|
"yunion.io/x/onecloud/pkg/mcclient/modulebase"
|
|
"yunion.io/x/onecloud/pkg/mcclient/modules"
|
|
)
|
|
|
|
var (
|
|
Notifications NotificationManager
|
|
)
|
|
|
|
type SNotifyMessage struct {
|
|
Uid []string `json:"uid,omitempty"`
|
|
Gid []string `json:"gid,omitempty"`
|
|
ContactType TNotifyChannel `json:"contact_type,omitempty"`
|
|
Topic string `json:"topic,omitempty"`
|
|
Priority TNotifyPriority `json:"priority,omitempty"`
|
|
Msg string `json:"msg,omitempty"`
|
|
Remark string `json:"remark,omitempty"`
|
|
Broadcast bool `json:"broadcast,omitempty"`
|
|
}
|
|
|
|
type NotificationManager struct {
|
|
modulebase.ResourceManager
|
|
}
|
|
|
|
func (manager *NotificationManager) Send(s *mcclient.ClientSession, msg SNotifyMessage) error {
|
|
params := jsonutils.Marshal(&msg)
|
|
body := jsonutils.NewDict()
|
|
body.Add(params, manager.Keyword)
|
|
|
|
path := fmt.Sprintf("/%s?uname=true", manager.ContextPath(nil))
|
|
_, err := modulebase.Post(manager.ResourceManager, s, path, body, manager.KeywordPlural)
|
|
return err
|
|
}
|
|
|
|
func init() {
|
|
Notifications = NotificationManager{
|
|
modules.NewNotifyManager("notification", "notifications",
|
|
[]string{"id", "uid", "contact_type", "topic", "priority", "msg", "received_at", "send_by", "status", "create_at", "update_at", "delete_at", "create_by", "update_by", "delete_by", "is_deleted", "broadcast", "remark"},
|
|
[]string{}),
|
|
}
|
|
|
|
modules.Register(&Notifications)
|
|
}
|