2023-05-09 09:34:36 +02:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/modules/git"
|
|
|
|
"code.gitea.io/gitea/modules/httpcache"
|
|
|
|
"code.gitea.io/gitea/modules/httplib"
|
|
|
|
"code.gitea.io/gitea/modules/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ServeBlob download a git.Blob
|
2023-07-07 07:31:56 +02:00
|
|
|
func ServeBlob(ctx *context.Base, filePath string, blob *git.Blob, lastModified *time.Time) error {
|
2023-05-09 09:34:36 +02:00
|
|
|
if httpcache.HandleGenericETagTimeCache(ctx.Req, ctx.Resp, `"`+blob.ID.String()+`"`, lastModified) {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
dataRc, err := blob.DataAsync()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
if err = dataRc.Close(); err != nil {
|
|
|
|
log.Error("ServeBlob: Close: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2023-05-21 03:50:53 +02:00
|
|
|
httplib.ServeContentByReader(ctx.Req, ctx.Resp, filePath, blob.Size(), dataRc)
|
2023-05-09 09:34:36 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-05-21 03:50:53 +02:00
|
|
|
func ServeContentByReader(ctx *context.Base, filePath string, size int64, reader io.Reader) {
|
2023-05-09 09:34:36 +02:00
|
|
|
httplib.ServeContentByReader(ctx.Req, ctx.Resp, filePath, size, reader)
|
|
|
|
}
|
|
|
|
|
2023-07-07 07:31:56 +02:00
|
|
|
func ServeContentByReadSeeker(ctx *context.Base, filePath string, modTime *time.Time, reader io.ReadSeeker) {
|
2023-05-09 09:34:36 +02:00
|
|
|
httplib.ServeContentByReadSeeker(ctx.Req, ctx.Resp, filePath, modTime, reader)
|
|
|
|
}
|