mirror of
https://github.com/cheat/cheat.git
synced 2026-03-07 03:03:32 +01:00
Bumps [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) from 5.16.5 to 5.17.0. - [Release notes](https://github.com/go-git/go-git/releases) - [Commits](https://github.com/go-git/go-git/compare/v5.16.5...v5.17.0) --- updated-dependencies: - dependency-name: github.com/go-git/go-git/v5 dependency-version: 5.17.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
115 lines
2.5 KiB
Go
115 lines
2.5 KiB
Go
package polyfill
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/go-git/go-billy/v5"
|
|
)
|
|
|
|
// Polyfill is a helper that implements all missing method from billy.Filesystem.
|
|
type Polyfill struct {
|
|
billy.Basic
|
|
c capabilities
|
|
}
|
|
|
|
type capabilities struct{ tempfile, dir, symlink, chroot, chmod bool }
|
|
|
|
// New creates a new filesystem wrapping up 'fs' the intercepts all the calls
|
|
// made and errors if fs doesn't implement any of the billy interfaces.
|
|
func New(fs billy.Basic) billy.Filesystem {
|
|
if original, ok := fs.(billy.Filesystem); ok {
|
|
return original
|
|
}
|
|
|
|
h := &Polyfill{Basic: fs}
|
|
|
|
_, h.c.tempfile = h.Basic.(billy.TempFile)
|
|
_, h.c.dir = h.Basic.(billy.Dir)
|
|
_, h.c.symlink = h.Basic.(billy.Symlink)
|
|
_, h.c.chroot = h.Basic.(billy.Chroot)
|
|
_, h.c.chmod = h.Basic.(billy.Chmod)
|
|
return h
|
|
}
|
|
|
|
func (h *Polyfill) TempFile(dir, prefix string) (billy.File, error) {
|
|
if !h.c.tempfile {
|
|
return nil, billy.ErrNotSupported
|
|
}
|
|
|
|
return h.Basic.(billy.TempFile).TempFile(dir, prefix)
|
|
}
|
|
|
|
func (h *Polyfill) ReadDir(path string) ([]os.FileInfo, error) {
|
|
if !h.c.dir {
|
|
return nil, billy.ErrNotSupported
|
|
}
|
|
|
|
return h.Basic.(billy.Dir).ReadDir(path)
|
|
}
|
|
|
|
func (h *Polyfill) MkdirAll(filename string, perm os.FileMode) error {
|
|
if !h.c.dir {
|
|
return billy.ErrNotSupported
|
|
}
|
|
|
|
return h.Basic.(billy.Dir).MkdirAll(filename, perm)
|
|
}
|
|
|
|
func (h *Polyfill) Symlink(target, link string) error {
|
|
if !h.c.symlink {
|
|
return billy.ErrNotSupported
|
|
}
|
|
|
|
return h.Basic.(billy.Symlink).Symlink(target, link)
|
|
}
|
|
|
|
func (h *Polyfill) Readlink(link string) (string, error) {
|
|
if !h.c.symlink {
|
|
return "", billy.ErrNotSupported
|
|
}
|
|
|
|
return h.Basic.(billy.Symlink).Readlink(link)
|
|
}
|
|
|
|
func (h *Polyfill) Lstat(path string) (os.FileInfo, error) {
|
|
if !h.c.symlink {
|
|
return nil, billy.ErrNotSupported
|
|
}
|
|
|
|
return h.Basic.(billy.Symlink).Lstat(path)
|
|
}
|
|
|
|
func (h *Polyfill) Chroot(path string) (billy.Filesystem, error) {
|
|
if !h.c.chroot {
|
|
return nil, billy.ErrNotSupported
|
|
}
|
|
|
|
return h.Basic.(billy.Chroot).Chroot(path)
|
|
}
|
|
|
|
func (h *Polyfill) Chmod(path string, mode os.FileMode) error {
|
|
if !h.c.chmod {
|
|
return billy.ErrNotSupported
|
|
}
|
|
|
|
return h.Basic.(billy.Chmod).Chmod(path, mode)
|
|
}
|
|
|
|
func (h *Polyfill) Root() string {
|
|
if !h.c.chroot {
|
|
return string(filepath.Separator)
|
|
}
|
|
|
|
return h.Basic.(billy.Chroot).Root()
|
|
}
|
|
|
|
func (h *Polyfill) Underlying() billy.Basic {
|
|
return h.Basic
|
|
}
|
|
|
|
// Capabilities implements the Capable interface.
|
|
func (h *Polyfill) Capabilities() billy.Capability {
|
|
return billy.Capabilities(h.Basic)
|
|
}
|