官术网_书友最值得收藏!

How to do it…

  1. Install github.com/asaskevich/govalidator and the github.com/gorilla/schema package using the go get command, as follows:
$ go get github.com/asaskevich/govalidator
$ go get github.com/gorilla/schema
  1. Create html-form-validation.go, where we will read an HTML form, decode it using github.com/gorilla/schema, and validate each field of it against a tag defined in the User struct using github.com/asaskevich/govalidator, as follows:
package main
import
(
"fmt"
"html/template"
"log"
"net/http"
"github.com/asaskevich/govalidator"
"github.com/gorilla/schema"
)
const
(
CONN_HOST = "localhost"
CONN_PORT = "8080"
USERNAME_ERROR_MESSAGE = "Please enter a valid Username"
PASSWORD_ERROR_MESSAGE = "Please enter a valid Password"
GENERIC_ERROR_MESSAGE = "Validation Error"
)
type User struct
{
Username string `valid:"alpha,required"`
Password string `valid:"alpha,required"`
}
func readForm(r *http.Request) *User
{
r.ParseForm()
user := new(User)
decoder := schema.NewDecoder()
decodeErr := decoder.Decode(user, r.PostForm)
if decodeErr != nil
{
log.Printf("error mapping parsed form data to struct : ",
decodeErr)
}
return user
}
func validateUser(w http.ResponseWriter, r *http.Request, user *User) (bool, string)
{
valid, validationError := govalidator.ValidateStruct(user)
if !valid
{
usernameError := govalidator.ErrorByField(validationError,
"Username")
passwordError := govalidator.ErrorByField(validationError,
"Password")
if usernameError != ""
{
log.Printf("username validation error : ", usernameError)
return valid, USERNAME_ERROR_MESSAGE
}
if passwordError != ""
{
log.Printf("password validation error : ", passwordError)
return valid, PASSWORD_ERROR_MESSAGE
}
}
return valid, GENERIC_ERROR_MESSAGE
}
func login(w http.ResponseWriter, r *http.Request)
{
if r.Method == "GET"
{
parsedTemplate, _ := template.ParseFiles("templates/
login-form.html")
parsedTemplate.Execute(w, nil)
}
else
{
user := readForm(r)
valid, validationErrorMessage := validateUser(w, r, user)
if !valid
{
fmt.Fprintf(w, validationErrorMessage)
return
}
fmt.Fprintf(w, "Hello "+user.Username+"!")
}
}
func main()
{
http.HandleFunc("/", login)
err := http.ListenAndServe(CONN_HOST+":"+CONN_PORT, nil)
if err != nil
{
log.Fatal("error starting http server : ", err)
return
}
}
  1. Run the program with the following command:
$ go run html-form-validation.go
主站蜘蛛池模板: 历史| 开原市| 施甸县| 隆子县| 平定县| 万安县| 罗平县| 澜沧| 平安县| 集安市| 桑植县| 双鸭山市| 浦北县| 廉江市| 江都市| 大竹县| 革吉县| 乳山市| 南靖县| 潢川县| 逊克县| 张家口市| 乃东县| 叙永县| 连江县| 侯马市| 内丘县| 龙泉市| 宁武县| 荃湾区| 伊川县| 枣强县| 新沂市| 泾源县| 乡城县| 中超| 堆龙德庆县| 前郭尔| 滁州市| 从化市| 察雅县|