Merge PR #1705: baseapp: Allow alphanumerics in routes

Previously only alphabetic characters were allowed.
This commit is contained in:
Dev Ojha 2018-07-17 14:11:34 -07:00 committed by Christopher Goes
parent d6969c1d22
commit f88d64499d
3 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,6 @@
# Changelog
## TBD
## PENDING
BREAKING CHANGES
@ -8,6 +8,7 @@ FEATURES
* [lcd] Can now query governance proposals by ProposalStatus
IMPROVEMENTS
* [baseapp] Allow any alphanumeric character in route
BUG FIXES

View File

@ -290,7 +290,7 @@ func (tx txTest) GetMsgs() []sdk.Msg { return tx.Msgs }
const (
typeMsgCounter = "msgCounter"
typeMsgCounter2 = "msgCounterTwo" // NOTE: no numerics (?)
typeMsgCounter2 = "msgCounter2"
)
// ValidateBasic() fails on negative counters.

View File

@ -31,12 +31,12 @@ func NewRouter() *router {
}
}
var isAlpha = regexp.MustCompile(`^[a-zA-Z]+$`).MatchString
var isAlphaNumeric = regexp.MustCompile(`^[a-zA-Z0-9]+$`).MatchString
// AddRoute - TODO add description
func (rtr *router) AddRoute(r string, h sdk.Handler) Router {
if !isAlpha(r) {
panic("route expressions can only contain alphabet characters")
if !isAlphaNumeric(r) {
panic("route expressions can only contain alphanumeric characters")
}
rtr.routes = append(rtr.routes, route{r, h})