mirror of
https://gitee.com/goploy/goploy.git
synced 2024-12-02 12:10:05 +08:00
40 lines
757 B
Go
40 lines
757 B
Go
// Copyright 2022 The Goploy Authors. All rights reserved.
|
|
// Use of this source code is governed by a GPLv3-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package response
|
|
|
|
import (
|
|
"io"
|
|
"net/http"
|
|
"os"
|
|
"strconv"
|
|
)
|
|
|
|
type File struct {
|
|
Filename string
|
|
}
|
|
|
|
//JSON response
|
|
func (f File) Write(w http.ResponseWriter) error {
|
|
file, err := os.Open(f.Filename)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
fileStat, err := file.Stat()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
w.Header().Set("Content-Disposition", "attachment; filename="+fileStat.Name())
|
|
w.Header().Set("Content-Type", "application/x-asciicast")
|
|
w.Header().Set("Content-Length", strconv.FormatInt(fileStat.Size(), 10))
|
|
|
|
_, err = io.Copy(w, file)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|