2019-01-02 06:33:26 -05:00
|
|
|
// Copyright 2019 The Hugo Authors. All rights reserved.
|
2014-11-01 11:57:29 -04:00
|
|
|
//
|
2015-11-23 22:16:36 -05:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
2014-11-01 11:57:29 -04:00
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2015-11-23 22:16:36 -05:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-11-01 11:57:29 -04:00
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2016-04-09 19:36:53 -04:00
|
|
|
// Package hugofs provides the file systems used by Hugo.
|
2014-11-01 11:57:29 -04:00
|
|
|
package hugofs
|
|
|
|
|
2016-03-21 19:28:42 -04:00
|
|
|
import (
|
2020-02-19 10:59:54 -05:00
|
|
|
"fmt"
|
2019-01-02 06:33:26 -05:00
|
|
|
"os"
|
2020-02-19 04:39:36 -05:00
|
|
|
"strings"
|
2019-01-02 06:33:26 -05:00
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/config"
|
2017-06-13 13:07:35 -04:00
|
|
|
"github.com/spf13/afero"
|
2016-03-21 19:28:42 -04:00
|
|
|
)
|
2014-11-01 11:57:29 -04:00
|
|
|
|
2020-12-02 07:23:25 -05:00
|
|
|
// Os points to the (real) Os filesystem.
|
|
|
|
var Os = &afero.OsFs{}
|
2016-03-21 19:28:42 -04:00
|
|
|
|
2017-08-02 08:25:05 -04:00
|
|
|
// Fs abstracts the file system to separate source and destination file systems
|
|
|
|
// and allows both to be mocked for testing.
|
2017-01-10 04:55:03 -05:00
|
|
|
type Fs struct {
|
|
|
|
// Source is Hugo's source file system.
|
|
|
|
Source afero.Fs
|
2016-03-21 19:28:42 -04:00
|
|
|
|
2017-06-27 15:21:55 -04:00
|
|
|
// Destination is Hugo's destination file system.
|
2017-01-10 04:55:03 -05:00
|
|
|
Destination afero.Fs
|
2016-03-21 19:28:42 -04:00
|
|
|
|
2017-01-10 04:55:03 -05:00
|
|
|
// Os is an OS file system.
|
2017-08-02 08:25:05 -04:00
|
|
|
// NOTE: Field is currently unused.
|
2017-01-10 04:55:03 -05:00
|
|
|
Os afero.Fs
|
2016-03-21 19:28:42 -04:00
|
|
|
|
2017-01-10 04:55:03 -05:00
|
|
|
// WorkingDir is a read-only file system
|
|
|
|
// restricted to the project working dir.
|
2022-03-04 01:07:11 -05:00
|
|
|
// TODO(bep) get rid of this (se BaseFs)
|
2017-01-10 04:55:03 -05:00
|
|
|
WorkingDir *afero.BasePathFs
|
2016-03-21 19:28:42 -04:00
|
|
|
}
|
|
|
|
|
2017-01-10 04:55:03 -05:00
|
|
|
// NewDefault creates a new Fs with the OS file system
|
2016-03-21 19:28:42 -04:00
|
|
|
// as source and destination file systems.
|
2017-02-04 22:20:06 -05:00
|
|
|
func NewDefault(cfg config.Provider) *Fs {
|
2017-01-10 04:55:03 -05:00
|
|
|
fs := &afero.OsFs{}
|
2017-02-04 22:20:06 -05:00
|
|
|
return newFs(fs, cfg)
|
2016-03-21 19:28:42 -04:00
|
|
|
}
|
|
|
|
|
2017-03-09 08:18:12 -05:00
|
|
|
// NewMem creates a new Fs with the MemMapFs
|
2017-01-10 04:55:03 -05:00
|
|
|
// as source and destination file systems.
|
2016-03-21 19:28:42 -04:00
|
|
|
// Useful for testing.
|
2017-02-04 22:20:06 -05:00
|
|
|
func NewMem(cfg config.Provider) *Fs {
|
2017-01-10 04:55:03 -05:00
|
|
|
fs := &afero.MemMapFs{}
|
2017-02-04 22:20:06 -05:00
|
|
|
return newFs(fs, cfg)
|
2016-03-21 19:28:42 -04:00
|
|
|
}
|
|
|
|
|
2017-02-04 22:20:06 -05:00
|
|
|
// NewFrom creates a new Fs based on the provided Afero Fs
|
|
|
|
// as source and destination file systems.
|
|
|
|
// Useful for testing.
|
|
|
|
func NewFrom(fs afero.Fs, cfg config.Provider) *Fs {
|
|
|
|
return newFs(fs, cfg)
|
|
|
|
}
|
|
|
|
|
|
|
|
func newFs(base afero.Fs, cfg config.Provider) *Fs {
|
2017-01-10 04:55:03 -05:00
|
|
|
return &Fs{
|
2022-03-11 03:48:20 -05:00
|
|
|
Source: base,
|
|
|
|
Destination: base,
|
|
|
|
Os: &afero.OsFs{},
|
|
|
|
WorkingDir: getWorkingDirFs(base, cfg),
|
2017-01-10 04:55:03 -05:00
|
|
|
}
|
2016-03-21 19:28:42 -04:00
|
|
|
}
|
|
|
|
|
2017-02-04 22:20:06 -05:00
|
|
|
func getWorkingDirFs(base afero.Fs, cfg config.Provider) *afero.BasePathFs {
|
|
|
|
workingDir := cfg.GetString("workingDir")
|
2016-03-21 19:28:42 -04:00
|
|
|
|
|
|
|
if workingDir != "" {
|
2017-01-10 04:55:03 -05:00
|
|
|
return afero.NewBasePathFs(afero.NewReadOnlyFs(base), workingDir).(*afero.BasePathFs)
|
2016-03-21 19:28:42 -04:00
|
|
|
}
|
|
|
|
|
2017-01-10 04:55:03 -05:00
|
|
|
return nil
|
2016-03-21 19:28:42 -04:00
|
|
|
}
|
2019-01-02 06:33:26 -05:00
|
|
|
|
|
|
|
func isWrite(flag int) bool {
|
|
|
|
return flag&os.O_RDWR != 0 || flag&os.O_WRONLY != 0
|
|
|
|
}
|
2020-02-19 04:39:36 -05:00
|
|
|
|
|
|
|
// MakeReadableAndRemoveAllModulePkgDir makes any subdir in dir readable and then
|
|
|
|
// removes the root.
|
|
|
|
// TODO(bep) move this to a more suitable place.
|
|
|
|
//
|
|
|
|
func MakeReadableAndRemoveAllModulePkgDir(fs afero.Fs, dir string) (int, error) {
|
|
|
|
// Safe guard
|
|
|
|
if !strings.Contains(dir, "pkg") {
|
2020-02-19 10:59:54 -05:00
|
|
|
panic(fmt.Sprint("invalid dir:", dir))
|
2020-02-19 04:39:36 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
counter := 0
|
|
|
|
afero.Walk(fs, dir, func(path string, info os.FileInfo, err error) error {
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if info.IsDir() {
|
|
|
|
counter++
|
|
|
|
fs.Chmod(path, 0777)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
return counter, fs.RemoveAll(dir)
|
|
|
|
}
|