mirror of
				https://gitcode.com/gitea/gitea.git
				synced 2025-10-31 08:28:38 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			641 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			641 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2023 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package context
 | |
| 
 | |
| import (
 | |
| 	"io"
 | |
| 	"net/http"
 | |
| 
 | |
| 	"code.gitea.io/gitea/modules/httplib"
 | |
| )
 | |
| 
 | |
| type ServeHeaderOptions httplib.ServeHeaderOptions
 | |
| 
 | |
| func (ctx *Context) SetServeHeaders(opt *ServeHeaderOptions) {
 | |
| 	httplib.ServeSetHeaders(ctx.Resp, (*httplib.ServeHeaderOptions)(opt))
 | |
| }
 | |
| 
 | |
| // ServeContent serves content to http request
 | |
| func (ctx *Context) ServeContent(r io.ReadSeeker, opts *ServeHeaderOptions) {
 | |
| 	httplib.ServeSetHeaders(ctx.Resp, (*httplib.ServeHeaderOptions)(opts))
 | |
| 	http.ServeContent(ctx.Resp, ctx.Req, opts.Filename, opts.LastModified, r)
 | |
| }
 | 
