Browse Source

remove pkg/http

Blake Mizerany 11 years ago
parent
commit
7b2474681b
1 changed files with 0 additions and 33 deletions
  1. 0 33
      pkg/http/http.go

+ 0 - 33
pkg/http/http.go

@@ -1,33 +0,0 @@
-package http
-
-import (
-	"encoding/json"
-	"fmt"
-	"io"
-	"net/http"
-	"net/url"
-
-	"github.com/coreos/etcd/log"
-)
-
-func DecodeJsonRequest(req *http.Request, data interface{}) error {
-	decoder := json.NewDecoder(req.Body)
-	if err := decoder.Decode(&data); err != nil && err != io.EOF {
-		log.Warnf("Malformed json request: %v", err)
-		return fmt.Errorf("Malformed json request: %v", err)
-	}
-	return nil
-}
-
-func Redirect(hostname string, w http.ResponseWriter, req *http.Request) {
-	originalURL := req.URL
-	redirectURL, _ := url.Parse(hostname)
-
-	// we need the original path and raw query
-	redirectURL.Path = originalURL.Path
-	redirectURL.RawQuery = originalURL.RawQuery
-	redirectURL.Fragment = originalURL.Fragment
-
-	log.Debugf("Redirect to %s", redirectURL.String())
-	http.Redirect(w, req, redirectURL.String(), http.StatusTemporaryRedirect)
-}