前言
工作需要,第一次使用 Go 來實戰項目。
需求:採用 golang 實現一個 webapi 的中轉網關,將一些資源檔通過 http 協議上傳至 FastDFS 分布式檔案儲存體系統。
一、FastDFS 與 golang 對接的代碼
github:https://github.com/weilaihui/fdfs_client
原始碼可以 clone 下來看看,go 文法很簡單
基本使用:(client_test.go 中有 test 案例代碼)
package mainimport ( "fmt" "io/ioutil" "github.com/weilaihui/fdfs_client")func main() { ff, _ := ioutil.ReadFile("1.jpg") fmt.Println("image len:", len(ff)) /* hosts := []string{"10.0.1.32"} port := 22122 minConns := 10 maxConns := 150 connPool,_ := fdfs_client.NewConnectionPool(hosts, port, minConns, maxConns) */ path := "client.conf" fds, error := fdfs_client.NewFdfsClient(path) if fds == nil { fmt.Println("conn error: %s", error) var test string fmt.Scanln(&test) return } uploadResponse, err := fds.UploadByBuffer(ff, "jpg") if uploadResponse == nil { fmt.Println("upload error: %s", err) var test string fmt.Scanln(&test) return } fmt.Println("group name:", uploadResponse.GroupName) fmt.Println("remote file id:", uploadResponse.RemoteFileId) var test string fmt.Scanln(&test)}
二、簡單的 WebAPI Gateway
beego 架構 go 圈很有名氣,國內大學著作,考慮到這次工程較小,暫未使用起來。
go 實現一個 api 網關也是相當的簡單:
package mainimport ( "fmt" "net/http"
"io/ioutil"
)func main() { http.HandleFunc("/", func(rw http.ResponseWriter, req *http.Request) { rw.Write([]byte("Hello go web")) }) http.HandleFunc("/upload", upload) http.ListenAndServe("localhost:8888", nil) fmt.Println("End.")}func upload(rw http.ResponseWriter, req *http.Request) { fmt.Println("Header", req.Header) fmt.Println("Content-Type", req.Header.Get("Content-Type")) fmt.Println("Body", req.Body)
// 擷取 body 的全部內容
/*
len := req.ContentLength body := make([]byte, len) req.Body.Read(body) rw.Write([]byte("Response Body ...."))
*/
data, _ := ioutil.ReadAll(req.Body)
}
PS:以上代碼只是自己筆記使用,因為剛入手 go 不熟,僅供學習。
檔案上傳中轉,如果是較大的檔案,則採用將資料分區傳輸的方式進行。