}
func (f *File) UniqueID() string {
- if f.uniqueID == "" {
- f.uniqueID = helpers.Md5String(f.LogicalName())
- }
return f.uniqueID
}
}
func (f *File) Section() string {
- if f.section != "" {
- return f.section
- }
- f.section = helpers.GuessSection(f.Dir())
return f.section
}
func (f *File) LogicalName() string {
- if f.logicalName != "" {
- return f.logicalName
- }
- _, f.logicalName = filepath.Split(f.relpath)
return f.logicalName
}
}
func (f *File) Dir() string {
- if f.dir != "" {
- return f.dir
- }
- f.dir, _ = filepath.Split(f.relpath)
return f.dir
}
func (f *File) Extension() string {
- if f.ext != "" {
- return f.ext
- }
- f.ext = strings.TrimPrefix(filepath.Ext(f.LogicalName()), ".")
return f.ext
}
}
func NewFile(relpath string) *File {
- return &File{
+ f := &File{
relpath: relpath,
}
+
+ f.dir, _ = filepath.Split(f.relpath)
+ _, f.logicalName = filepath.Split(f.relpath)
+ f.ext = strings.TrimPrefix(filepath.Ext(f.LogicalName()), ".")
+ f.section = helpers.GuessSection(f.Dir())
+ f.uniqueID = helpers.Md5String(f.LogicalName())
+
+ return f
}
func NewFileFromAbs(base, fullpath string, content io.Reader) (f *File, err error) {