This file is indexed.

/usr/share/gocode/src/github.com/emicklei/go-restful/examples/restful-form-handling.go is in golang-github-emicklei-go-restful-dev 1.2-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
package main

import (
	"fmt"
	"github.com/emicklei/go-restful"
	"github.com/gorilla/schema"
	"io"
	"net/http"
)

// This example shows how to handle a POST of a HTML form that uses the standard x-www-form-urlencoded content-type.
// It uses the gorilla web tool kit schema package to decode the form data into a struct.
//
// GET http://localhost:8080/profiles
//

type Profile struct {
	Name string
	Age  int
}

var decoder *schema.Decoder

func main() {
	decoder = schema.NewDecoder()
	ws := new(restful.WebService)
	ws.Route(ws.POST("/profiles").Consumes("application/x-www-form-urlencoded").To(postAdddress))
	ws.Route(ws.GET("/profiles").To(addresssForm))
	restful.Add(ws)
	http.ListenAndServe(":8080", nil)
}

func postAdddress(req *restful.Request, resp *restful.Response) {
	err := req.Request.ParseForm()
	if err != nil {
		resp.WriteErrorString(http.StatusBadRequest, err.Error())
		return
	}
	p := new(Profile)
	err = decoder.Decode(p, req.Request.PostForm)
	if err != nil {
		resp.WriteErrorString(http.StatusBadRequest, err.Error())
		return
	}
	io.WriteString(resp.ResponseWriter, fmt.Sprintf("<html><body>Name=%s, Age=%d</body></html>", p.Name, p.Age))
}

func addresssForm(req *restful.Request, resp *restful.Response) {
	io.WriteString(resp.ResponseWriter,
		`<html>
		<body>
		<h1>Enter Profile</h1>
		<form method="post">
		    <label>Name:</label>
			<input type="text" name="Name"/>
			<label>Age:</label>
		    <input type="text" name="Age"/>
			<input type="Submit" />
		</form>
		</body>
		</html>`)
}