summaryrefslogtreecommitdiff
path: root/src/cmd/godoc/play-appengine.go
blob: 9e351d1a258f0ace60fa378486eade3478462ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Copyright 2012 The Go Authors.  All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// App Engine godoc Playground functionality.

// +build appengine

package main

import (
	"io"
	"net/http"

	"appengine"
	"appengine/urlfetch"
)

func bounceToPlayground(w http.ResponseWriter, req *http.Request) {
	c := appengine.NewContext(req)
	client := urlfetch.Client(c)
	url := playgroundBaseURL + req.URL.Path
	defer req.Body.Close()
	resp, err := client.Post(url, req.Header.Get("Content-type"), req.Body)
	if err != nil {
		http.Error(w, "Internal Server Error", 500)
		c.Errorf("making POST request: %v", err)
		return
	}
	defer resp.Body.Close()
	if _, err := io.Copy(w, resp.Body); err != nil {
		http.Error(w, "Internal Server Error", 500)
		c.Errorf("making POST request: %v", err)
	}
}