Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

50 lines
1.9KB

  1. /* ----------------------------------------------------------------------
  2. * ______ ___ __
  3. * / ____/___ / | ____ __ ___ __/ /_ ___ ________
  4. * / / __/ __ \/ /| | / __ \/ / / / | /| / / __ \/ _ \/ ___/ _ \
  5. * / /_/ / /_/ / ___ |/ / / / /_/ /| |/ |/ / / / / __/ / / __/
  6. * \____/\____/_/ |_/_/ /_/\__. / |__/|__/_/ /_/\___/_/ \___/
  7. * /____/
  8. *
  9. * (C) Copyright 2015 GoAnywhere (http://goanywhere.io).
  10. * ----------------------------------------------------------------------
  11. * Licensed under the Apache License, Version 2.0 (the "License");
  12. * you may not use this file except in compliance with the License.
  13. * You may obtain a copy of the License at
  14. *
  15. * http://www.apache.org/licenses/LICENSE-2.0
  16. *
  17. * Unless required by applicable law or agreed to in writing, software
  18. * distributed under the License is distributed on an "AS IS" BASIS,
  19. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  20. * See the License for the specific language governing permissions and
  21. * limitations under the License.
  22. * ----------------------------------------------------------------------*/
  23. package rex
  24. import "net/http"
  25. type module struct {
  26. stack []func(http.Handler) http.Handler
  27. }
  28. // build sets up the whole middleware modules in a FIFO chain.
  29. func (self *module) build() http.Handler {
  30. var next http.Handler = http.DefaultServeMux
  31. // Activate modules in FIFO order.
  32. for index := len(self.stack) - 1; index >= 0; index-- {
  33. next = self.stack[index](next)
  34. }
  35. return next
  36. }
  37. // Use add the middleware module into the stack chain.
  38. func (self *module) Use(modules ...func(http.Handler) http.Handler) {
  39. self.stack = append(self.stack, modules...)
  40. }
  41. // Implements the net/http Handler interface and calls the middleware stack.
  42. func (self *module) ServeHTTP(w http.ResponseWriter, r *http.Request) {
  43. self.build().ServeHTTP(w, r)
  44. }