2016-03-21 19:28:42 -04:00
|
|
|
// Copyright 2016 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 (
|
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
|
|
|
|
2017-01-10 04:55:03 -05:00
|
|
|
// Os points to an Os Afero file system.
|
|
|
|
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.
|
|
|
|
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{
|
|
|
|
Source: base,
|
|
|
|
Destination: base,
|
|
|
|
Os: &afero.OsFs{},
|
2017-02-04 22:20:06 -05:00
|
|
|
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
|
|
|
}
|