2020-08-18 07:23:45 +03:00
// Copyright 2020 The Gitea 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 storage
import (
2020-10-13 06:58:34 +03:00
"context"
2020-08-18 07:23:45 +03:00
"io"
"net/url"
"os"
2022-03-14 18:18:27 +03:00
"path"
2020-08-18 07:23:45 +03:00
"path/filepath"
2022-03-14 18:18:27 +03:00
"strings"
2020-08-18 07:23:45 +03:00
2020-10-16 06:51:06 +03:00
"code.gitea.io/gitea/modules/log"
2020-08-18 07:23:45 +03:00
"code.gitea.io/gitea/modules/util"
)
2022-01-20 20:46:10 +03:00
var _ ObjectStorage = & LocalStorage { }
2020-08-18 07:23:45 +03:00
2020-10-13 06:58:34 +03:00
// LocalStorageType is the type descriptor for local storage
const LocalStorageType Type = "local"
// LocalStorageConfig represents the configuration for a local storage
type LocalStorageConfig struct {
2021-03-05 16:19:17 +03:00
Path string ` ini:"PATH" `
TemporaryPath string ` ini:"TEMPORARY_PATH" `
2020-10-13 06:58:34 +03:00
}
2020-08-18 07:23:45 +03:00
// LocalStorage represents a local files storage
type LocalStorage struct {
2021-03-05 16:19:17 +03:00
ctx context . Context
dir string
tmpdir string
2020-08-18 07:23:45 +03:00
}
// NewLocalStorage returns a local files
2020-10-13 06:58:34 +03:00
func NewLocalStorage ( ctx context . Context , cfg interface { } ) ( ObjectStorage , error ) {
configInterface , err := toConfig ( LocalStorageConfig { } , cfg )
if err != nil {
return nil , err
}
config := configInterface . ( LocalStorageConfig )
2020-10-16 06:51:06 +03:00
log . Info ( "Creating new Local Storage at %s" , config . Path )
2020-10-13 06:58:34 +03:00
if err := os . MkdirAll ( config . Path , os . ModePerm ) ; err != nil {
2020-08-18 07:23:45 +03:00
return nil , err
}
2021-03-05 16:19:17 +03:00
if config . TemporaryPath == "" {
config . TemporaryPath = config . Path + "/tmp"
}
2020-08-18 07:23:45 +03:00
return & LocalStorage {
2021-03-05 16:19:17 +03:00
ctx : ctx ,
dir : config . Path ,
tmpdir : config . TemporaryPath ,
2020-08-18 07:23:45 +03:00
} , nil
}
2022-03-23 00:02:26 +03:00
func ( l * LocalStorage ) buildLocalPath ( p string ) string {
return filepath . Join ( l . dir , path . Clean ( "/" + strings . ReplaceAll ( p , "\\" , "/" ) ) [ 1 : ] )
}
2020-08-18 07:23:45 +03:00
// Open a file
2020-09-08 18:45:10 +03:00
func ( l * LocalStorage ) Open ( path string ) ( Object , error ) {
2022-03-23 00:02:26 +03:00
return os . Open ( l . buildLocalPath ( path ) )
2020-08-18 07:23:45 +03:00
}
// Save a file
2021-04-03 19:19:59 +03:00
func ( l * LocalStorage ) Save ( path string , r io . Reader , size int64 ) ( int64 , error ) {
2022-03-23 00:02:26 +03:00
p := l . buildLocalPath ( path )
2020-08-18 07:23:45 +03:00
if err := os . MkdirAll ( filepath . Dir ( p ) , os . ModePerm ) ; err != nil {
return 0 , err
}
2021-03-05 16:19:17 +03:00
// Create a temporary file to save to
if err := os . MkdirAll ( l . tmpdir , os . ModePerm ) ; err != nil {
2020-08-18 07:23:45 +03:00
return 0 , err
}
2021-09-22 08:38:34 +03:00
tmp , err := os . CreateTemp ( l . tmpdir , "upload-*" )
2021-03-05 16:19:17 +03:00
if err != nil {
return 0 , err
}
tmpRemoved := false
defer func ( ) {
if ! tmpRemoved {
_ = util . Remove ( tmp . Name ( ) )
}
} ( )
2020-08-18 07:23:45 +03:00
2021-03-05 16:19:17 +03:00
n , err := io . Copy ( tmp , r )
2020-08-18 07:23:45 +03:00
if err != nil {
return 0 , err
}
2021-03-05 16:19:17 +03:00
if err := tmp . Close ( ) ; err != nil {
return 0 , err
}
2021-07-15 18:46:07 +03:00
if err := util . Rename ( tmp . Name ( ) , p ) ; err != nil {
2021-03-05 16:19:17 +03:00
return 0 , err
}
2022-09-24 16:04:14 +03:00
// Golang's tmp file (os.CreateTemp) always have 0o600 mode, so we need to change the file to follow the umask (as what Create/MkDir does)
if err := util . ApplyUmask ( p , os . ModePerm ) ; err != nil {
return 0 , err
}
2021-03-05 16:19:17 +03:00
tmpRemoved = true
return n , nil
2020-08-18 07:23:45 +03:00
}
2020-09-08 18:45:10 +03:00
// Stat returns the info of the file
2020-09-29 12:05:13 +03:00
func ( l * LocalStorage ) Stat ( path string ) ( os . FileInfo , error ) {
2022-03-23 00:02:26 +03:00
return os . Stat ( l . buildLocalPath ( path ) )
2022-03-14 18:18:27 +03:00
}
2020-08-18 07:23:45 +03:00
// Delete delete a file
func ( l * LocalStorage ) Delete ( path string ) error {
2022-03-23 00:02:26 +03:00
return util . Remove ( l . buildLocalPath ( path ) )
2020-08-18 07:23:45 +03:00
}
// URL gets the redirect URL to a file
func ( l * LocalStorage ) URL ( path , name string ) ( * url . URL , error ) {
return nil , ErrURLNotSupported
}
2020-09-29 12:05:13 +03:00
// IterateObjects iterates across the objects in the local storage
func ( l * LocalStorage ) IterateObjects ( fn func ( path string , obj Object ) error ) error {
return filepath . Walk ( l . dir , func ( path string , info os . FileInfo , err error ) error {
if err != nil {
return err
}
2020-10-13 06:58:34 +03:00
select {
case <- l . ctx . Done ( ) :
return l . ctx . Err ( )
default :
}
2020-09-29 12:05:13 +03:00
if path == l . dir {
return nil
}
if info . IsDir ( ) {
return nil
}
relPath , err := filepath . Rel ( l . dir , path )
if err != nil {
return err
}
obj , err := os . Open ( path )
if err != nil {
return err
}
defer obj . Close ( )
return fn ( relPath , obj )
} )
}
2020-10-13 06:58:34 +03:00
func init ( ) {
RegisterStorageType ( LocalStorageType , NewLocalStorage )
}