mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
86e2789960
* update github.com/PuerkitoBio/goquery * update github.com/alecthomas/chroma * update github.com/blevesearch/bleve/v2 * update github.com/caddyserver/certmagic * update github.com/go-enry/go-enry/v2 * update github.com/go-git/go-billy/v5 * update github.com/go-git/go-git/v5 * update github.com/go-redis/redis/v8 * update github.com/go-testfixtures/testfixtures/v3 * update github.com/jaytaylor/html2text * update github.com/json-iterator/go * update github.com/klauspost/compress * update github.com/markbates/goth * update github.com/mattn/go-isatty * update github.com/mholt/archiver/v3 * update github.com/microcosm-cc/bluemonday * update github.com/minio/minio-go/v7 * update github.com/prometheus/client_golang * update github.com/unrolled/render * update github.com/xanzy/go-gitlab * update github.com/yuin/goldmark * update github.com/yuin/goldmark-highlighting Co-authored-by: techknowlogick <techknowlogick@gitea.io>
145 lines
3.0 KiB
Go
Vendored
145 lines
3.0 KiB
Go
Vendored
// +build !js
|
|
|
|
// Package osfs provides a billy filesystem for the OS.
|
|
package osfs // import "github.com/go-git/go-billy/v5/osfs"
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"path/filepath"
|
|
"sync"
|
|
|
|
"github.com/go-git/go-billy/v5"
|
|
"github.com/go-git/go-billy/v5/helper/chroot"
|
|
)
|
|
|
|
const (
|
|
defaultDirectoryMode = 0755
|
|
defaultCreateMode = 0666
|
|
)
|
|
|
|
// Default Filesystem representing the root of the os filesystem.
|
|
var Default = &OS{}
|
|
|
|
// OS is a filesystem based on the os filesystem.
|
|
type OS struct{}
|
|
|
|
// New returns a new OS filesystem.
|
|
func New(baseDir string) billy.Filesystem {
|
|
return chroot.New(Default, baseDir)
|
|
}
|
|
|
|
func (fs *OS) Create(filename string) (billy.File, error) {
|
|
return fs.OpenFile(filename, os.O_RDWR|os.O_CREATE|os.O_TRUNC, defaultCreateMode)
|
|
}
|
|
|
|
func (fs *OS) OpenFile(filename string, flag int, perm os.FileMode) (billy.File, error) {
|
|
if flag&os.O_CREATE != 0 {
|
|
if err := fs.createDir(filename); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
|
|
f, err := os.OpenFile(filename, flag, perm)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &file{File: f}, err
|
|
}
|
|
|
|
func (fs *OS) createDir(fullpath string) error {
|
|
dir := filepath.Dir(fullpath)
|
|
if dir != "." {
|
|
if err := os.MkdirAll(dir, defaultDirectoryMode); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (fs *OS) ReadDir(path string) ([]os.FileInfo, error) {
|
|
l, err := ioutil.ReadDir(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var s = make([]os.FileInfo, len(l))
|
|
for i, f := range l {
|
|
s[i] = f
|
|
}
|
|
|
|
return s, nil
|
|
}
|
|
|
|
func (fs *OS) Rename(from, to string) error {
|
|
if err := fs.createDir(to); err != nil {
|
|
return err
|
|
}
|
|
|
|
return rename(from, to)
|
|
}
|
|
|
|
func (fs *OS) MkdirAll(path string, perm os.FileMode) error {
|
|
return os.MkdirAll(path, defaultDirectoryMode)
|
|
}
|
|
|
|
func (fs *OS) Open(filename string) (billy.File, error) {
|
|
return fs.OpenFile(filename, os.O_RDONLY, 0)
|
|
}
|
|
|
|
func (fs *OS) Stat(filename string) (os.FileInfo, error) {
|
|
return os.Stat(filename)
|
|
}
|
|
|
|
func (fs *OS) Remove(filename string) error {
|
|
return os.Remove(filename)
|
|
}
|
|
|
|
func (fs *OS) TempFile(dir, prefix string) (billy.File, error) {
|
|
if err := fs.createDir(dir + string(os.PathSeparator)); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
f, err := ioutil.TempFile(dir, prefix)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return &file{File: f}, nil
|
|
}
|
|
|
|
func (fs *OS) Join(elem ...string) string {
|
|
return filepath.Join(elem...)
|
|
}
|
|
|
|
func (fs *OS) RemoveAll(path string) error {
|
|
return os.RemoveAll(filepath.Clean(path))
|
|
}
|
|
|
|
func (fs *OS) Lstat(filename string) (os.FileInfo, error) {
|
|
return os.Lstat(filepath.Clean(filename))
|
|
}
|
|
|
|
func (fs *OS) Symlink(target, link string) error {
|
|
if err := fs.createDir(link); err != nil {
|
|
return err
|
|
}
|
|
|
|
return os.Symlink(target, link)
|
|
}
|
|
|
|
func (fs *OS) Readlink(link string) (string, error) {
|
|
return os.Readlink(link)
|
|
}
|
|
|
|
// Capabilities implements the Capable interface.
|
|
func (fs *OS) Capabilities() billy.Capability {
|
|
return billy.DefaultCapabilities
|
|
}
|
|
|
|
// file is a wrapper for an os.File which adds support for file locking.
|
|
type file struct {
|
|
*os.File
|
|
m sync.Mutex
|
|
}
|