You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
560 B
27 lines
560 B
package dao |
|
|
|
import ( |
|
"context" |
|
|
|
"go-common/app/admin/main/workflow/model/param" |
|
"go-common/library/ecode" |
|
) |
|
|
|
const _userNotifyURI = "http://message.bilibili.co/api/notify/send.user.notify.do" |
|
|
|
// SendMessage send message to upper. |
|
func (d *Dao) SendMessage(c context.Context, msg *param.MessageParam) (err error) { |
|
uri := _userNotifyURI |
|
params := msg.Query() |
|
var res struct { |
|
Code int `json:"code"` |
|
} |
|
if err = d.httpWrite.Post(c, uri, "", params, &res); err != nil { |
|
return |
|
} |
|
if res.Code != 0 { |
|
err = ecode.Int(res.Code) |
|
return |
|
} |
|
return |
|
}
|
|
|