2002-02-16 01:19:24 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2002-02-16 01:19:24 +00:00
|
|
|
#ifndef nsIFormSubmission_h___
|
|
|
|
#define nsIFormSubmission_h___
|
|
|
|
|
2013-05-29 20:43:41 +00:00
|
|
|
#include "mozilla/Attributes.h"
|
2010-02-25 05:58:16 +00:00
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
|
2002-02-16 01:19:24 +00:00
|
|
|
class nsIURI;
|
|
|
|
class nsIInputStream;
|
2005-01-12 19:45:38 +00:00
|
|
|
class nsGenericHTMLElement;
|
2005-11-08 22:45:49 +00:00
|
|
|
class nsILinkHandler;
|
2002-02-16 01:19:24 +00:00
|
|
|
class nsIContent;
|
|
|
|
class nsIFormControl;
|
|
|
|
class nsIDOMHTMLElement;
|
2002-03-13 06:08:56 +00:00
|
|
|
class nsIDocShell;
|
|
|
|
class nsIRequest;
|
2010-02-25 05:58:16 +00:00
|
|
|
class nsISaveAsCharset;
|
2010-02-25 05:58:18 +00:00
|
|
|
class nsIMultiplexInputStream;
|
2015-01-29 01:04:28 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class File;
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2002-02-16 01:19:24 +00:00
|
|
|
|
|
|
|
/**
|
2010-02-25 05:58:16 +00:00
|
|
|
* Class for form submissions; encompasses the function to call to submit as
|
2002-02-16 01:19:24 +00:00
|
|
|
* well as the form submission name/value pairs
|
|
|
|
*/
|
2010-02-25 05:58:17 +00:00
|
|
|
class nsFormSubmission
|
|
|
|
{
|
2010-02-25 05:58:16 +00:00
|
|
|
public:
|
2010-02-25 05:58:17 +00:00
|
|
|
virtual ~nsFormSubmission()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(nsFormSubmission);
|
|
|
|
}
|
2002-02-16 01:19:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Submit a name/value pair
|
|
|
|
*
|
|
|
|
* @param aName the name of the parameter
|
|
|
|
* @param aValue the value of the parameter
|
|
|
|
*/
|
2010-02-25 05:58:16 +00:00
|
|
|
virtual nsresult AddNameValuePair(const nsAString& aName,
|
2004-01-09 23:54:21 +00:00
|
|
|
const nsAString& aValue) = 0;
|
2002-02-16 01:19:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Submit a name/file pair
|
|
|
|
*
|
|
|
|
* @param aName the name of the parameter
|
Bug 1127150 - Use File's name instead of explicit file name in form submission related classes. r=baku
Our nsFormSubmission and subclasses accepted a third filename argument to
explicitly specify the filename. Since switching from nsIDOMBlob to File in Bug
1085283, we can read out the filename directly from the File. This simplifies
the code, but introduces a change in the way Firefox submits form data to
servers.
Consider the code:
var fd = new FormData();
fd.append("blob1", new Blob(["hi"]), ""); // explicit empty filename as third arg
fd.append("file1", new File(["hi"], "")); // File's name is empty, no third arg.
xhr.send(fd);
Previously, the request body had filename="" in the first case, and filename="blob" in the second.
This patch will change it to both cases result in filename=""
This behaviour isn't exactly specced anywhere, nor in the HTML spec [1], nor in
RFC 2388. In addition Blink (at least Chromium v40) has the same behaviour
introduced by this patch. So shipping it seems ok to me.
[1]: http://www.w3.org/html/wg/drafts/html/master/semantics.html#multipart/form-data-encoding-algorithm
--HG--
extra : rebase_source : 6631e6900fe1a9b991c397b76e5be6b913715c5a
2015-02-21 19:54:44 +00:00
|
|
|
* @param aBlob the file to submit. The file's name will be used
|
2010-02-25 05:58:16 +00:00
|
|
|
*/
|
|
|
|
virtual nsresult AddNameFilePair(const nsAString& aName,
|
Bug 1127150 - Use File's name instead of explicit file name in form submission related classes. r=baku
Our nsFormSubmission and subclasses accepted a third filename argument to
explicitly specify the filename. Since switching from nsIDOMBlob to File in Bug
1085283, we can read out the filename directly from the File. This simplifies
the code, but introduces a change in the way Firefox submits form data to
servers.
Consider the code:
var fd = new FormData();
fd.append("blob1", new Blob(["hi"]), ""); // explicit empty filename as third arg
fd.append("file1", new File(["hi"], "")); // File's name is empty, no third arg.
xhr.send(fd);
Previously, the request body had filename="" in the first case, and filename="blob" in the second.
This patch will change it to both cases result in filename=""
This behaviour isn't exactly specced anywhere, nor in the HTML spec [1], nor in
RFC 2388. In addition Blink (at least Chromium v40) has the same behaviour
introduced by this patch. So shipping it seems ok to me.
[1]: http://www.w3.org/html/wg/drafts/html/master/semantics.html#multipart/form-data-encoding-algorithm
--HG--
extra : rebase_source : 6631e6900fe1a9b991c397b76e5be6b913715c5a
2015-02-21 19:54:44 +00:00
|
|
|
mozilla::dom::File* aBlob) = 0;
|
2015-01-29 01:04:28 +00:00
|
|
|
|
2010-03-11 12:29:51 +00:00
|
|
|
/**
|
|
|
|
* Reports whether the instance supports AddIsindex().
|
|
|
|
*
|
|
|
|
* @return true if supported.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool SupportsIsindexSubmission()
|
2010-03-11 12:29:51 +00:00
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2010-03-11 12:29:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds an isindex value to the submission.
|
|
|
|
*
|
|
|
|
* @param aValue the field value
|
|
|
|
*/
|
|
|
|
virtual nsresult AddIsindex(const nsAString& aValue)
|
|
|
|
{
|
|
|
|
NS_NOTREACHED("AddIsindex called when not supported");
|
|
|
|
return NS_ERROR_UNEXPECTED;
|
|
|
|
}
|
|
|
|
|
2010-02-25 05:58:17 +00:00
|
|
|
/**
|
|
|
|
* Given a URI and the current submission, create the final URI and data
|
|
|
|
* stream that will be submitted. Subclasses *must* implement this.
|
|
|
|
*
|
|
|
|
* @param aURI the URI being submitted to [INOUT]
|
|
|
|
* @param aPostDataStream a data stream for POST data [OUT]
|
|
|
|
*/
|
|
|
|
virtual nsresult GetEncodedSubmission(nsIURI* aURI,
|
|
|
|
nsIInputStream** aPostDataStream) = 0;
|
|
|
|
|
2010-02-25 05:58:16 +00:00
|
|
|
/**
|
|
|
|
* Get the charset that will be used for submission.
|
2002-02-16 01:19:24 +00:00
|
|
|
*/
|
2010-02-25 05:58:16 +00:00
|
|
|
void GetCharset(nsACString& aCharset)
|
|
|
|
{
|
|
|
|
aCharset = mCharset;
|
|
|
|
}
|
2002-02-16 01:19:24 +00:00
|
|
|
|
2010-08-19 21:58:20 +00:00
|
|
|
nsIContent* GetOriginatingElement() const
|
|
|
|
{
|
|
|
|
return mOriginatingElement.get();
|
|
|
|
}
|
|
|
|
|
2010-02-25 05:58:16 +00:00
|
|
|
protected:
|
|
|
|
/**
|
|
|
|
* Can only be constructed by subclasses.
|
|
|
|
*
|
|
|
|
* @param aCharset the charset of the form as a string
|
2010-08-19 21:58:20 +00:00
|
|
|
* @param aOriginatingElement the originating element (can be null)
|
2010-02-25 05:58:16 +00:00
|
|
|
*/
|
2010-08-19 21:58:20 +00:00
|
|
|
nsFormSubmission(const nsACString& aCharset, nsIContent* aOriginatingElement)
|
2010-02-25 05:58:17 +00:00
|
|
|
: mCharset(aCharset)
|
2010-08-19 21:58:20 +00:00
|
|
|
, mOriginatingElement(aOriginatingElement)
|
2010-02-25 05:58:17 +00:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(nsFormSubmission);
|
|
|
|
}
|
|
|
|
|
|
|
|
// The name of the encoder charset
|
|
|
|
nsCString mCharset;
|
2010-08-19 21:58:20 +00:00
|
|
|
|
|
|
|
// Originating element.
|
|
|
|
nsCOMPtr<nsIContent> mOriginatingElement;
|
2010-02-25 05:58:17 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class nsEncodingFormSubmission : public nsFormSubmission
|
|
|
|
{
|
|
|
|
public:
|
2010-08-19 21:58:20 +00:00
|
|
|
nsEncodingFormSubmission(const nsACString& aCharset,
|
|
|
|
nsIContent* aOriginatingElement);
|
2010-02-25 05:58:17 +00:00
|
|
|
|
|
|
|
virtual ~nsEncodingFormSubmission();
|
2010-02-25 05:58:16 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Encode a Unicode string to bytes using the encoder (or just copy the input
|
|
|
|
* if there is no encoder).
|
|
|
|
* @param aStr the string to encode
|
|
|
|
* @param aResult the encoded string [OUT]
|
2010-11-23 08:50:55 +00:00
|
|
|
* @param aHeaderEncode If true, turns all linebreaks into spaces and escapes
|
|
|
|
* all quotes
|
2010-02-25 05:58:16 +00:00
|
|
|
* @throws an error if UnicodeToNewBytes fails
|
|
|
|
*/
|
2010-11-23 08:50:55 +00:00
|
|
|
nsresult EncodeVal(const nsAString& aStr, nsCString& aResult,
|
|
|
|
bool aHeaderEncode);
|
2010-02-25 05:58:16 +00:00
|
|
|
|
2010-02-25 05:58:17 +00:00
|
|
|
private:
|
2010-02-25 05:58:16 +00:00
|
|
|
// The encoder that will encode Unicode names and values
|
|
|
|
nsCOMPtr<nsISaveAsCharset> mEncoder;
|
|
|
|
};
|
2005-11-11 14:36:26 +00:00
|
|
|
|
2010-02-25 05:58:18 +00:00
|
|
|
/**
|
|
|
|
* Handle multipart/form-data encoding, which does files as well as normal
|
|
|
|
* inputs. This always does POST.
|
|
|
|
*/
|
|
|
|
class nsFSMultipartFormData : public nsEncodingFormSubmission
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @param aCharset the charset of the form as a string
|
|
|
|
*/
|
2010-08-19 21:58:20 +00:00
|
|
|
nsFSMultipartFormData(const nsACString& aCharset,
|
|
|
|
nsIContent* aOriginatingElement);
|
2010-02-25 05:58:18 +00:00
|
|
|
~nsFSMultipartFormData();
|
|
|
|
|
|
|
|
virtual nsresult AddNameValuePair(const nsAString& aName,
|
2015-03-21 16:28:04 +00:00
|
|
|
const nsAString& aValue) override;
|
2010-02-25 05:58:18 +00:00
|
|
|
virtual nsresult AddNameFilePair(const nsAString& aName,
|
2015-03-21 16:28:04 +00:00
|
|
|
mozilla::dom::File* aBlob) override;
|
2010-02-25 05:58:18 +00:00
|
|
|
virtual nsresult GetEncodedSubmission(nsIURI* aURI,
|
2015-03-21 16:28:04 +00:00
|
|
|
nsIInputStream** aPostDataStream) override;
|
2010-02-25 05:58:18 +00:00
|
|
|
|
|
|
|
void GetContentType(nsACString& aContentType)
|
|
|
|
{
|
|
|
|
aContentType =
|
|
|
|
NS_LITERAL_CSTRING("multipart/form-data; boundary=") + mBoundary;
|
|
|
|
}
|
|
|
|
|
2012-09-19 22:15:32 +00:00
|
|
|
nsIInputStream* GetSubmissionBody(uint64_t* aContentLength);
|
2010-02-25 05:58:18 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Roll up the data we have so far and add it to the multiplexed data stream.
|
|
|
|
*/
|
|
|
|
nsresult AddPostDataStream();
|
|
|
|
|
|
|
|
private:
|
|
|
|
/**
|
|
|
|
* The post data stream as it is so far. This is a collection of smaller
|
|
|
|
* chunks--string streams and file streams interleaved to make one big POST
|
|
|
|
* stream.
|
|
|
|
*/
|
|
|
|
nsCOMPtr<nsIMultiplexInputStream> mPostDataStream;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The current string chunk. When a file is hit, the string chunk gets
|
|
|
|
* wrapped up into an input stream and put into mPostDataStream so that the
|
|
|
|
* file input stream can then be appended and everything is in the right
|
|
|
|
* order. Then the string chunk gets appended to again as we process more
|
|
|
|
* name/value pairs.
|
|
|
|
*/
|
|
|
|
nsCString mPostDataChunk;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The boundary string to use after each "part" (the boundary that marks the
|
|
|
|
* end of a value). This is computed randomly and is different for each
|
|
|
|
* submission.
|
|
|
|
*/
|
|
|
|
nsCString mBoundary;
|
2012-09-19 22:15:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The total length in bytes of the streams that make up mPostDataStream
|
|
|
|
*/
|
|
|
|
uint64_t mTotalLength;
|
2010-02-25 05:58:18 +00:00
|
|
|
};
|
|
|
|
|
2002-02-16 01:19:24 +00:00
|
|
|
/**
|
|
|
|
* Get a submission object based on attributes in the form (ENCTYPE and METHOD)
|
|
|
|
*
|
|
|
|
* @param aForm the form to get a submission object based on
|
2010-08-19 21:58:20 +00:00
|
|
|
* @param aOriginatingElement the originating element (can be null)
|
2002-02-16 01:19:24 +00:00
|
|
|
* @param aFormSubmission the form submission object (out param)
|
|
|
|
*/
|
2005-01-12 19:45:38 +00:00
|
|
|
nsresult GetSubmissionFromForm(nsGenericHTMLElement* aForm,
|
2010-08-20 17:47:30 +00:00
|
|
|
nsGenericHTMLElement* aOriginatingElement,
|
2010-02-25 05:58:16 +00:00
|
|
|
nsFormSubmission** aFormSubmission);
|
2002-02-16 01:19:24 +00:00
|
|
|
|
|
|
|
#endif /* nsIFormSubmission_h___ */
|