sms: register somebody else

This commit is contained in:
Chris Sexton 2020-05-17 11:13:40 -04:00 committed by Chris Sexton
parent 6c1a8c13fc
commit 4cefc8a784
1 changed files with 44 additions and 26 deletions

View File

@ -47,7 +47,8 @@ func (p *SMSPlugin) checkNumber(num string) (string, error) {
} }
var regRegex = regexp.MustCompile(`(?i)my sms number is (\d+)`) var regRegex = regexp.MustCompile(`(?i)my sms number is (\d+)`)
var sendRegex = regexp.MustCompile(`(?i)send sms to\s(?P<name>\S+)\s(?P<body>.+)`) var reg2Regex = regexp.MustCompile(`(?i)register sms for (?P<name>\S+) (\d+)`)
var sendRegex = regexp.MustCompile(`(?i)send sms to (?P<name>\S+) (?P<body>.+)`)
// Send will send a text to a registered user, who // Send will send a text to a registered user, who
func (p *SMSPlugin) Send(who, message string) error { func (p *SMSPlugin) Send(who, message string) error {
@ -96,6 +97,17 @@ func (p *SMSPlugin) message(c bot.Connector, kind bot.Kind, message msg.Message,
return true return true
} }
if reg2Regex.MatchString(body) {
subs := reg2Regex.FindStringSubmatch(body)
if subs == nil || len(subs) != 3 {
p.b.Send(c, bot.Message, ch, fmt.Sprintf("if you're trying to register somebody, give me a "+
"message of the format: `%s`", reg2Regex))
return true
}
return p.reg(c, ch, subs[1], subs[2])
}
if regRegex.MatchString(body) { if regRegex.MatchString(body) {
subs := regRegex.FindStringSubmatch(body) subs := regRegex.FindStringSubmatch(body)
if subs == nil || len(subs) != 2 { if subs == nil || len(subs) != 2 {
@ -104,7 +116,14 @@ func (p *SMSPlugin) message(c bot.Connector, kind bot.Kind, message msg.Message,
return true return true
} }
num, err := p.checkNumber(subs[1]) return p.reg(c, ch, who, subs[1])
}
return false
}
func (p *SMSPlugin) reg(c bot.Connector, ch, who, num string) bool {
num, err := p.checkNumber(num)
if err != nil { if err != nil {
p.b.Send(c, bot.Message, ch, fmt.Sprintf("That number didn't make sense to me: %s", err)) p.b.Send(c, bot.Message, ch, fmt.Sprintf("That number didn't make sense to me: %s", err))
return true return true
@ -129,13 +148,12 @@ func (p *SMSPlugin) message(c bot.Connector, kind bot.Kind, message msg.Message,
} }
p.b.Send(c, bot.Message, ch, "I sent a message to them.") p.b.Send(c, bot.Message, ch, "I sent a message to them.")
return true return true
}
return false
} }
func (p *SMSPlugin) help(c bot.Connector, kind bot.Kind, message msg.Message, args ...interface{}) bool { func (p *SMSPlugin) help(c bot.Connector, kind bot.Kind, message msg.Message, args ...interface{}) bool {
ch := message.Channel ch := message.Channel
m := fmt.Sprintf("You can register your number with: `%s`", regRegex) m := fmt.Sprintf("You can register your number with: `%s`", regRegex)
m += fmt.Sprintf("\nYou can register somebody else with: `%s`", reg2Regex)
m += fmt.Sprintf("\nYou can send a message to a user with: `%s`", sendRegex) m += fmt.Sprintf("\nYou can send a message to a user with: `%s`", sendRegex)
m += "\nYou can deregister with: `delete my sms`" m += "\nYou can deregister with: `delete my sms`"
m += fmt.Sprintf("\nAll messages sent to %s will come to the channel.", m += fmt.Sprintf("\nAll messages sent to %s will come to the channel.",