mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-06 06:27:40 +03:00
WIP twilio
This commit is contained in:
parent
cea434a57c
commit
539ba43cd1
6 changed files with 33 additions and 9 deletions
|
@ -31,6 +31,16 @@ const (
|
|||
</Response>`
|
||||
)
|
||||
|
||||
func (s *Server) convertPhoneNumber(u *user.User, phoneNumber string) (string, error) {
|
||||
if u == nil {
|
||||
return "", fmt.Errorf("user is nil")
|
||||
}
|
||||
if s.config.TwilioPhoneNumberConverter == nil {
|
||||
return phoneNumber, nil
|
||||
}
|
||||
return s.config.TwilioPhoneNumberConverter(u, phoneNumber)
|
||||
}
|
||||
|
||||
func (s *Server) callPhone(v *visitor, r *http.Request, m *message, to string) {
|
||||
body := fmt.Sprintf(twilioCallFormat, xmlEscapeText(m.Topic), xmlEscapeText(m.Message), xmlEscapeText(s.messageFooter(v.User(), m)))
|
||||
data := url.Values{}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue