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
+14.7k Golang : package is not in GOROOT during compilation
+7.7k Golang : What fmt.Println() can do and println() cannot do
+33.5k Golang : convert(cast) bytes to string
+5.9k Golang : Get Hokkien(福建话)/Min-nan(閩南語) Pronounciations
+23.3k Find and replace a character in a string in Go
+5.4k Javascript : How to refresh page with JQuery ?
+4.8k Golang : micron to centimeter example
+29.5k Golang : How to declare kilobyte, megabyte, gigabyte, terabyte and so on?
+5.8k Javascript : Get operating system and browser information
+7.3k Golang : Rename part of filename
+12.8k Golang : Handle or parse date string with Z suffix(RFC3339) example
+5.1k PHP : Hide PHP version information from curl