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.
37 lines
777 B
37 lines
777 B
package monitor |
|
|
|
import ( |
|
"context" |
|
"net/url" |
|
|
|
"go-common/app/job/main/videoup/conf" |
|
xhttp "go-common/library/net/http/blademaster" |
|
) |
|
|
|
// Dao is message dao. |
|
type Dao struct { |
|
c *conf.Config |
|
client *xhttp.Client |
|
uri string |
|
} |
|
|
|
// New new a message dao. |
|
func New(c *conf.Config) (d *Dao) { |
|
//http://ops-mng.bilibili.co/api/sendsms&message=test&token= |
|
d = &Dao{ |
|
c: c, |
|
client: xhttp.NewClient(c.HTTPClient), |
|
uri: c.Host.Monitor + "/api/sendsms", |
|
} |
|
return |
|
} |
|
|
|
// Send send message to upper. |
|
func (d *Dao) Send(c context.Context, msg string) (err error) { |
|
params := url.Values{} |
|
params.Set("phone", d.c.Tels) |
|
params.Set("message", msg) |
|
params.Set("token", "f5a658b2-5926-4b71-96c3-7d3777b7d256") |
|
d.client.Get(c, d.uri, "", params, nil) |
|
return |
|
}
|
|
|