## Description We decided to remove middlewares, and revert to antehandlers (exactly like in v045) for this release. A better middleware solution will be implemented after v046. ref: #11955 Because this refactor is big, so I decided to cut it into two. This PR is part 1 of 2: - part 1: Revert baseapp and middlewares to v0.45.4 - part 2: Add posthandler, tips, priority --- Suggestion for reviewers: This PR might still be hard to review though. I think it's easier to actually review the diff between v0.45.4 and this PR: - `git difftool -d v0.45.4..am/revert-045-baseapp baseapp` - most important parts to review: runTx, runMsgs - `git difftool -d v0.45.4..am/revert-045-baseapp x/auth/ante` - only cosmetic changes - `git difftool -d v0.45.4..am/revert-045-baseapp simapp` --- ### Author Checklist *All items are required. Please add a note to the item if the item is not applicable and please add links to any relevant follow up issues.* I have... - [ ] included the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] added `!` to the type prefix if API or client breaking change - [ ] targeted the correct branch (see [PR Targeting](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#pr-targeting)) - [ ] provided a link to the relevant issue or specification - [ ] followed the guidelines for [building modules](https://github.com/cosmos/cosmos-sdk/blob/main/docs/building-modules) - [ ] included the necessary unit and integration [tests](https://github.com/cosmos/cosmos-sdk/blob/main/CONTRIBUTING.md#testing) - [ ] added a changelog entry to `CHANGELOG.md` - [ ] included comments for [documenting Go code](https://blog.golang.org/godoc) - [ ] updated the relevant documentation or specification - [ ] reviewed "Files changed" and left comments if necessary - [ ] confirmed all CI checks have passed ### Reviewers Checklist *All items are required. Please add a note if the item is not applicable and please add your handle next to the items reviewed if you only reviewed selected items.* I have... - [ ] confirmed the correct [type prefix](https://github.com/commitizen/conventional-commit-types/blob/v3.0.0/index.json) in the PR title - [ ] confirmed `!` in the type prefix if API or client breaking change - [ ] confirmed all author checklist items have been addressed - [ ] reviewed state machine logic - [ ] reviewed API design and naming - [ ] reviewed documentation is accurate - [ ] reviewed tests and test coverage - [ ] manually tested (if applicable)
42 lines
939 B
Go
42 lines
939 B
Go
package baseapp
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
)
|
|
|
|
type Router struct {
|
|
routes map[string]sdk.Handler
|
|
}
|
|
|
|
var _ sdk.Router = NewRouter()
|
|
|
|
// NewRouter returns a reference to a new router.
|
|
func NewRouter() *Router {
|
|
return &Router{
|
|
routes: make(map[string]sdk.Handler),
|
|
}
|
|
}
|
|
|
|
// AddRoute adds a route path to the router with a given handler. The route must
|
|
// be alphanumeric.
|
|
func (rtr *Router) AddRoute(route sdk.Route) sdk.Router {
|
|
if !sdk.IsAlphaNumeric(route.Path()) {
|
|
panic("route expressions can only contain alphanumeric characters")
|
|
}
|
|
if rtr.routes[route.Path()] != nil {
|
|
panic(fmt.Sprintf("route %s has already been initialized", route.Path()))
|
|
}
|
|
|
|
rtr.routes[route.Path()] = route.Handler()
|
|
return rtr
|
|
}
|
|
|
|
// Route returns a handler for a given route path.
|
|
//
|
|
// TODO: Handle expressive matches.
|
|
func (rtr *Router) Route(_ sdk.Context, path string) sdk.Handler {
|
|
return rtr.routes[path]
|
|
}
|