drbuowqe02101 2015-01-21 15:30
浏览 30

Golang net / http和Gorilla:在处理程序之前运行代码

Is it possible using the net/http package and/or any of the gorilla libraries to make some code execute on EVERY URL before going to the handler? For example, to check if a connection is coming from a black listed IP address?

  • 写回答

2条回答 默认 最新

  • douzhu1188 2015-01-21 15:40
    关注

    Create a handler that invokes another handler after checking the IP address:

    type checker struct {
       h http.Handler
    }
    
    func (c checker) ServeHTTP(w http.ResponseWriter, r *http.Request) {
       if blackListed(r.RemoteAddr) {
          http.Error(w, "not authorized", http.StatusForbidden)
          return
       }
       c.h.ServeHTTP(w, r)
    }
    

    Pass this handler to ListenAndServe instead of your original handler. For example, if you had:

    err := http.ListenAndServe(addr, mux)
    

    change the code to

    err := http.ListenAndServe(addr, checker{mux})
    

    This also applies to all the variations of ListenAndServe. It works with http.ServeMux, Gorilla mux and other routers.

    评论

报告相同问题?

悬赏问题

  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看
  • ¥15 关于#Java#的问题,如何解决?
  • ¥15 加热介质是液体,换热器壳侧导热系数和总的导热系数怎么算
  • ¥15 想问一下树莓派接上显示屏后出现如图所示画面,是什么问题导致的
  • ¥100 嵌入式系统基于PIC16F882和热敏电阻的数字温度计
  • ¥15 cmd cl 0x000007b
  • ¥20 BAPI_PR_CHANGE how to add account assignment information for service line
  • ¥500 火焰左右视图、视差(基于双目相机)
  • ¥100 set_link_state
  • ¥15 虚幻5 UE美术毛发渲染