| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- package captcha
- import (
- "http"
- "os"
- "path"
- "strconv"
- )
- type captchaHandler struct {
- imgWidth int
- imgHeight int
- }
- // Server returns a handler that serves HTTP requests with image or
- // audio representations of captchas. Image dimensions are accepted as
- // arguments. The server decides which captcha to serve based on the last URL
- // path component: file name part must contain a captcha id, file extension —
- // its format (PNG or WAV).
- //
- // For example, for file name "B9QTvDV1RXbVJ3Ac.png" it serves an image captcha
- // with id "B9QTvDV1RXbVJ3Ac", and for "B9QTvDV1RXbVJ3Ac.wav" it serves the
- // same captcha in audio format.
- //
- // To serve a captcha as a downloadable file, the URL must be constructed in
- // such a way as if the file to serve is in "download" subdirectory:
- // "/download/B9QTvDV1RXbVJ3Ac.wav".
- //
- // To reload captcha (get a different solution for the same captcha id), append
- // "?reload=x" to URL, where x may be anything (for example, current time or a
- // random number to make browsers refetch an image instead of loading it from
- // cache).
- func Server(w, h int) http.Handler { return &captchaHandler{w, h} }
- func (h *captchaHandler) serve(w http.ResponseWriter, id, ext string, download bool) os.Error {
- if download {
- w.Header().Set("Content-Type", "application/octet-stream")
- }
- switch ext {
- case ".png":
- if !download {
- w.Header().Set("Content-Type", "image/png")
- }
- return WriteImage(w, id, h.imgWidth, h.imgHeight)
- case ".wav":
- //XXX(dchest) Workaround for Chrome: it wants content-length,
- //or else will start playing NOT from the beginning.
- //Filed issue: http://code.google.com/p/chromium/issues/detail?id=80565
- d := globalStore.Get(id, false)
- if d == nil {
- return ErrNotFound
- }
- a := NewAudio(d)
- if !download {
- w.Header().Set("Content-Type", "audio/x-wav")
- }
- w.Header().Set("Content-Length", strconv.Itoa(a.EncodedLen()))
- _, err := a.WriteTo(w)
- return err
- }
- return ErrNotFound
- }
- func (h *captchaHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
- dir, file := path.Split(r.URL.Path)
- ext := path.Ext(file)
- id := file[:len(file)-len(ext)]
- if ext == "" || id == "" {
- http.NotFound(w, r)
- return
- }
- if r.FormValue("reload") != "" {
- Reload(id)
- }
- download := path.Base(dir) == "download"
- if h.serve(w, id, ext, download) == ErrNotFound {
- http.NotFound(w, r)
- }
- // Ignore other errors.
- }
|