Example #1
0
func TestNewSigner(t *testing.T) {
	s := signer.NewSigner("*****@*****.**", "secring.gpg", "./signatures")
	assert.NotNil(t, s, "We are expecting a UploadedFile object")
}
Example #2
0
func TestSignIt(t *testing.T) {
	sha256 := "f6f24a11d7cbbbc6d9440aca2eba0f6498755ca90adea14c5e233bf4c04bd928"
	s := signer.NewSigner("*****@*****.**", "secring.gpg", "./signatures")
	s.SignIt(sha256, sha256)
}
Example #3
0
// TODO
// return on erros should be a json as well
func UploadHandler(res http.ResponseWriter, req *http.Request) {
	var (
		status int
		err    error
	)

	defer func() {
		if nil != err {
			http.Error(res, err.Error(), status)
		}
	}()

	// parse request
	const _24K = (1 << 20) * 24
	if err = req.ParseMultipartForm(_24K); nil != err {
		status = http.StatusInternalServerError
		return
	}

	for _, fheaders := range req.MultipartForm.File {
		for _, hdr := range fheaders {

			// open uploaded
			var infile multipart.File
			if infile, err = hdr.Open(); nil != err {
				status = http.StatusInternalServerError
				return
			}

			// open destination
			var outfile *os.File
			if outfile, err = os.Create(filepath.Join(Config_map_string["upload_dir"], hdr.Filename)); nil != err {
				status = http.StatusInternalServerError
				return
			}

			defer outfile.Close()

			// 32K buffer copy
			var written int64
			if written, err = io.Copy(outfile, infile); nil != err {
				status = http.StatusInternalServerError
				return
			}

			uploaded_file := NewUploadedFile(hdr.Filename, "uploaded", written)

			signer := signer.NewSigner(Config_map_string["email"], "secring.gpg",
				Config_map_string["sign_dir"])

			go signer.SignIt(uploaded_file.Sha256, fmt.Sprintf("%s", uploaded_file.Sha256))

			js, err := json.Marshal(uploaded_file)

			if err != nil {
				http.Error(res, err.Error(), http.StatusInternalServerError)
				return
			}

			res.Header().Set("Content-Type", "application/json")
			res.Write(js)

		}
	}

}