2014-04-16 00:27:29 +08:00
// Copyright 2014 The Gogs Authors. All rights reserved.
2018-11-18 19:45:40 +01:00
// Copyright 2018 The Gitea Authors. All rights reserved.
2014-04-16 00:27:29 +08:00
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package repo
import (
2016-11-26 10:08:31 -02:00
"fmt"
2014-07-26 02:28:04 -04:00
"io"
2017-05-05 08:03:54 +02:00
"path"
2016-11-26 11:26:03 -02:00
"strings"
2014-04-16 00:27:29 +08:00
2016-11-10 17:24:48 +01:00
"code.gitea.io/gitea/modules/base"
2020-01-17 20:16:05 +08:00
"code.gitea.io/gitea/modules/charset"
2016-11-10 17:24:48 +01:00
"code.gitea.io/gitea/modules/context"
2019-03-27 17:33:00 +08:00
"code.gitea.io/gitea/modules/git"
2019-02-12 15:09:43 +00:00
"code.gitea.io/gitea/modules/lfs"
2019-06-12 21:41:28 +02:00
"code.gitea.io/gitea/modules/log"
2014-04-16 00:27:29 +08:00
)
2016-11-24 15:04:31 +08:00
// ServeData download file from io.Reader
2016-03-11 11:56:52 -05:00
func ServeData ( ctx * context . Context , name string , reader io . Reader ) error {
2014-07-26 02:28:04 -04:00
buf := make ( [ ] byte , 1024 )
2015-08-12 04:49:51 +08:00
n , _ := reader . Read ( buf )
2017-04-20 05:38:56 +03:00
if n >= 0 {
2014-07-26 02:28:04 -04:00
buf = buf [ : n ]
}
2016-11-26 10:08:31 -02:00
ctx . Resp . Header ( ) . Set ( "Cache-Control" , "public,max-age=86400" )
2017-05-05 08:03:54 +02:00
name = path . Base ( name )
2016-11-26 10:08:31 -02:00
2016-11-26 11:26:03 -02:00
// Google Chrome dislike commas in filenames, so let's change it to a space
name = strings . Replace ( name , "," , " " , - 1 )
2016-11-26 10:08:31 -02:00
if base . IsTextFile ( buf ) || ctx . QueryBool ( "render" ) {
2020-01-17 20:16:05 +08:00
cs , err := charset . DetectEncoding ( buf )
if err != nil {
log . Error ( "Detect raw file %s charset failed: %v, using by default utf-8" , name , err )
cs = "utf-8"
}
ctx . Resp . Header ( ) . Set ( "Content-Type" , "text/plain; charset=" + strings . ToLower ( cs ) )
2016-11-26 10:08:31 -02:00
} else if base . IsImageFile ( buf ) || base . IsPDFFile ( buf ) {
ctx . Resp . Header ( ) . Set ( "Content-Disposition" , fmt . Sprintf ( ` inline; filename="%s" ` , name ) )
} else {
ctx . Resp . Header ( ) . Set ( "Content-Disposition" , fmt . Sprintf ( ` attachment; filename="%s" ` , name ) )
2014-07-26 02:28:04 -04:00
}
2016-11-26 10:08:31 -02:00
2019-06-12 21:41:28 +02:00
_ , err := ctx . Resp . Write ( buf )
if err != nil {
return err
}
_ , err = io . Copy ( ctx . Resp , reader )
2015-01-31 15:27:57 -05:00
return err
2014-11-16 21:32:26 -05:00
}
2016-11-24 15:04:31 +08:00
// ServeBlob download a git.Blob
2016-03-11 11:56:52 -05:00
func ServeBlob ( ctx * context . Context , blob * git . Blob ) error {
2017-11-29 02:50:39 +01:00
dataRc , err := blob . DataAsync ( )
2015-08-12 04:49:51 +08:00
if err != nil {
return err
}
2019-06-12 21:41:28 +02:00
defer func ( ) {
if err = dataRc . Close ( ) ; err != nil {
log . Error ( "ServeBlob: Close: %v" , err )
}
} ( )
2015-08-12 04:49:51 +08:00
2016-08-24 21:35:03 -07:00
return ServeData ( ctx , ctx . Repo . TreePath , dataRc )
2015-08-12 04:49:51 +08:00
}
2019-02-12 15:09:43 +00:00
// ServeBlobOrLFS download a git.Blob redirecting to LFS if necessary
func ServeBlobOrLFS ( ctx * context . Context , blob * git . Blob ) error {
dataRc , err := blob . DataAsync ( )
if err != nil {
return err
}
2019-06-12 21:41:28 +02:00
defer func ( ) {
if err = dataRc . Close ( ) ; err != nil {
log . Error ( "ServeBlobOrLFS: Close: %v" , err )
}
} ( )
2019-02-12 15:09:43 +00:00
if meta , _ := lfs . ReadPointerFile ( dataRc ) ; meta != nil {
meta , _ = ctx . Repo . Repository . GetLFSMetaObjectByOid ( meta . Oid )
if meta == nil {
return ServeBlob ( ctx , blob )
}
lfsDataRc , err := lfs . ReadMetaObject ( meta )
if err != nil {
return err
}
2019-10-16 06:55:31 +01:00
defer func ( ) {
if err = lfsDataRc . Close ( ) ; err != nil {
log . Error ( "ServeBlobOrLFS: Close: %v" , err )
}
} ( )
2019-02-12 15:09:43 +00:00
return ServeData ( ctx , ctx . Repo . TreePath , lfsDataRc )
}
return ServeBlob ( ctx , blob )
}
2016-11-24 15:04:31 +08:00
// SingleDownload download a file by repos path
2016-03-11 11:56:52 -05:00
func SingleDownload ( ctx * context . Context ) {
2016-08-24 21:35:03 -07:00
blob , err := ctx . Repo . Commit . GetBlobByPath ( ctx . Repo . TreePath )
2014-11-16 21:32:26 -05:00
if err != nil {
2015-12-09 20:46:05 -05:00
if git . IsErrNotExist ( err ) {
2018-01-10 22:34:17 +01:00
ctx . NotFound ( "GetBlobByPath" , nil )
2014-11-16 21:32:26 -05:00
} else {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "GetBlobByPath" , err )
2014-11-16 21:32:26 -05:00
}
return
}
if err = ServeBlob ( ctx , blob ) ; err != nil {
2018-01-10 22:34:17 +01:00
ctx . ServerError ( "ServeBlob" , err )
2014-11-16 21:32:26 -05:00
}
2014-04-16 00:27:29 +08:00
}
2018-11-18 19:45:40 +01:00
2019-02-12 15:09:43 +00:00
// SingleDownloadOrLFS download a file by repos path redirecting to LFS if necessary
func SingleDownloadOrLFS ( ctx * context . Context ) {
blob , err := ctx . Repo . Commit . GetBlobByPath ( ctx . Repo . TreePath )
if err != nil {
if git . IsErrNotExist ( err ) {
ctx . NotFound ( "GetBlobByPath" , nil )
} else {
ctx . ServerError ( "GetBlobByPath" , err )
}
return
}
if err = ServeBlobOrLFS ( ctx , blob ) ; err != nil {
ctx . ServerError ( "ServeBlobOrLFS" , err )
}
}
2018-11-18 19:45:40 +01:00
// DownloadByID download a file by sha1 ID
func DownloadByID ( ctx * context . Context ) {
blob , err := ctx . Repo . GitRepo . GetBlob ( ctx . Params ( "sha" ) )
if err != nil {
if git . IsErrNotExist ( err ) {
ctx . NotFound ( "GetBlob" , nil )
} else {
ctx . ServerError ( "GetBlob" , err )
}
return
}
if err = ServeBlob ( ctx , blob ) ; err != nil {
ctx . ServerError ( "ServeBlob" , err )
}
}
2019-02-12 15:09:43 +00:00
// DownloadByIDOrLFS download a file by sha1 ID taking account of LFS
func DownloadByIDOrLFS ( ctx * context . Context ) {
blob , err := ctx . Repo . GitRepo . GetBlob ( ctx . Params ( "sha" ) )
if err != nil {
if git . IsErrNotExist ( err ) {
ctx . NotFound ( "GetBlob" , nil )
} else {
ctx . ServerError ( "GetBlob" , err )
}
return
}
if err = ServeBlobOrLFS ( ctx , blob ) ; err != nil {
ctx . ServerError ( "ServeBlob" , err )
}
}