mirror of
https://github.com/RGBCube/serenity
synced 2025-07-22 22:37:40 +00:00
LibWeb/Fetch: Implement Header's "extract a length" function
Required by XHR's reliance on Fetch.
This commit is contained in:
parent
ccdb1bcc4e
commit
cfbd0bbe0a
2 changed files with 45 additions and 0 deletions
|
@ -11,6 +11,7 @@
|
||||||
#include <AK/GenericLexer.h>
|
#include <AK/GenericLexer.h>
|
||||||
#include <AK/QuickSort.h>
|
#include <AK/QuickSort.h>
|
||||||
#include <AK/ScopeGuard.h>
|
#include <AK/ScopeGuard.h>
|
||||||
|
#include <AK/StringUtils.h>
|
||||||
#include <LibJS/Heap/Heap.h>
|
#include <LibJS/Heap/Heap.h>
|
||||||
#include <LibJS/Runtime/VM.h>
|
#include <LibJS/Runtime/VM.h>
|
||||||
#include <LibRegex/Regex.h>
|
#include <LibRegex/Regex.h>
|
||||||
|
@ -297,6 +298,42 @@ ErrorOr<Vector<Header>> HeaderList::sort_and_combine() const
|
||||||
return headers;
|
return headers;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// https://fetch.spec.whatwg.org/#header-list-extract-a-length
|
||||||
|
ErrorOr<HeaderList::ExtractLengthResult> HeaderList::extract_length() const
|
||||||
|
{
|
||||||
|
// 1. Let values be the result of getting, decoding, and splitting `Content-Length` from headers.
|
||||||
|
auto values = TRY(get_decode_and_split("Content-Length"sv.bytes()));
|
||||||
|
|
||||||
|
// 2. If values is null, then return null.
|
||||||
|
if (!values.has_value())
|
||||||
|
return Empty {};
|
||||||
|
|
||||||
|
// 3. Let candidateValue be null.
|
||||||
|
Optional<String> candidate_value;
|
||||||
|
|
||||||
|
// 4. For each value of values:
|
||||||
|
for (auto const& value : *values) {
|
||||||
|
// 1. If candidateValue is null, then set candidateValue to value.
|
||||||
|
if (!candidate_value.has_value()) {
|
||||||
|
candidate_value = value;
|
||||||
|
}
|
||||||
|
// 2. Otherwise, if value is not candidateValue, return failure.
|
||||||
|
else if (candidate_value.value() != value) {
|
||||||
|
return ExtractLengthFailure {};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 5. If candidateValue is the empty string or has a code point that is not an ASCII digit, then return null.
|
||||||
|
// NOTE: to_uint does this for us.
|
||||||
|
// 6. Return candidateValue, interpreted as decimal number.
|
||||||
|
// NOTE: The spec doesn't say anything about trimming here, so we don't trim. If it contains a space, step 5 will cause us to return null.
|
||||||
|
// FIXME: This will return an empty Optional if it cannot fit into a u64, is this correct?
|
||||||
|
auto conversion_result = AK::StringUtils::convert_to_uint<u64>(candidate_value.value(), TrimWhitespace::No);
|
||||||
|
if (!conversion_result.has_value())
|
||||||
|
return Empty {};
|
||||||
|
return ExtractLengthResult { conversion_result.release_value() };
|
||||||
|
}
|
||||||
|
|
||||||
// https://fetch.spec.whatwg.org/#concept-header-extract-mime-type
|
// https://fetch.spec.whatwg.org/#concept-header-extract-mime-type
|
||||||
ErrorOr<Optional<MimeSniff::MimeType>> HeaderList::extract_mime_type() const
|
ErrorOr<Optional<MimeSniff::MimeType>> HeaderList::extract_mime_type() const
|
||||||
{
|
{
|
||||||
|
|
|
@ -51,6 +51,14 @@ public:
|
||||||
[[nodiscard]] ErrorOr<void> set(Header);
|
[[nodiscard]] ErrorOr<void> set(Header);
|
||||||
[[nodiscard]] ErrorOr<void> combine(Header);
|
[[nodiscard]] ErrorOr<void> combine(Header);
|
||||||
[[nodiscard]] ErrorOr<Vector<Header>> sort_and_combine() const;
|
[[nodiscard]] ErrorOr<Vector<Header>> sort_and_combine() const;
|
||||||
|
|
||||||
|
struct ExtractLengthFailure {
|
||||||
|
};
|
||||||
|
|
||||||
|
using ExtractLengthResult = Variant<u64, ExtractLengthFailure, Empty>;
|
||||||
|
|
||||||
|
[[nodiscard]] ErrorOr<ExtractLengthResult> extract_length() const;
|
||||||
|
|
||||||
[[nodiscard]] ErrorOr<Optional<MimeSniff::MimeType>> extract_mime_type() const;
|
[[nodiscard]] ErrorOr<Optional<MimeSniff::MimeType>> extract_mime_type() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue