Golang : Force download file example
For this tutorial, we will learn how to create a page that will force download a file to the client. Instead of waiting for the user to click the download link to a file, the server will force download the file with the help of meta refresh
.
In case the force download doesn't work... you still can offer a link for the visitor to click on to initiate the download process.
Here you go!
package main
import (
"bytes"
"fmt"
"io/ioutil"
"net/http"
"strconv"
"time"
)
// change to your target filename
// that you want to force download to your visitor browser
var file = "img.pdf"
func Home(w http.ResponseWriter, r *http.Request) {
// We will force download after 2 seconds. If you want to increase the delay
// simply change 2 to whatever number you wanted.
html := "<html><meta http-equiv='refresh' content='2; url=http://localhost:8080/download' />"
html = html + "Downloading file now. If the download does not happen automagically. Please "
html = html + "<a href=" + file + ">click here</a></html>"
w.Write([]byte(html))
}
func ForceDownload(w http.ResponseWriter, r *http.Request) {
downloadBytes, err := ioutil.ReadFile(file)
if err != nil {
fmt.Println(err)
}
// set the default MIME type to send
mime := http.DetectContentType(downloadBytes)
fileSize := len(string(downloadBytes))
// Generate the server headers
w.Header().Set("Content-Type", mime)
w.Header().Set("Content-Disposition", "attachment; filename="+file+"")
w.Header().Set("Expires", "0")
w.Header().Set("Content-Transfer-Encoding", "binary")
w.Header().Set("Content-Length", strconv.Itoa(fileSize))
w.Header().Set("Content-Control", "private, no-transform, no-store, must-revalidate")
//b := bytes.NewBuffer(downloadBytes)
//if _, err := b.WriteTo(w); err != nil {
// fmt.Fprintf(w, "%s", err)
// }
// force it down the client's.....
http.ServeContent(w, r, file, time.Now(), bytes.NewReader(downloadBytes))
}
func main() {
http.HandleFunc("/", Home)
http.HandleFunc("/download", ForceDownload)
// SECURITY : Only expose the file permitted for download.
http.Handle("/"+file, http.FileServer(http.Dir("./")))
http.ListenAndServe(":8080", nil)
}
In the code above, change the file img.pdf
to whatever filename that you have on the same directory as the program.
Point your browser to localhost:8080
and if everything goes smoothly, you should see the message and the download action is initiated automagically after 2 seconds.
Happy coding!
References:
https://www.codeigniter.com/userguide/helpers/downloadhelper.html#force_download
See also : Golang : How to stream file to client(browser) or write to http.ResponseWriter?
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+19.6k Golang : How to get own program name during runtime ?
+7k Golang : Calculate how many weeks left to go in a given year
+22.1k Golang : How to read JPG(JPEG), GIF and PNG files ?
+7.6k Javascript : How to check a browser's Do Not Track status?
+9.9k Golang : How to check if a website is served via HTTPS
+11.5k Golang : convert(cast) float to string
+29.5k Golang : How to get HTTP request header information?
+9.4k Golang : Detect number of active displays and the display's resolution
+19k Golang : Delete item from slice based on index/key position
+12k Golang : Get month name from date example
+10.8k Golang : Create S3 bucket with official aws-sdk-go package
+6.7k Golang : constant 20013 overflows byte error message