2020-11-13 15:51:07 +03:00
// Copyright 2020 The Gitea Authors. All rights reserved.
2022-11-27 21:20:29 +03:00
// SPDX-License-Identifier: MIT
2020-11-13 15:51:07 +03:00
2021-06-09 02:33:54 +03:00
package web
2020-11-13 15:51:07 +03:00
import (
2022-08-28 12:43:25 +03:00
goctx "context"
2020-11-13 15:51:07 +03:00
"errors"
"fmt"
"io"
"net/http"
"os"
"path"
"strings"
2021-01-20 04:47:43 +03:00
"code.gitea.io/gitea/modules/context"
2020-11-18 01:44:52 +03:00
"code.gitea.io/gitea/modules/httpcache"
2020-11-13 15:51:07 +03:00
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/storage"
2021-01-26 18:36:53 +03:00
"code.gitea.io/gitea/modules/templates"
2023-03-08 15:17:39 +03:00
"code.gitea.io/gitea/modules/util"
2021-01-30 11:55:53 +03:00
"code.gitea.io/gitea/modules/web/middleware"
2022-01-20 14:41:25 +03:00
"code.gitea.io/gitea/modules/web/routing"
2021-06-09 20:53:16 +03:00
"code.gitea.io/gitea/services/auth"
2020-11-13 15:51:07 +03:00
2021-01-05 16:05:40 +03:00
"gitea.com/go-chi/session"
2020-11-13 15:51:07 +03:00
)
func storageHandler ( storageSetting setting . Storage , prefix string , objStore storage . ObjectStorage ) func ( next http . Handler ) http . Handler {
2022-03-23 00:02:26 +03:00
prefix = strings . Trim ( prefix , "/" )
2022-01-20 14:41:25 +03:00
funcInfo := routing . GetFuncInfo ( storageHandler , prefix )
2020-11-13 15:51:07 +03:00
return func ( next http . Handler ) http . Handler {
if storageSetting . ServeDirect {
return http . HandlerFunc ( func ( w http . ResponseWriter , req * http . Request ) {
if req . Method != "GET" && req . Method != "HEAD" {
next . ServeHTTP ( w , req )
return
}
2022-03-23 00:02:26 +03:00
if ! strings . HasPrefix ( req . URL . Path , "/" + prefix + "/" ) {
2020-11-13 15:51:07 +03:00
next . ServeHTTP ( w , req )
return
}
2022-01-20 14:41:25 +03:00
routing . UpdateFuncInfo ( req . Context ( ) , funcInfo )
2020-11-13 15:51:07 +03:00
2022-03-23 00:02:26 +03:00
rPath := strings . TrimPrefix ( req . URL . Path , "/" + prefix + "/" )
2023-03-08 15:17:39 +03:00
rPath = util . CleanPath ( strings . ReplaceAll ( rPath , "\\" , "/" ) )
2022-03-23 00:02:26 +03:00
2020-11-13 15:51:07 +03:00
u , err := objStore . URL ( rPath , path . Base ( rPath ) )
if err != nil {
if os . IsNotExist ( err ) || errors . Is ( err , os . ErrNotExist ) {
log . Warn ( "Unable to find %s %s" , prefix , rPath )
2022-03-23 07:54:07 +03:00
http . Error ( w , "file not found" , http . StatusNotFound )
2020-11-13 15:51:07 +03:00
return
}
log . Error ( "Error whilst getting URL for %s %s. Error: %v" , prefix , rPath , err )
2022-03-23 07:54:07 +03:00
http . Error ( w , fmt . Sprintf ( "Error whilst getting URL for %s %s" , prefix , rPath ) , http . StatusInternalServerError )
2020-11-13 15:51:07 +03:00
return
}
2022-03-23 00:02:26 +03:00
2020-11-13 15:51:07 +03:00
http . Redirect (
w ,
req ,
u . String ( ) ,
2022-05-19 18:20:34 +03:00
http . StatusTemporaryRedirect ,
2020-11-13 15:51:07 +03:00
)
} )
}
return http . HandlerFunc ( func ( w http . ResponseWriter , req * http . Request ) {
if req . Method != "GET" && req . Method != "HEAD" {
next . ServeHTTP ( w , req )
return
}
2022-03-23 00:02:26 +03:00
if ! strings . HasPrefix ( req . URL . Path , "/" + prefix + "/" ) {
2020-11-13 15:51:07 +03:00
next . ServeHTTP ( w , req )
return
}
2022-01-20 14:41:25 +03:00
routing . UpdateFuncInfo ( req . Context ( ) , funcInfo )
2020-11-13 15:51:07 +03:00
2022-03-23 00:02:26 +03:00
rPath := strings . TrimPrefix ( req . URL . Path , "/" + prefix + "/" )
2023-03-08 15:17:39 +03:00
rPath = util . CleanPath ( strings . ReplaceAll ( rPath , "\\" , "/" ) )
2021-03-23 20:20:24 +03:00
if rPath == "" {
2022-03-23 07:54:07 +03:00
http . Error ( w , "file not found" , http . StatusNotFound )
2021-03-23 20:20:24 +03:00
return
}
2020-11-18 01:44:52 +03:00
fi , err := objStore . Stat ( rPath )
if err == nil && httpcache . HandleTimeCache ( req , w , fi ) {
return
}
2022-01-20 20:46:10 +03:00
// If we have matched and access to release or issue
2020-11-13 15:51:07 +03:00
fr , err := objStore . Open ( rPath )
if err != nil {
if os . IsNotExist ( err ) || errors . Is ( err , os . ErrNotExist ) {
log . Warn ( "Unable to find %s %s" , prefix , rPath )
2022-03-23 07:54:07 +03:00
http . Error ( w , "file not found" , http . StatusNotFound )
2020-11-13 15:51:07 +03:00
return
}
log . Error ( "Error whilst opening %s %s. Error: %v" , prefix , rPath , err )
2022-03-23 07:54:07 +03:00
http . Error ( w , fmt . Sprintf ( "Error whilst opening %s %s" , prefix , rPath ) , http . StatusInternalServerError )
2020-11-13 15:51:07 +03:00
return
}
defer fr . Close ( )
_ , err = io . Copy ( w , fr )
if err != nil {
log . Error ( "Error whilst rendering %s %s. Error: %v" , prefix , rPath , err )
2022-03-23 07:54:07 +03:00
http . Error ( w , fmt . Sprintf ( "Error whilst rendering %s %s" , prefix , rPath ) , http . StatusInternalServerError )
2020-11-13 15:51:07 +03:00
return
}
} )
}
}
2021-06-09 02:33:54 +03:00
type dataStore map [ string ] interface { }
2020-11-13 15:51:07 +03:00
2021-01-26 18:36:53 +03:00
func ( d * dataStore ) GetData ( ) map [ string ] interface { } {
2021-06-09 02:33:54 +03:00
return * d
2020-11-13 15:51:07 +03:00
}
2021-01-26 18:36:53 +03:00
// Recovery returns a middleware that recovers from any panics and writes a 500 and a log if so.
// This error will be created with the gitea 500 page.
2022-08-28 12:43:25 +03:00
func Recovery ( ctx goctx . Context ) func ( next http . Handler ) http . Handler {
_ , rnd := templates . HTMLRenderer ( ctx )
2021-01-26 18:36:53 +03:00
return func ( next http . Handler ) http . Handler {
return http . HandlerFunc ( func ( w http . ResponseWriter , req * http . Request ) {
defer func ( ) {
if err := recover ( ) ; err != nil {
2022-01-20 14:41:25 +03:00
routing . UpdatePanicError ( req . Context ( ) , err )
combinedErr := fmt . Sprintf ( "PANIC: %v\n%s" , err , log . Stack ( 2 ) )
log . Error ( "%s" , combinedErr )
2021-01-26 18:36:53 +03:00
sessionStore := session . GetSession ( req )
2020-11-16 10:33:41 +03:00
2022-01-20 20:46:10 +03:00
lc := middleware . Locale ( w , req )
store := dataStore {
2021-06-09 02:33:54 +03:00
"Language" : lc . Language ( ) ,
"CurrentURL" : setting . AppSubURL + req . URL . RequestURI ( ) ,
2022-06-27 23:58:46 +03:00
"locale" : lc ,
2021-01-26 18:36:53 +03:00
}
2020-11-13 15:51:07 +03:00
2022-01-20 20:46:10 +03:00
user := context . GetContextUser ( req )
2021-05-15 18:32:09 +03:00
if user == nil {
// Get user from session if logged in - do not attempt to sign-in
2021-06-09 20:53:16 +03:00
user = auth . SessionUser ( sessionStore )
2021-05-15 18:32:09 +03:00
}
2021-01-26 18:36:53 +03:00
if user != nil {
2021-06-09 02:33:54 +03:00
store [ "IsSigned" ] = true
store [ "SignedUser" ] = user
store [ "SignedUserID" ] = user . ID
store [ "SignedUserName" ] = user . Name
store [ "IsAdmin" ] = user . IsAdmin
2021-01-26 18:36:53 +03:00
} else {
2021-06-09 02:33:54 +03:00
store [ "SignedUserID" ] = int64 ( 0 )
store [ "SignedUserName" ] = ""
2021-01-26 18:36:53 +03:00
}
2020-11-13 15:51:07 +03:00
2023-03-08 23:40:04 +03:00
httpcache . SetCacheControlInHeader ( w . Header ( ) , 0 , "no-transform" )
2021-08-06 23:47:10 +03:00
w . Header ( ) . Set ( ` X-Frame-Options ` , setting . CORSConfig . XFrameOptions )
2020-11-17 23:50:06 +03:00
2021-10-20 17:37:19 +03:00
if ! setting . IsProd {
2021-06-09 02:33:54 +03:00
store [ "ErrorMsg" ] = combinedErr
2021-01-26 18:36:53 +03:00
}
2022-03-23 07:54:07 +03:00
err = rnd . HTML ( w , http . StatusInternalServerError , "status/500" , templates . BaseVars ( ) . Merge ( store ) )
2021-01-26 18:36:53 +03:00
if err != nil {
log . Error ( "%v" , err )
}
}
} ( )
2020-11-17 23:50:06 +03:00
2021-01-26 18:36:53 +03:00
next . ServeHTTP ( w , req )
} )
2020-11-17 23:50:06 +03:00
}
2020-11-13 15:51:07 +03:00
}