学习build-web-application-with-golang第四章内容

GITHUB网址:

https://github.com/astaxie/build-web-application-with-golang

内容

login.gtpl

<html>
<head>
<title>
hello, go form
</title>
</head>
<body>
<form action="/login" method="post">
	<input type="checkbox" name="interest" value="football">足球
	<input type="checkbox" name="interest" value="basketball">篮球
	<input type="checkbox" name="interest" value="tennis">网球
	username:<input type="text" name="username">
	age:<input type="text" name="age">
	password:<input type="password" name="password">
	<input type="hidden" name="token" value="{{.}}">
	<input type="submit" value="login">
</form>
</body>
</html>

  upload.gtpl

<html>
<head>
<title>
hello, go upload
</title>
</head>
<body>
<form action="/upload" method="post" enctype="multipart/form-data">
	<input type="file" name="uploadfile" />

	<input type="hidden" name="token" value="{{.}}">
	<input type="submit" value="upload">
</form>
</body>
</html>

  go.main

package main

import (
	"crypto/md5"
	"fmt"
	"html/template"
	"io"
	"log"
	"net/http"
	"os"
	"strconv"
	"strings"
	"time"
)

func sayHelloName(w http.ResponseWriter, r *http.Request) {
	r.ParseForm()
	fmt.Println(r.Form)
	fmt.Println("path", r.URL.Path)
	fmt.Println("scheme", r.URL.Scheme)
	fmt.Println(r.Form["url_long"])
	for k, v := range r.Form {
		fmt.Println("key: ", k)
		fmt.Println("val: ", strings.Join(v, ""))
	}
	fmt.Fprintf(w, "Hello astaxie!")
}

func login(w http.ResponseWriter, r *http.Request) {
	fmt.Println("method: ", r.Method)
	if r.Method == "GET" {
		crutime := time.Now().Unix()
		h := md5.New()
		io.WriteString(h, strconv.FormatInt(crutime, 10))
		token := fmt.Sprintf("%x", h.Sum(nil))

		t, _ := template.ParseFiles("login.gtpl")
		t.Execute(w, token)
		log.Println(t.Execute(w, nil))
	} else {
		r.ParseForm()
		token := r.Form.Get("token")
		if token != "" {
			log.Printf("token is ok")
		} else {
			log.Fatal("no token")
		}
		fmt.Println("username: ", template.HTMLEscapeString(r.Form.Get("username")))
		fmt.Println("password:", r.Form["password"])
		fmt.Println("token:", r.Form["token"])
		age, err := strconv.Atoi(r.Form.Get("age"))
		if err != nil {
			log.Print(err)
		}
		if age > 100 {
			log.Print("too long")
		} else {
			fmt.Println("age:", r.Form["age"])
		}

		template.HTMLEscape(w, []byte(r.Form.Get("username")))

	}
}

func upload(w http.ResponseWriter, r *http.Request) {
	fmt.Println("method:", r.Method)
	if r.Method == "GET" {
		crutime := time.Now().Unix()
		h := md5.New()
		io.WriteString(h, strconv.FormatInt(crutime, 10))
		token := fmt.Sprintf("%x", h.Sum(nil))

		t, _ := template.ParseFiles("upload.gtpl")
		t.Execute(w, token)
	} else {
		r.ParseMultipartForm(32 << 20)
		file, handler, err := r.FormFile("uploadfile")
		if err != nil {
			fmt.Println(err)
			return
		}

		defer file.Close()
		fmt.Fprintf(w, "%v", handler.Header)
		f, err := os.OpenFile("./"+handler.Filename, os.O_WRONLY|os.O_CREATE, 0666)
		if err != nil {
			fmt.Println(err)
			return
		}
		defer f.Close()
		io.Copy(f, file)
	}

}

func main() {
	http.HandleFunc("/", sayHelloName)
	http.HandleFunc("/login", login)
	http.HandleFunc("/upload", upload)
	err := http.ListenAndServe(":9090", nil)
	if err != nil {
		log.Fatal(err)
	}
}

  clientupload/main.go

package main

import (
	"bytes"
	"fmt"
	"io"
	"io/ioutil"
	"mime/multipart"
	"net/http"
	"os"
)

