-
Notifications
You must be signed in to change notification settings - Fork 8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Serve easily dynamic files with
DataFromReader
context method (#1304)
* Add DataFromReader context method * Replace fmt by strconv.FormatInt * Add pull request link to README
- Loading branch information
1 parent
5636afe
commit bf78038
Showing
6 changed files
with
116 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package render | ||
|
||
import ( | ||
"io" | ||
"net/http" | ||
"strconv" | ||
) | ||
|
||
type Reader struct { | ||
ContentType string | ||
ContentLength int64 | ||
Reader io.Reader | ||
Headers map[string]string | ||
} | ||
|
||
// Render (Reader) writes data with custom ContentType and headers. | ||
func (r Reader) Render(w http.ResponseWriter) (err error) { | ||
r.WriteContentType(w) | ||
r.Headers["Content-Length"] = strconv.FormatInt(r.ContentLength, 10) | ||
r.writeHeaders(w, r.Headers) | ||
_, err = io.Copy(w, r.Reader) | ||
return | ||
} | ||
|
||
func (r Reader) WriteContentType(w http.ResponseWriter) { | ||
writeContentType(w, []string{r.ContentType}) | ||
} | ||
|
||
func (r Reader) writeHeaders(w http.ResponseWriter, headers map[string]string) { | ||
header := w.Header() | ||
for k, v := range headers { | ||
if val := header[k]; len(val) == 0 { | ||
header[k] = []string{v} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters