aboutsummaryrefslogtreecommitdiff
path: root/back-end/src/Model
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-10-14 12:57:11 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-10-14 12:57:11 -0400
commit76e4f83693a7055ef843f4674d2c10f5e45f105e (patch)
tree50b41ea368003190663877d40d223eb546f6bd18 /back-end/src/Model
parent4222ba02e0cdfa494592f7134d3c5b8dc56ee03d (diff)
passthrough file extensions & package updates
Diffstat (limited to 'back-end/src/Model')
-rw-r--r--back-end/src/Model/ContentManager.cs26
1 files changed, 18 insertions, 8 deletions
diff --git a/back-end/src/Model/ContentManager.cs b/back-end/src/Model/ContentManager.cs
index b5fc385..dc289fa 100644
--- a/back-end/src/Model/ContentManager.cs
+++ b/back-end/src/Model/ContentManager.cs
@@ -100,7 +100,7 @@ namespace Content.Publishing.Blog.Admin.Model
Length = length,
FileName = fileName,
//File path from ct
- FilePath = GetFileNameFromType(fileId, ct)
+ FilePath = GetFileNameFromTypeOrExtension(fileId, ct, fileName)
};
}
@@ -194,7 +194,7 @@ namespace Content.Publishing.Blog.Admin.Model
FileName = $"Content for post {postId}",
Id = postId,
Length = 0,
- FilePath = GetFileNameFromType(postId, ContentType.Html),
+ FilePath = GetFileNameFromTypeOrExtension(postId, ContentType.Html, null),
};
//Get the content index
@@ -287,14 +287,24 @@ namespace Content.Publishing.Blog.Admin.Model
return $"{context.ContentDir}/{meta.FilePath}";
}
- private static string GetFileNameFromType(string fileId, ContentType type)
+ private static string GetFileNameFromTypeOrExtension(string fileId, ContentType type, string? fileName)
{
- //Create file path from its id and file extension
- return type switch
+ if(Path.HasExtension(fileName))
{
- ContentType.Javascript => $"{fileId}.js",
- _ => $"{fileId}.{type.ToString().ToLowerInvariant()}",
- };
+ string extension = Path.GetExtension(fileName);
+ return $"{fileId}{extension}";
+ }
+ else
+ {
+ //Create file path from its id and file extension
+ string extension = type switch
+ {
+ ContentType.Javascript => ".js",
+ _ => type.ToString().ToLowerInvariant(),
+ };
+
+ return $"{fileId}.{extension}";
+ }
}
}
}