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 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
|
/*
* Copyright (C) 2019 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#pragma once
#include "RegistrableDomain.h"
#include <wtf/CompletionHandler.h>
#include <wtf/Forward.h>
#include <wtf/JSONValues.h>
#include <wtf/URL.h>
#include <wtf/WallTime.h>
#include <wtf/text/Base64.h>
#include <wtf/text/StringHash.h>
#include <wtf/text/WTFString.h>
#if PLATFORM(COCOA)
#include <wtf/RetainPtr.h>
#endif
#if PLATFORM(COCOA)
OBJC_CLASS RSABSSATokenReady;
OBJC_CLASS RSABSSATokenWaitingActivation;
OBJC_CLASS RSABSSATokenBlinder;
#endif
namespace WebCore {
class PrivateClickMeasurement {
public:
using PriorityValue = uint8_t;
enum class AttributionEphemeral : bool { No, Yes };
enum class PcmDataCarried : bool { NonPersonallyIdentifiable, PersonallyIdentifiable };
enum class AttributionReportEndpoint : bool { Source, Destination };
enum class IsRunningLayoutTest : bool { No, Yes };
struct SourceID {
static constexpr uint8_t MaxEntropy = 255;
explicit SourceID(uint8_t id)
: id { id }
{
}
uint8_t id { 0 };
};
struct SourceSite {
explicit SourceSite(const URL& url)
: registrableDomain { url }
{
}
explicit SourceSite(RegistrableDomain&& domain)
: registrableDomain { WTFMove(domain) }
{
}
SourceSite isolatedCopy() const & { return SourceSite { registrableDomain.isolatedCopy() }; }
SourceSite isolatedCopy() && { return SourceSite { WTFMove(registrableDomain).isolatedCopy() }; }
bool operator==(const SourceSite& other) const
{
return registrableDomain == other.registrableDomain;
}
bool operator!=(const SourceSite& other) const
{
return registrableDomain != other.registrableDomain;
}
bool matches(const URL& url) const
{
return registrableDomain.matches(url);
}
RegistrableDomain registrableDomain;
};
struct SourceSiteHash {
static unsigned hash(const SourceSite& sourceSite)
{
return sourceSite.registrableDomain.hash();
}
static bool equal(const SourceSite& a, const SourceSite& b)
{
return a == b;
}
static const bool safeToCompareToEmptyOrDeleted = false;
};
struct AttributionDestinationSite {
AttributionDestinationSite() = default;
explicit AttributionDestinationSite(const URL& url)
: registrableDomain { RegistrableDomain { url } }
{
}
explicit AttributionDestinationSite(RegistrableDomain&& domain)
: registrableDomain { WTFMove(domain) }
{
}
AttributionDestinationSite isolatedCopy() const & { return AttributionDestinationSite { registrableDomain.isolatedCopy() }; }
AttributionDestinationSite isolatedCopy() && { return AttributionDestinationSite { WTFMove(registrableDomain).isolatedCopy() }; }
bool operator==(const AttributionDestinationSite& other) const
{
return registrableDomain == other.registrableDomain;
}
bool operator!=(const AttributionDestinationSite& other) const
{
return registrableDomain != other.registrableDomain;
}
bool matches(const URL& url) const
{
return registrableDomain == RegistrableDomain { url };
}
RegistrableDomain registrableDomain;
};
struct AttributionDestinationSiteHash {
static unsigned hash(const AttributionDestinationSite& destinationSite)
{
return destinationSite.registrableDomain.hash();
}
static bool equal(const AttributionDestinationSite& a, const AttributionDestinationSite& b)
{
return a == b;
}
static const bool safeToCompareToEmptyOrDeleted = false;
};
struct Priority {
static constexpr uint8_t MaxEntropy = 63;
explicit Priority(PriorityValue value)
: value { value }
{
}
PriorityValue value;
};
struct EphemeralNonce {
String nonce;
EphemeralNonce isolatedCopy() const & { return { nonce.isolatedCopy() }; }
EphemeralNonce isolatedCopy() && { return { WTFMove(nonce).isolatedCopy() }; }
WEBCORE_EXPORT bool isValid() const;
template<class Encoder> void encode(Encoder&) const;
template<class Decoder> static std::optional<EphemeralNonce> decode(Decoder&);
};
struct UnlinkableToken {
#if PLATFORM(COCOA)
RetainPtr<RSABSSATokenBlinder> blinder;
RetainPtr<RSABSSATokenWaitingActivation> waitingToken;
RetainPtr<RSABSSATokenReady> readyToken;
#endif
String valueBase64URL;
UnlinkableToken isolatedCopy() const &;
UnlinkableToken isolatedCopy() &&;
};
struct SourceUnlinkableToken : UnlinkableToken {
SourceUnlinkableToken isolatedCopy() const & { return { UnlinkableToken::isolatedCopy() }; }
SourceUnlinkableToken isolatedCopy() && { return { UnlinkableToken::isolatedCopy() }; }
};
struct DestinationUnlinkableToken : UnlinkableToken {
DestinationUnlinkableToken isolatedCopy() const & { return { UnlinkableToken::isolatedCopy() }; }
DestinationUnlinkableToken isolatedCopy() && { return { UnlinkableToken::isolatedCopy() }; }
};
struct SecretToken {
String tokenBase64URL;
String signatureBase64URL;
String keyIDBase64URL;
SecretToken isolatedCopy() const & { return { tokenBase64URL.isolatedCopy(), signatureBase64URL.isolatedCopy(), keyIDBase64URL.isolatedCopy() }; }
SecretToken isolatedCopy() && { return { WTFMove(tokenBase64URL).isolatedCopy(), WTFMove(signatureBase64URL).isolatedCopy(), WTFMove(keyIDBase64URL).isolatedCopy() }; }
bool isValid() const;
};
struct SourceSecretToken : SecretToken {
SourceSecretToken isolatedCopy() const & { return { SecretToken::isolatedCopy() }; }
SourceSecretToken isolatedCopy() && { return { SecretToken::isolatedCopy() }; }
};
struct DestinationSecretToken : SecretToken {
DestinationSecretToken isolatedCopy() const & { return { SecretToken::isolatedCopy() }; }
DestinationSecretToken isolatedCopy() && { return { SecretToken::isolatedCopy() }; }
};
struct AttributionTriggerData {
static constexpr uint8_t MaxEntropy = 15;
enum class WasSent : bool { No, Yes };
AttributionTriggerData() = default;
AttributionTriggerData(uint8_t data, Priority priority, WasSent wasSent = WasSent::No, std::optional<EphemeralNonce> nonce = std::nullopt)
: data { data }
, priority { priority.value }
, wasSent { wasSent }
, ephemeralDestinationNonce { nonce }
{
}
bool isValid() const
{
return data <= MaxEntropy && priority <= Priority::MaxEntropy;
}
void setDestinationUnlinkableTokenValue(const String& value)
{
if (!destinationUnlinkableToken)
destinationUnlinkableToken = DestinationUnlinkableToken { };
destinationUnlinkableToken->valueBase64URL = value;
}
void setDestinationSecretToken(const DestinationSecretToken& token) { destinationSecretToken = token; }
const std::optional<const URL> tokenPublicKeyURL() const { return destinationSite ? PrivateClickMeasurement::tokenPublicKeyURL(*destinationSite) : URL(); }
const std::optional<const URL> tokenSignatureURL() const { return destinationSite ? PrivateClickMeasurement::tokenSignatureURL(*destinationSite) : URL(); }
WEBCORE_EXPORT Ref<JSON::Object> tokenSignatureJSON() const;
uint8_t data { 0 };
PriorityValue priority;
WasSent wasSent = WasSent::No;
std::optional<RegistrableDomain> sourceRegistrableDomain;
std::optional<EphemeralNonce> ephemeralDestinationNonce;
std::optional<DestinationUnlinkableToken> destinationUnlinkableToken;
std::optional<DestinationSecretToken> destinationSecretToken;
std::optional<RegistrableDomain> destinationSite;
template<class Encoder> void encode(Encoder&) const;
template<class Decoder> static std::optional<AttributionTriggerData> decode(Decoder&);
};
struct AttributionSecondsUntilSendData {
std::optional<Seconds> sourceSeconds;
std::optional<Seconds> destinationSeconds;
bool hasValidSecondsUntilSendValues()
{
return sourceSeconds && destinationSeconds;
}
std::optional<Seconds> minSecondsUntilSend()
{
if (!sourceSeconds && !destinationSeconds)
return std::nullopt;
if (sourceSeconds && destinationSeconds)
return std::min(sourceSeconds, destinationSeconds);
return sourceSeconds ? sourceSeconds : destinationSeconds;
}
template<class Encoder>
void encode(Encoder& encoder) const
{
encoder << sourceSeconds << destinationSeconds;
}
template<class Decoder>
static std::optional<AttributionSecondsUntilSendData> decode(Decoder& decoder)
{
std::optional<std::optional<Seconds>> sourceSeconds;
decoder >> sourceSeconds;
if (!sourceSeconds)
return std::nullopt;
std::optional<std::optional<Seconds>> destinationSeconds;
decoder >> destinationSeconds;
if (!destinationSeconds)
return std::nullopt;
return AttributionSecondsUntilSendData { WTFMove(*sourceSeconds), WTFMove(*destinationSeconds) };
}
};
struct AttributionTimeToSendData {
std::optional<WallTime> sourceEarliestTimeToSend;
std::optional<WallTime> destinationEarliestTimeToSend;
std::optional<WallTime> earliestTimeToSend()
{
if (!sourceEarliestTimeToSend && !destinationEarliestTimeToSend)
return std::nullopt;
if (sourceEarliestTimeToSend && destinationEarliestTimeToSend)
return std::min(sourceEarliestTimeToSend, destinationEarliestTimeToSend);
return sourceEarliestTimeToSend ? sourceEarliestTimeToSend : destinationEarliestTimeToSend;
}
std::optional<WallTime> latestTimeToSend()
{
if (!sourceEarliestTimeToSend && !destinationEarliestTimeToSend)
return std::nullopt;
if (sourceEarliestTimeToSend && destinationEarliestTimeToSend)
return std::max(sourceEarliestTimeToSend, destinationEarliestTimeToSend);
return sourceEarliestTimeToSend ? sourceEarliestTimeToSend : destinationEarliestTimeToSend;
}
std::optional<AttributionReportEndpoint> attributionReportEndpoint()
{
if (sourceEarliestTimeToSend && destinationEarliestTimeToSend) {
if (*sourceEarliestTimeToSend < *destinationEarliestTimeToSend)
return AttributionReportEndpoint::Source;
return AttributionReportEndpoint::Destination;
}
if (sourceEarliestTimeToSend)
return AttributionReportEndpoint::Source;
if (destinationEarliestTimeToSend)
return AttributionReportEndpoint::Destination;
return std::nullopt;
}
template<class Encoder>
void encode(Encoder& encoder) const
{
encoder << sourceEarliestTimeToSend << destinationEarliestTimeToSend;
}
template<class Decoder>
static std::optional<AttributionTimeToSendData> decode(Decoder& decoder)
{
std::optional<std::optional<WallTime>> sourceEarliestTimeToSend;
decoder >> sourceEarliestTimeToSend;
if (!sourceEarliestTimeToSend)
return std::nullopt;
std::optional<std::optional<WallTime>> destinationEarliestTimeToSend;
decoder >> destinationEarliestTimeToSend;
if (!destinationEarliestTimeToSend)
return std::nullopt;
return AttributionTimeToSendData { WTFMove(*sourceEarliestTimeToSend), WTFMove(*destinationEarliestTimeToSend) };
}
};
PrivateClickMeasurement(SourceID sourceID, const SourceSite& sourceSite, const AttributionDestinationSite& destinationSite, const String& sourceApplicationBundleID, WallTime timeOfAdClick, AttributionEphemeral isEphemeral)
: m_sourceID { sourceID }
, m_sourceSite { sourceSite }
, m_destinationSite { destinationSite }
, m_timeOfAdClick { timeOfAdClick }
, m_isEphemeral { isEphemeral }
, m_sourceApplicationBundleID { sourceApplicationBundleID }
{
}
WEBCORE_EXPORT static const Seconds maxAge();
WEBCORE_EXPORT bool isNeitherSameSiteNorCrossSiteTriggeringEvent(const RegistrableDomain& redirectDomain, const URL& firstPartyURL, const AttributionTriggerData&);
WEBCORE_EXPORT static Expected<AttributionTriggerData, String> parseAttributionRequest(const URL& redirectURL);
WEBCORE_EXPORT AttributionSecondsUntilSendData attributeAndGetEarliestTimeToSend(AttributionTriggerData&&, IsRunningLayoutTest);
WEBCORE_EXPORT bool hasHigherPriorityThan(const PrivateClickMeasurement&) const;
WEBCORE_EXPORT URL attributionReportClickSourceURL() const;
WEBCORE_EXPORT URL attributionReportClickDestinationURL() const;
WEBCORE_EXPORT Ref<JSON::Object> attributionReportJSON() const;
const SourceSite& sourceSite() const { return m_sourceSite; };
const AttributionDestinationSite& destinationSite() const { return m_destinationSite; };
WallTime timeOfAdClick() const { return m_timeOfAdClick; }
WEBCORE_EXPORT bool hasPreviouslyBeenReported();
AttributionTimeToSendData timesToSend() const { return m_timesToSend; };
void setTimesToSend(AttributionTimeToSendData data) { m_timesToSend = data; }
const SourceID& sourceID() const { return m_sourceID; }
const std::optional<AttributionTriggerData>& attributionTriggerData() const { return m_attributionTriggerData; }
void setAttribution(AttributionTriggerData&& attributionTriggerData) { m_attributionTriggerData = WTFMove(attributionTriggerData); }
const String& sourceApplicationBundleID() const { return m_sourceApplicationBundleID; }
WEBCORE_EXPORT void setSourceApplicationBundleIDForTesting(const String&);
bool isEphemeral() const { return m_isEphemeral == AttributionEphemeral::Yes; }
void setEphemeral(AttributionEphemeral isEphemeral) { m_isEphemeral = isEphemeral; }
// MARK: - Fraud Prevention
WEBCORE_EXPORT const std::optional<const URL> tokenPublicKeyURL() const;
WEBCORE_EXPORT static const std::optional<const URL> tokenPublicKeyURL(const RegistrableDomain&);
WEBCORE_EXPORT const std::optional<const URL> tokenSignatureURL() const;
WEBCORE_EXPORT static const std::optional<const URL> tokenSignatureURL(const RegistrableDomain&);
WEBCORE_EXPORT Ref<JSON::Object> tokenSignatureJSON() const;
WEBCORE_EXPORT void setEphemeralSourceNonce(EphemeralNonce&&);
std::optional<EphemeralNonce> ephemeralSourceNonce() const { return m_ephemeralSourceNonce; };
void clearEphemeralSourceNonce() { m_ephemeralSourceNonce.reset(); };
#if PLATFORM(COCOA)
WEBCORE_EXPORT std::optional<String> calculateAndUpdateSourceUnlinkableToken(const String& serverPublicKeyBase64URL);
WEBCORE_EXPORT static Expected<DestinationUnlinkableToken, String> calculateAndUpdateDestinationUnlinkableToken(const String& serverPublicKeyBase64URL);
WEBCORE_EXPORT std::optional<String> calculateAndUpdateSourceSecretToken(const String& serverResponseBase64URL);
WEBCORE_EXPORT static Expected<DestinationSecretToken, String> calculateAndUpdateDestinationSecretToken(const String& serverResponseBase64URL, DestinationUnlinkableToken&);
#endif
SourceUnlinkableToken& sourceUnlinkableToken() { return m_sourceUnlinkableToken; }
void setSourceUnlinkableTokenValue(const String& value) { m_sourceUnlinkableToken.valueBase64URL = value; }
const std::optional<SourceSecretToken>& sourceSecretToken() const { return m_sourceSecretToken; }
WEBCORE_EXPORT void setSourceSecretToken(SourceSecretToken&&);
WEBCORE_EXPORT void setDestinationSecretToken(DestinationSecretToken&&);
static std::optional<uint64_t> appStoreURLAdamID(const URL&);
bool isSKAdNetworkAttribution() const { return !!m_adamID; }
std::optional<uint64_t> adamID() const { return m_adamID; };
void setAdamID(uint64_t adamID) { m_adamID = adamID; };
template<class Encoder> void encode(Encoder&) const;
template<class Decoder> static std::optional<PrivateClickMeasurement> decode(Decoder&);
WEBCORE_EXPORT PrivateClickMeasurement isolatedCopy() const &;
WEBCORE_EXPORT PrivateClickMeasurement isolatedCopy() &&;
private:
static Expected<AttributionTriggerData, String> parseAttributionRequestQuery(const URL&);
bool isValid() const;
#if PLATFORM(COCOA)
static std::optional<String> calculateAndUpdateUnlinkableToken(const String& serverPublicKeyBase64URL, UnlinkableToken&, const String& contextForLogMessage);
static std::optional<String> calculateAndUpdateSecretToken(const String& serverResponseBase64URL, UnlinkableToken&, SecretToken&, const String& contextForLogMessage);
#endif
SourceID m_sourceID;
SourceSite m_sourceSite;
AttributionDestinationSite m_destinationSite;
WallTime m_timeOfAdClick;
AttributionEphemeral m_isEphemeral;
std::optional<uint64_t> m_adamID;
std::optional<AttributionTriggerData> m_attributionTriggerData;
AttributionTimeToSendData m_timesToSend;
std::optional<EphemeralNonce> m_ephemeralSourceNonce;
SourceUnlinkableToken m_sourceUnlinkableToken;
std::optional<SourceSecretToken> m_sourceSecretToken;
String m_sourceApplicationBundleID;
};
template<class Encoder>
void PrivateClickMeasurement::encode(Encoder& encoder) const
{
encoder << m_sourceID.id
<< m_sourceSite.registrableDomain
<< m_destinationSite.registrableDomain
<< m_timeOfAdClick
<< m_ephemeralSourceNonce
<< m_isEphemeral
<< m_attributionTriggerData
<< m_sourceApplicationBundleID
<< m_timesToSend
<< m_adamID;
}
template<class Decoder>
std::optional<PrivateClickMeasurement> PrivateClickMeasurement::decode(Decoder& decoder)
{
std::optional<uint8_t> sourceID;
decoder >> sourceID;
if (!sourceID)
return std::nullopt;
std::optional<RegistrableDomain> sourceRegistrableDomain;
decoder >> sourceRegistrableDomain;
if (!sourceRegistrableDomain)
return std::nullopt;
std::optional<RegistrableDomain> destinationRegistrableDomain;
decoder >> destinationRegistrableDomain;
if (!destinationRegistrableDomain)
return std::nullopt;
std::optional<WallTime> timeOfAdClick;
decoder >> timeOfAdClick;
if (!timeOfAdClick)
return std::nullopt;
std::optional<std::optional<EphemeralNonce>> ephemeralSourceNonce;
decoder >> ephemeralSourceNonce;
if (!ephemeralSourceNonce)
return std::nullopt;
std::optional<AttributionEphemeral> isEphemeral;
decoder >> isEphemeral;
if (!isEphemeral)
return std::nullopt;
std::optional<std::optional<AttributionTriggerData>> attributionTriggerData;
decoder >> attributionTriggerData;
if (!attributionTriggerData)
return std::nullopt;
std::optional<String> sourceApplicationBundleID;
decoder >> sourceApplicationBundleID;
if (!sourceApplicationBundleID)
return std::nullopt;
std::optional<AttributionTimeToSendData> timesToSend;
decoder >> timesToSend;
if (!timesToSend)
return std::nullopt;
std::optional<std::optional<uint64_t>> adamID;
decoder >> adamID;
if (!adamID)
return std::nullopt;
PrivateClickMeasurement attribution {
SourceID { WTFMove(*sourceID) },
SourceSite { WTFMove(*sourceRegistrableDomain) },
AttributionDestinationSite { WTFMove(*destinationRegistrableDomain) },
WTFMove(*sourceApplicationBundleID),
WTFMove(*timeOfAdClick),
WTFMove(*isEphemeral)
};
attribution.m_ephemeralSourceNonce = WTFMove(*ephemeralSourceNonce);
attribution.m_attributionTriggerData = WTFMove(*attributionTriggerData);
attribution.m_timesToSend = WTFMove(*timesToSend);
attribution.m_adamID = WTFMove(*adamID);
return attribution;
}
template<class Encoder>
void PrivateClickMeasurement::EphemeralNonce::encode(Encoder& encoder) const
{
encoder << nonce;
}
template<class Decoder>
std::optional<PrivateClickMeasurement::EphemeralNonce> PrivateClickMeasurement::EphemeralNonce::decode(Decoder& decoder)
{
std::optional<String> nonce;
decoder >> nonce;
if (!nonce)
return std::nullopt;
return EphemeralNonce { WTFMove(*nonce) };
}
template<class Encoder>
void PrivateClickMeasurement::AttributionTriggerData::encode(Encoder& encoder) const
{
encoder << data << priority << wasSent << sourceRegistrableDomain << ephemeralDestinationNonce << destinationSite;
}
template<class Decoder>
std::optional<PrivateClickMeasurement::AttributionTriggerData> PrivateClickMeasurement::AttributionTriggerData::decode(Decoder& decoder)
{
std::optional<uint8_t> data;
decoder >> data;
if (!data)
return std::nullopt;
std::optional<PriorityValue> priority;
decoder >> priority;
if (!priority)
return std::nullopt;
std::optional<WasSent> wasSent;
decoder >> wasSent;
if (!wasSent)
return std::nullopt;
std::optional<std::optional<RegistrableDomain>> sourceRegistrableDomain;
decoder >> sourceRegistrableDomain;
if (!sourceRegistrableDomain)
return std::nullopt;
std::optional<std::optional<EphemeralNonce>> ephemeralDestinationNonce;
decoder >> ephemeralDestinationNonce;
if (!ephemeralDestinationNonce)
return std::nullopt;
std::optional<std::optional<RegistrableDomain>> destinationSite;
decoder >> destinationSite;
if (!destinationSite)
return std::nullopt;
AttributionTriggerData attributionTriggerData { WTFMove(*data), Priority { *priority }, *wasSent };
attributionTriggerData.sourceRegistrableDomain = WTFMove(*sourceRegistrableDomain);
attributionTriggerData.ephemeralDestinationNonce = WTFMove(*ephemeralDestinationNonce);
attributionTriggerData.destinationSite = WTFMove(*destinationSite);
return attributionTriggerData;
}
} // namespace WebCore
namespace WTF {
template<typename T> struct DefaultHash;
template<> struct DefaultHash<WebCore::PrivateClickMeasurement::SourceSite> : WebCore::PrivateClickMeasurement::SourceSiteHash { };
template<> struct HashTraits<WebCore::PrivateClickMeasurement::SourceSite> : GenericHashTraits<WebCore::PrivateClickMeasurement::SourceSite> {
static WebCore::PrivateClickMeasurement::SourceSite emptyValue() { return WebCore::PrivateClickMeasurement::SourceSite(WebCore::RegistrableDomain()); }
static void constructDeletedValue(WebCore::PrivateClickMeasurement::SourceSite& slot) { new (NotNull, &slot.registrableDomain) WebCore::RegistrableDomain(WTF::HashTableDeletedValue); }
static bool isDeletedValue(const WebCore::PrivateClickMeasurement::SourceSite& slot) { return slot.registrableDomain.isHashTableDeletedValue(); }
};
template<> struct DefaultHash<WebCore::PrivateClickMeasurement::AttributionDestinationSite> : WebCore::PrivateClickMeasurement::AttributionDestinationSiteHash { };
template<> struct HashTraits<WebCore::PrivateClickMeasurement::AttributionDestinationSite> : GenericHashTraits<WebCore::PrivateClickMeasurement::AttributionDestinationSite> {
static WebCore::PrivateClickMeasurement::AttributionDestinationSite emptyValue() { return { }; }
static void constructDeletedValue(WebCore::PrivateClickMeasurement::AttributionDestinationSite& slot) { new (NotNull, &slot.registrableDomain) WebCore::RegistrableDomain(WTF::HashTableDeletedValue); }
static bool isDeletedValue(const WebCore::PrivateClickMeasurement::AttributionDestinationSite& slot) { return slot.registrableDomain.isHashTableDeletedValue(); }
};
}
|