// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.ObjectModel;
using System.Collections.Specialized;
using System.Net.Http.Headers;
using System.Threading;
using System.Threading.Tasks;
using System.Web.Http;
namespace System.Net.Http
{
internal static class MultipartFormDataStreamProviderHelper
{
public static bool IsFileContent(HttpContent parent, HttpContentHeaders headers)
{
if (parent == null)
{
throw Error.ArgumentNull("parent");
}
if (headers == null)
{
throw Error.ArgumentNull("headers");
}
// For form data, Content-Disposition header is a requirement.
ContentDispositionHeaderValue contentDisposition = headers.ContentDisposition;
if (contentDisposition == null)
{
// If no Content-Disposition header was present.
throw Error.InvalidOperation(Properties.Resources.MultipartFormDataStreamProviderNoContentDisposition,
"Content-Disposition");
}
// The file name's existence indicates it is a file data.
if (!String.IsNullOrEmpty(contentDisposition.FileName))
{
return true;
}
return false;
}
///
/// Read the non-file contents as form data.
///
/// A representing the post processing.
public static async Task ReadFormDataAsync(Collection contents,
NameValueCollection formData, CancellationToken cancellationToken)
{
// Find instances of HttpContent for which we created a memory stream and read them asynchronously
// to get the string content and then add that as form data
foreach (HttpContent content in contents)
{
ContentDispositionHeaderValue contentDisposition = content.Headers.ContentDisposition;
// If FileName is null or empty, the content is form data and will be processed.
if (String.IsNullOrEmpty(contentDisposition.FileName))
{
// Extract name from Content-Disposition header. We know from earlier that the header is present.
string formFieldName = FormattingUtilities.UnquoteToken(contentDisposition.Name) ?? String.Empty;
// Read the contents as string data and add to form data
cancellationToken.ThrowIfCancellationRequested();
string formFieldValue = await content.ReadAsStringAsync();
formData.Add(formFieldName, formFieldValue);
}
}
}
}
}