Added missing code to the ServeSinglePage. Bumped package version to 1.6.5
This commit is contained in:
parent
4617f861fc
commit
dc1abd516b
@ -666,9 +666,20 @@ namespace MontoyaTech.Rest.Net
|
|||||||
if (string.IsNullOrWhiteSpace(requestPath) || requestPath == "/" || requestPath == ".")
|
if (string.IsNullOrWhiteSpace(requestPath) || requestPath == "/" || requestPath == ".")
|
||||||
requestPath = indexFile;
|
requestPath = indexFile;
|
||||||
|
|
||||||
|
//See if there is a parent directory in the basePath, if so get it
|
||||||
|
var parentDirectory = basePath.Split(new char[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries).LastOrDefault();
|
||||||
|
|
||||||
//Break the request path into it's components so we can enfore staying in the base path.
|
//Break the request path into it's components so we can enfore staying in the base path.
|
||||||
var components = requestPath.Split(new char[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries).ToList();
|
var components = requestPath.Split(new char[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries).ToList();
|
||||||
|
|
||||||
|
//If the first component is the parent directory, then remove it
|
||||||
|
if (components.Count > 0 && components[0].Equals(parentDirectory, StringComparison.CurrentCultureIgnoreCase))
|
||||||
|
components.RemoveAt(0);
|
||||||
|
|
||||||
|
//Quirk, if the components is now empty, point to the indexFile
|
||||||
|
if (components.Count == 0)
|
||||||
|
components.Add(indexFile);
|
||||||
|
|
||||||
for (int i = 0; i < components.Count; i++)
|
for (int i = 0; i < components.Count; i++)
|
||||||
{
|
{
|
||||||
if (components[i].Trim() == "..")
|
if (components[i].Trim() == "..")
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
|
<AssemblyName>MontoyaTech.Rest.Net</AssemblyName>
|
||||||
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
|
<RootNamespace>MontoyaTech.Rest.Net</RootNamespace>
|
||||||
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
||||||
<Version>1.6.4</Version>
|
<Version>1.6.5</Version>
|
||||||
<PackageReleaseNotes></PackageReleaseNotes>
|
<PackageReleaseNotes></PackageReleaseNotes>
|
||||||
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
|
<PackageIcon>Logo_Symbol_Black_Outline.png</PackageIcon>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user