1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
|
// Copyright (C) 2024 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
#include "qformdatabuilder.h"
#include <QtCore/private/qstringconverter_p.h>
#if QT_CONFIG(mimetype)
#include "QtCore/qmimedatabase.h"
#endif
#include <vector>
QT_BEGIN_NAMESPACE
/*!
\class QFormDataPartBuilder
\brief The QFormDataPartBuilder class is a convenience class to simplify
the construction of QHttpPart objects.
\since 6.8
\ingroup network
\ingroup shared
\inmodule QtNetwork
The QFormDataPartBuilder class can be used to build a QHttpPart object with
the content disposition header set to be form-data by default. Then the
generated object can be used as part of a multipart message (which is
represented by the QHttpMultiPart class).
\sa QHttpPart, QHttpMultiPart, QFormDataBuilder
*/
class QFormDataPartBuilderPrivate
{
public:
explicit QFormDataPartBuilderPrivate(QAnyStringView name);
QHttpPart build(QFormDataBuilder::Options options);
QString m_name;
QByteArray m_mimeType;
QString m_originalBodyName;
QHttpHeaders m_httpHeaders;
std::variant<QIODevice*, QByteArray> m_body;
};
QFormDataPartBuilderPrivate::QFormDataPartBuilderPrivate(QAnyStringView name)
: m_name{name.toString()}
{
}
static void escapeNameAndAppend(QByteArray &dst, QByteArrayView src)
{
for (auto c : src) {
if (c == '"' || c == '\\')
dst += '\\';
dst += c;
}
}
static void escapeNameAndAppend(QByteArray &dst, QStringView src)
{
qsizetype last = 0;
// equivalent to for (auto chunk : qTokenize(src, any_of("\\\""))), if there was such a thing
for (qsizetype i = 0, end = src.size(); i != end; ++i) {
const auto c = src[i];
if (c == u'"' || c == u'\\') {
const auto chunk = src.sliced(last, i - last);
dst += QUtf8::convertFromUnicode(chunk); // ### optimize
dst += '\\';
last = i;
}
}
dst += QUtf8::convertFromUnicode(src.sliced(last));
}
/*!
\fn QFormDataPartBuilder::QFormDataPartBuilder(QFormDataPartBuilder &&other) noexcept
Move-constructs a QFormDataPartBuilder instance, making it point at the same
object that \a other was pointing to.
*/
/*!
\fn QFormDataPartBuilder &QFormDataPartBuilder::operator=(QFormDataPartBuilder &&other)
Move-assigns \a other to this QFormDataPartBuilder instance.
*/
/*!
\fn QFormDataPartBuilder::QFormDataPartBuilder(const QFormDataPartBuilder &other)
Constructs a copy of \a other. The object is valid for as long as the associated
QFormDataBuilder has not been destroyed.
The data of the copy is shared (shallow copy): modifying one part will also change
the other.
\code
QFormDataPartBuilder foo()
{
QFormDataBuilder builder;
auto qfdpb1 = builder.part("First"_L1);
auto qfdpb2 = qfdpb1; // this creates a shallow copy
qfdpb2.setBodyDevice(&image, "cutecat.jpg"); // qfdpb1 is also modified
return qfdbp2; // invalid, builder is destroyed at the end of the scope
}
\endcode
*/
/*!
\fn QFormDataPartBuilder& QFormDataPartBuilder::operator=(const QFormDataPartBuilder &other)
Assigns \a other to QFormDataPartBuilder and returns a reference to this
QFormDataPartBuilder. The object is valid for as long as the associated QFormDataBuilder
has not been destroyed.
The data of the copy is shared (shallow copy): modifying one part will also change the other.
\code
QFormDataPartBuilder foo()
{
QFormDataBuilder builder;
auto qfdpb1 = builder.part("First"_L1);
auto qfdpb2 = qfdpb1; // this creates a shallow copy
qfdpb2.setBodyDevice(&image, "cutecat.jpg"); // qfdpb1 is also modified
return qfdbp2; // invalid, builder is destroyed at the end of the scope
}
\endcode
*/
/*!
\fn QFormDataPartBuilder::~QFormDataPartBuilder()
Destroys the QFormDataPartBuilder object.
*/
static void convertInto_impl(QByteArray &dst, QUtf8StringView in)
{
dst.clear();
dst += QByteArrayView{in}; // it's ASCII, anyway
}
static void convertInto_impl(QByteArray &dst, QLatin1StringView in)
{
dst.clear();
dst += QByteArrayView{in}; // it's ASCII, anyway
}
static void convertInto_impl(QByteArray &dst, QStringView in)
{
dst.resize(in.size());
(void)QLatin1::convertFromUnicode(dst.data(), in);
}
static void convertInto(QByteArray &dst, QAnyStringView in)
{
in.visit([&dst](auto in) { convertInto_impl(dst, in); });
}
QFormDataPartBuilder QFormDataPartBuilder::setBodyHelper(const QByteArray &data,
QAnyStringView name,
QAnyStringView mimeType)
{
Q_D(QFormDataPartBuilder);
d->m_originalBodyName = name.toString();
convertInto(d->m_mimeType, mimeType);
d->m_body = data;
return *this;
}
/*!
Sets \a data as the body of this MIME part and, if given, \a fileName as the
file name parameter in the content disposition header.
If \a mimeType is not given (is empty), then QFormDataPartBuilder tries to
auto-detect the mime-type of \a data using QMimeDatabase.
A subsequent call to setBodyDevice() discards the body and the device will
be used instead.
For a large amount of data (e.g. an image), setBodyDevice() is preferred,
which will not copy the data internally.
\sa setBodyDevice()
*/
QFormDataPartBuilder QFormDataPartBuilder::setBody(QByteArrayView data,
QAnyStringView fileName,
QAnyStringView mimeType)
{
return setBody(data.toByteArray(), fileName, mimeType);
}
/*!
Sets \a body as the body device of this part and \a fileName as the file
name parameter in the content disposition header.
If \a mimeType is not given (is empty), then QFormDataPartBuilder tries to
auto-detect the mime-type of \a body using QMimeDatabase.
A subsequent call to setBody() discards the body device and the data set by
setBody() will be used instead.
For large amounts of data this method should be preferred over setBody(),
because the content is not copied when using this method, but read
directly from the device.
\a body must be open and readable. QFormDataPartBuilder does not take
ownership of \a body, i.e. the device must be closed and destroyed if
necessary.
\note If \a body is sequential (e.g. sockets, but not files),
QNetworkAccessManager::post() should be called after \a body has emitted
finished().
\sa setBody(), QHttpPart::setBodyDevice()
*/
QFormDataPartBuilder QFormDataPartBuilder::setBodyDevice(QIODevice *body, QAnyStringView fileName,
QAnyStringView mimeType)
{
Q_D(QFormDataPartBuilder);
d->m_originalBodyName = fileName.toString();
convertInto(d->m_mimeType, mimeType);
d->m_body = body;
return *this;
}
/*!
Sets the headers specified in \a headers.
\note The "content-type" and "content-disposition" headers, if any are
specified in \a headers, will be overwritten by the class.
*/
QFormDataPartBuilder QFormDataPartBuilder::setHeaders(const QHttpHeaders &headers)
{
Q_D(QFormDataPartBuilder);
d->m_httpHeaders = headers;
return *this;
}
/*!
\internal
Generates a QHttpPart and sets the content disposition header as form-data.
When this function called, it uses the MIME database to deduce the type the
body based on its name and then sets the deduced type as the content type
header.
*/
QHttpPart QFormDataPartBuilderPrivate::build(QFormDataBuilder::Options options)
{
QHttpPart httpPart;
using Opt = QFormDataBuilder::Option;
QByteArray headerValue;
headerValue += "form-data; name=\"";
escapeNameAndAppend(headerValue, m_name);
headerValue += "\"";
if (!m_originalBodyName.isNull()) {
enum class Encoding { ASCII, Latin1, Utf8 } encoding = Encoding::ASCII;
for (QChar c : std::as_const(m_originalBodyName)) {
if (c > u'\xff') {
encoding = Encoding::Utf8;
break;
} else if (c > u'\x7f') {
encoding = Encoding::Latin1;
}
}
QByteArray enc;
if ((options & Opt::PreferLatin1EncodedFilename) && encoding != Encoding::Utf8)
enc = m_originalBodyName.toLatin1();
else
enc = m_originalBodyName.toUtf8();
headerValue += "; filename=\"";
if (options & Opt::UseRfc7578PercentEncodedFilename)
headerValue += enc.toPercentEncoding();
else
escapeNameAndAppend(headerValue, enc);
headerValue += "\"";
if (encoding != Encoding::ASCII && !(options & Opt::OmitRfc8187EncodedFilename)) {
// For 'filename*' production see
// https://datatracker.ietf.org/doc/html/rfc5987#section-3.2.1
// For providing both filename and filename* parameters see
// https://datatracker.ietf.org/doc/html/rfc6266#section-4.3 and
// https://datatracker.ietf.org/doc/html/rfc8187#section-4.2
if ((options & Opt::PreferLatin1EncodedFilename) && encoding == Encoding::Latin1)
headerValue += "; filename*=ISO-8859-1''";
else
headerValue += "; filename*=UTF-8''";
headerValue += enc.toPercentEncoding();
}
}
#if QT_CONFIG(mimetype)
if (m_mimeType.isEmpty()) {
// auto-detect
QMimeDatabase db;
convertInto(m_mimeType, std::visit([&](auto &arg) {
return db.mimeTypeForFileNameAndData(m_originalBodyName, arg);
}, m_body).name());
}
#endif
for (qsizetype i = 0; i < m_httpHeaders.size(); i++) {
httpPart.setRawHeader(QByteArrayView(m_httpHeaders.nameAt(i)).toByteArray(),
m_httpHeaders.valueAt(i).toByteArray());
}
if (!m_mimeType.isEmpty())
httpPart.setHeader(QNetworkRequest::ContentTypeHeader, m_mimeType);
httpPart.setHeader(QNetworkRequest::ContentDispositionHeader, std::move(headerValue));
if (auto d = std::get_if<QIODevice*>(&m_body))
httpPart.setBodyDevice(*d);
else if (auto b = std::get_if<QByteArray>(&m_body))
httpPart.setBody(*b);
else
Q_UNREACHABLE();
return httpPart;
}
/*!
\class QFormDataBuilder
\brief The QFormDataBuilder class is a convenience class to simplify
the construction of QHttpMultiPart objects.
\since 6.8
\ingroup network
\ingroup shared
\inmodule QtNetwork
The QFormDataBuilder class can be used to build a QHttpMultiPart object
with the content type set to be FormDataType by default.
The snippet below demonstrates how to build a multipart message with
QFormDataBuilder:
\code
QFormDataBuilder builder;
QFile image(u"../../pic.png"_s); image.open(QFile::ReadOnly);
QFile mask(u"../../mask.png"_s); mask.open(QFile::ReadOnly);
builder.part("image"_L1).setBodyDevice(&image, "the actual image");
builder.part("mask"_L1).setBodyDevice(&mask, "the mask image");
builder.part("prompt"_L1).setBody("Lobster wearing a beret");
builder.part("n"_L1).setBody("2");
builder.part("size"_L1).setBody("512x512");
std::unique_ptr<QHttpMultiPart> mp = builder.buildMultiPart();
\endcode
\sa QHttpPart, QHttpMultiPart, QFormDataPartBuilder
*/
class QFormDataBuilderPrivate
{
public:
std::vector<QFormDataPartBuilderPrivate> parts;
};
QFormDataPartBuilderPrivate* QFormDataPartBuilder::d_func()
{
return const_cast<QFormDataPartBuilderPrivate*>(std::as_const(*this).d_func());
}
const QFormDataPartBuilderPrivate* QFormDataPartBuilder::d_func() const
{
Q_ASSERT(m_index < d->parts.size());
return &d->parts[m_index];
}
/*!
\enum QFormDataBuilder::Option
Options controlling buildMultiPart().
Several current RFCs disagree on how, exactly, to format
\c{multipart/form-data}. Instead of hard-coding any one RFC, these options
give you control over which RFC to follow.
\value Default The default values, designed to maximize interoperability in
general. All options named below are off.
\value OmitRfc8187EncodedFilename
When a body-part's file-name contains non-US-ASCII characters,
\l{https://datatracker.ietf.org/doc/html/rfc6266#section-4.3}
{RFC 6266 Section 4.3} suggests to use
\l{https://datatracker.ietf.org/doc/html/rfc8187}{RFC 8187}-style
encoding (\c{filename*=utf-8''...}). The more recent
\l{https://datatracker.ietf.org/doc/html/rfc7578#section-4.2}
{RFC 7578 Section 4.2}, however, bans the use of that mechanism.
Both RFCs are current as of this writing, so this option allows you
to choose which one to follow. The default is to include the
RFC 8187-encoded \c{filename*} alongside the unencoded \c{filename},
as suggested by RFC 6266.
\value UseRfc7578PercentEncodedFilename
When a body-part's file-name contains non-US-ASCII characters,
\l{https://datatracker.ietf.org/doc/html/rfc7578#section-4.2}
{RFC 7578 Section 4.2} suggests to use percent-encoding of the octets
of the UTF-8-encoded file-name. It goes on to note that many
implementations, however, do \e{not} percent-encode the UTF-8-encoded
file-name, but just emit "raw" UTF-8 (with \c{"} and \c{\} escaped
using \c{\}). This is the default of QFormDataBuilder, too.
\value PreferLatin1EncodedFilename
\l{https://datatracker.ietf.org/doc/html/rfc5987#section-3.2}
{RFC 5987 Section 3.2} required recipients to support ISO-8859-1
("Latin-1") encoding. When a body-part's file-name contains
non-US-ASCII characters that, however, fit into Latin-1, this option
prefers to use ISO-8859-1 encoding over UTF-8. The more recent
\{https://datatracker.ietf.org/doc/html/rfc8187#appendix-A}{RFC 8187}
no longer requires ISO-8859-1 support, so the default is to send all
non-US-ASCII file-names in UTF-8 encoding instead.
\value StrictRfc7578
This option combines other options to select strict
\l{https://datatracker.ietf.org/doc/html/rfc7578}{RFC 7578}
compliance.
*/
/*!
Constructs an empty QFormDataBuilder object.
*/
QFormDataBuilder::QFormDataBuilder()
: d_ptr(new QFormDataBuilderPrivate())
{
}
/*!
Destroys the QFormDataBuilder object.
*/
QFormDataBuilder::~QFormDataBuilder()
{
delete d_ptr;
}
/*!
\fn QFormDataBuilder::QFormDataBuilder(QFormDataBuilder &&other) noexcept
Move-constructs a QFormDataBuilder instance, making it point at the same
object that \a other was pointing to.
*/
/*!
\fn QFormDataBuilder &QFormDataBuilder::operator=(QFormDataBuilder &&other) noexcept
Move-assigns \a other to this QFormDataBuilder instance.
*/
/*!
Returns a newly-constructed QFormDataPartBuilder object using \a name as the
form-data's \c name parameter. The object is valid for as long as the
associated QFormDataBuilder has not been destroyed.
Limiting \a name characters to US-ASCII is
\l {https://datatracker.ietf.org/doc/html/rfc7578#section-5.1.1}{strongly recommended}
for interoperability reasons.
\sa QFormDataPartBuilder, QHttpPart
*/
QFormDataPartBuilder QFormDataBuilder::part(QAnyStringView name)
{
Q_D(QFormDataBuilder);
d->parts.emplace_back(name);
return QFormDataPartBuilder(d, d->parts.size() - 1);
}
/*!
Constructs and returns a pointer to a QHttpMultipart object constructed
according to \a options.
\sa QHttpMultiPart
*/
std::unique_ptr<QHttpMultiPart> QFormDataBuilder::buildMultiPart(Options options)
{
Q_D(QFormDataBuilder);
auto multiPart = std::make_unique<QHttpMultiPart>(QHttpMultiPart::FormDataType);
for (auto &part : d->parts)
multiPart->append(part.build(options));
return multiPart;
}
QT_END_NAMESPACE
|