Deprecate .File.Extension
authorSara Op den Orth <sara@opdenorth.com>
Thu, 24 Mar 2022 12:24:30 +0000 (13:24 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 26 Mar 2022 09:03:36 +0000 (10:03 +0100)
Fixes #9352

hugolib/hugo_sites.go
source/fileInfo.go

index 182d6bad18b0c2502f0d4605884f5ab07aa60e85..9b27ae5e376d5287cb426d3899b5b7bd8edb7de7 100644 (file)
@@ -978,7 +978,7 @@ func (h *HugoSites) readData(f source.File) (any, error) {
        defer file.Close()
        content := helpers.ReaderToBytes(file)
 
-       format := metadecoders.FormatFromString(f.Extension())
+       format := metadecoders.FormatFromString(f.Ext())
        return metadecoders.Default.Unmarshal(content, format)
 }
 
index 606b8b02572cd0407a26042e9571e0bf6c5a828a..13c4495bf26d6e712fc2ee14b0ceab5759cb95c2 100644 (file)
@@ -70,11 +70,12 @@ type FileWithoutOverlap interface {
        // The directory is relative to the content root.
        Dir() string
 
-       // Extension gets the file extension, i.e "myblogpost.md" will return "md".
+       // Extension is an alias to Ext().
+       // Deprecated: Use Ext instead.
        Extension() string
 
-       // Ext is an alias for Extension.
-       Ext() string // Hmm... Deprecate Extension
+       // Ext gets the file extension, i.e "myblogpost.md" will return "md".
+       Ext() string
 
        // LogicalName is filename and extension of the file.
        LogicalName() string
@@ -139,7 +140,10 @@ func (fi *FileInfo) Path() string { return fi.relPath }
 func (fi *FileInfo) Dir() string { return fi.relDir }
 
 // Extension is an alias to Ext().
-func (fi *FileInfo) Extension() string { return fi.Ext() }
+func (fi *FileInfo) Extension() string {
+       helpers.Deprecated(".File.Extension", "Use .File.Ext instead. ", false)
+       return fi.Ext()
+}
 
 // Ext returns a file's extension without the leading period (ie. "md").
 func (fi *FileInfo) Ext() string { return fi.ext }