func postFile(filename string, targetUrl string) error {
	bodyBuf := &bytes.Buffer{}
	bodyWriter := multipart.NewWriter(bodyBuf)

	fileWriter, err := bodyWriter.CreateFormFile("uploadfile", filename)
	if err != nil {
		fmt.Println("error writing to buff")
		return err
	}
	fh, err := os.Open(filename)
	if err != nil {
		fmt.Println("error opening to buff")
		return err
	}
	defer fh.Close()

	_, err = io.Copy(fileWriter, fh)
	if err != nil {
		fmt.Println("error Copy")
		return err
	}

	contentType := bodyWriter.FormDataContentType()
	bodyWriter.Close()

	resp, err := http.Post(targetUrl, contentType, bodyBuf)
	if err != nil {
		fmt.Println("error Post")
		return err
	}
	defer resp.Body.Close()

	resp_body, err := ioutil.ReadAll(resp.Body)
	if err != nil {
		fmt.Println("error ReadAll")
		return err
	}
	fmt.Println(resp.Status)
	fmt.Println(string(resp_body))
	return nil
}

func main() {
	target_url := "http://localhost:9090/upload"
	filename := "./bee-1.8.3.tar.gz"
	postFile(filename, target_url)
}

  

时间: 2024-11-02 02:59:53

学习build-web-application-with-golang第四章内容的相关文章

Keeping Your Data Secure with Web Application Firewall

Abstract: How does a data leak occur? What should we do in case of data leaks? How should we prevent data leaks? 81.9% of network attackers are able to successfully intrude into another computer within one minute. A vast majority of attackers are abl

registered the JBDC driver [oracle.jdbc.OracleDriver] but failed to unregister it when the web application was stopped. (转)

最近项目中遇见一问题,在开发环境没有问题的代码,到了生产环境就会报如下错误:     严重: A web application registered the JBDC driver [oracle.jdbc.OracleDriver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unreg

Asp.Net Web API 2第十四课——Content Negotiation(内容协商)

原文:Asp.Net Web API 2第十四课--Content Negotiation(内容协商) 前言 阅读本文之前,您也可以到Asp.Net Web API 2 系列导航进行查看 http://www.cnblogs.com/aehyok/p/3446289.html 本文描述ASP.NET Web API如何实现内容协商. HTTP规范(RFC 2616)将内容协商定义为"在有多个表现可用时,为一个给定的响应选择最佳表现的过程".在HTTP中内容协商的主要机制是以下请求报头:

[原创]web application中使用Profile应该注意的问题

转载请注明出处:菩提树下的杨过 http://blog.sqlsky.com  1.如何在web application中正确使用Profile web application与website的一个不同之处在于,web application中无法象website中那样,直接用类似Label1.Text = Profile.XXX;这样的方式引用Profile(编译会直接报错) 解决办法有二种:(1) 读取Profile值的代码改为: 1HttpContext.Current.Profile.G

Tomcat5.5 Administration Web Application配置

Tomcat5.5 Administration Web Application配置 Tomcat5.5默认安装时,并没有提供 Administration Web Application,需要另外下载安装,到这里下载:http://tomcat.apache.org/download-55.cgi ,在下载页面的Binary Distributions栏下的第四大项,Administration Web Application ,下载后解压,然后把apache-tomcat-5.5.20/co

.NET之ASP Web Application快速入门(3)(转载)

application|web|快速入门 文件Global.asax 除了编写UI(Use Interface:用户界面)以外,我们还可以在Web Application中添加"application"级别的控制逻辑代码以及事件触发程序.这些代码不会去操作产生UI,并且基本上不会响应于单独的页面请求,它们负责的是处理高级别的application事件,包括Application_Start.Application_End.Session_Start和Session_End.这些控制逻辑

.NET之ASP Web Application快速入门(1)(转载)

application|web|快速入门 什么是 ASP.NET Application ? ASP.NET这么定义Application:它是运行在Web应用服务器上的一个虚拟目录及其子目录下的所有文件.页面.模块以及可执行代码的总和.比如说,一个叫做"order"的application可能就是Web服务器的一个"/order"虚拟目录.虚拟目录可以通过Internet Services Manager设置,它可以包含任何子目录. Web服务器上的每一个ASP.

一步一步SharePoint 2007之三:创建Web Application

摘要 体验完看到管理界面的惊喜后,我们将着手创建自己的网站了,这可是多么让人骄傲的目标啊!呵呵 ,不过别骄傲,SharePoint之旅充满了无数的挑战和困难,我们得做好相当的思想准备哦:) 要想创建自己的网站,就需要先创建一个Web Application.在创建的过程中我们会碰到一个小小的困 难,不过还好,我们有足够的信心去解决它! 正文 要想创建Web Application,需要Windows SharePoint Services Web Application服务处于启动状态 ,不过由

web application stress tool的问题

问题描述 web application stress tool的问题 第一次使用web application stress tool测试,在网上找了一些相关操作步骤,大致差不多,我参考的是http://www.csharpwin.com/dotnetspace/1132.shtml, 在执行到"测试脚本制作"的第4步即输入我要测试的网址,出现404找不到页面的问题,而且网上实在找不到相关问题...求大哥大姐们帮忙