2014-04-15 20:27:29 +04:00
// Copyright 2014 The Gogs Authors. All rights reserved.
// 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 15:08:31 +03:00
"fmt"
2014-07-26 10:28:04 +04:00
"io"
2017-05-05 09:03:54 +03:00
"path"
2016-11-26 16:26:03 +03:00
"strings"
2014-04-15 20:27:29 +04:00
2016-11-10 19:24:48 +03:00
"code.gitea.io/git"
2015-12-10 04:46:05 +03:00
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/base"
"code.gitea.io/gitea/modules/context"
2014-04-15 20:27:29 +04:00
)
2016-11-24 10:04:31 +03:00
// ServeData download file from io.Reader
2016-03-11 19:56:52 +03:00
func ServeData ( ctx * context . Context , name string , reader io . Reader ) error {
2014-07-26 10:28:04 +04:00
buf := make ( [ ] byte , 1024 )
2015-08-11 23:49:51 +03:00
n , _ := reader . Read ( buf )
2017-04-20 05:38:56 +03:00
if n >= 0 {
2014-07-26 10:28:04 +04:00
buf = buf [ : n ]
}
2016-11-26 15:08:31 +03:00
ctx . Resp . Header ( ) . Set ( "Cache-Control" , "public,max-age=86400" )
2017-05-05 09:03:54 +03:00
name = path . Base ( name )
2016-11-26 15:08:31 +03:00
2016-11-26 16:26:03 +03:00
// Google Chrome dislike commas in filenames, so let's change it to a space
name = strings . Replace ( name , "," , " " , - 1 )
2016-11-26 15:08:31 +03:00
if base . IsTextFile ( buf ) || ctx . QueryBool ( "render" ) {
2016-04-21 02:38:11 +03:00
ctx . Resp . Header ( ) . Set ( "Content-Type" , "text/plain; charset=utf-8" )
2016-11-26 15:08:31 +03: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 10:28:04 +04:00
}
2016-11-26 15:08:31 +03:00
2014-07-26 10:28:04 +04:00
ctx . Resp . Write ( buf )
2015-08-11 23:49:51 +03:00
_ , err := io . Copy ( ctx . Resp , reader )
2015-01-31 23:27:57 +03:00
return err
2014-11-17 05:32:26 +03:00
}
2016-11-24 10:04:31 +03:00
// ServeBlob download a git.Blob
2016-03-11 19:56:52 +03:00
func ServeBlob ( ctx * context . Context , blob * git . Blob ) error {
2015-08-11 23:49:51 +03:00
dataRc , err := blob . Data ( )
if err != nil {
return err
}
2016-08-25 07:35:03 +03:00
return ServeData ( ctx , ctx . Repo . TreePath , dataRc )
2015-08-11 23:49:51 +03:00
}
2016-11-24 10:04:31 +03:00
// SingleDownload download a file by repos path
2016-03-11 19:56:52 +03:00
func SingleDownload ( ctx * context . Context ) {
2016-08-25 07:35:03 +03:00
blob , err := ctx . Repo . Commit . GetBlobByPath ( ctx . Repo . TreePath )
2014-11-17 05:32:26 +03:00
if err != nil {
2015-12-10 04:46:05 +03:00
if git . IsErrNotExist ( err ) {
2014-11-17 05:32:26 +03:00
ctx . Handle ( 404 , "GetBlobByPath" , nil )
} else {
ctx . Handle ( 500 , "GetBlobByPath" , err )
}
return
}
if err = ServeBlob ( ctx , blob ) ; err != nil {
ctx . Handle ( 500 , "ServeBlob" , err )
}
2014-04-15 20:27:29 +04:00
}