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
|
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
module attribution_internals.mojom;
import "components/attribution_reporting/registration.mojom";
import "components/attribution_reporting/source_type.mojom";
import "components/attribution_reporting/trigger_data_matching.mojom";
import "content/browser/attribution_reporting/aggregatable_result.mojom";
import "content/browser/attribution_reporting/process_aggregatable_debug_report_result.mojom";
import "content/browser/attribution_reporting/attribution_reporting.mojom";
import "content/browser/attribution_reporting/event_level_result.mojom";
import "content/browser/attribution_reporting/store_source_result.mojom";
import "services/network/public/mojom/attribution.mojom";
import "url/mojom/origin.mojom";
import "url/mojom/url.mojom";
// Represents `AttributionReport::Id`.
// Will be used to issue commands for individual reports.
struct ReportID {
int64 value;
};
// Contains event-level data to be displayed.
struct WebUIReportEventLevelData {
int64 priority;
bool attributed_truthfully;
};
// Represents `AggregatableHistogramContribution`.
struct AggregatableHistogramContribution {
// Hex-encoded unsigned 128-bit integer.
string key;
uint32 value;
uint64 filtering_id;
};
// Contains aggregatable attribution data to be displayed.
struct WebUIReportAggregatableAttributionData {
array<AggregatableHistogramContribution> contributions;
string aggregation_coordinator;
bool is_null_report;
};
union WebUIReportData {
WebUIReportEventLevelData event_level_data;
WebUIReportAggregatableAttributionData
aggregatable_attribution_data;
};
struct Empty {};
union NetworkStatus {
int32 http_response_code;
string network_error;
};
union ReportStatus {
Empty pending;
// Contains the external report ID of the replacement report.
string replaced_by_higher_priority_report;
Empty prohibited_by_browser_policy;
Empty expired;
NetworkStatus network_status;
Empty failed_to_assemble;
};
// Struct containing stored data that will be sent in a future attribution
// report.
struct WebUIReport {
// Allows the WebUI to issue commands for individual reports.
// Not intended to be displayed.
ReportID id;
url.mojom.Url report_url;
double trigger_time;
double report_time;
string report_body;
ReportStatus status;
WebUIReportData data;
};
struct WebUIDebugReport {
url.mojom.Url url;
double time;
string body;
NetworkStatus status;
};
union SendAggregatableDebugReportResult {
Empty assembly_failed;
NetworkStatus network_status;
};
struct WebUIAggregatableDebugReport {
url.mojom.Url url;
// Contains msec since the Unix epoch, as returned by
// base::Time::InMillisecondsFSinceUnixEpochIgnoringNull().
double time;
// Serialized JSON dictionary.
string body;
attribution_reporting.mojom.ProcessAggregatableDebugReportResult
process_result;
SendAggregatableDebugReportResult send_result;
};
// Struct representing a stored attribution source that will be displayed by WebUI.
struct WebUISource {
// The source's internal ID, unique across all sources in storage.
// Not intended to be displayed.
int64 id;
uint64 source_event_id;
url.mojom.Origin source_origin;
attribution_reporting.mojom.DestinationSet destinations;
url.mojom.Origin reporting_origin;
double source_time;
double expiry_time;
attribution_reporting.mojom.EventReportWindows event_report_windows;
array<uint32> trigger_data;
// The maximum number of event-level reports that can be produced due to attribution to this
// source.
int32 max_event_level_reports;
double aggregatable_report_window_time;
attribution_reporting.mojom.SourceType source_type;
int64 priority;
uint64? debug_key;
array<uint64> dedup_keys;
attribution_reporting.mojom.FilterData filter_data;
// The value is a hex-encoded unsigned 128-bit integer.
map<string, string> aggregation_keys;
int32 remaining_aggregatable_attribution_budget;
array<uint64> aggregatable_dedup_keys;
attribution_reporting.mojom.TriggerDataMatching trigger_data_matching;
double event_level_epsilon;
bool cookie_based_debug_allowed;
int32 remaining_aggregatable_debug_budget;
// A hex-encoded 128-bit integer.
string aggregatable_debug_key_piece;
// String instead of mojo_base.mojom.DictionaryValue because the value is
// simply displayed in the UI, never inspected. JSON is used instead of
// attribution_reporting.mojom.AttributionScopesData to avoid complex TypeScript-based
// formatting.
string attribution_scopes_data_json;
// String is used for the same reasons as described for `attribution_scopes_data_json`.
string aggregatable_named_budgets;
enum Attributability {
kAttributable,
// The source was dropped due to `CommonSourceInfo::AttributionLogic::kNever`.
kNoisedNever,
// The source was dropped due to `CommonSourceInfo::AttributionLogic::kFalsely`.
kNoisedFalsely,
kReachedEventLevelAttributionLimit,
};
Attributability attributability;
};
struct WebUIRegistration {
double time;
url.mojom.Origin context_origin;
url.mojom.Origin reporting_origin;
// String instead of mojo_base.mojom.DictionaryValue because the value is
// simply displayed in the UI, never inspected.
string registration_json;
uint64? cleared_debug_key;
};
struct WebUITrigger {
WebUIRegistration registration;
attribution_reporting.mojom.EventLevelResult event_level_result;
attribution_reporting.mojom.AggregatableResult aggregatable_result;
};
struct WebUISourceRegistration {
WebUIRegistration registration;
attribution_reporting.mojom.SourceType type;
attribution_reporting.mojom.StoreSourceResult status;
};
// Struct containing info of successfully passed OS registrations to be
// displayed as a log by WebUI.
struct WebUIOsRegistration {
// Contains msec since the Unix epoch, as returned by
// base::Time::InMillisecondsFSinceUnixEpochIgnoringNull().
double time;
url.mojom.Url registration_url;
url.mojom.Origin top_level_origin;
bool is_debug_key_allowed;
bool debug_reporting;
attribution_reporting.mojom.RegistrationType type;
attribution_reporting.mojom.OsRegistrationResult result;
};
// Observer for events relevant to the attribution internals WebUI.
interface Observer {
// Called when the sources in storage changed.
OnSourcesChanged(array<WebUISource> sources);
// Called when the reports in storage changed.
OnReportsChanged(array<WebUIReport> reports);
// Called when a source is registered, regardless of success or failure.
OnSourceHandled(WebUISourceRegistration source);
// Called when a report is sent or replaced in storage by a higher-priority
// report.
OnReportHandled(WebUIReport report);
// Called when a verbose debug report is sent, regardless of success.
OnDebugReportSent(WebUIDebugReport report);
// Called when an aggregatable debug report is assembled and sent, regardless
// of success.
OnAggregatableDebugReportSent(WebUIAggregatableDebugReport report);
// Called when a trigger is registered, regardless of success or failure.
OnTriggerHandled(WebUITrigger trigger);
// Called when an OS source or trigger is registered, regardless of success
// or failure.
OnOsRegistration(WebUIOsRegistration registration);
// Called when debug mode is enabled or disabled in the WebUI's browsing
// context.
OnDebugModeChanged(bool debug_mode);
};
// Mojo interface for the attribution internals WebUI to communicate with the
// storage layer.
interface Handler {
// Returns the state of the Attribution Reporting API in the WebUI's browsing context.
// TODO(apaseltiner): Replace this polling-based interface with notifications.
IsAttributionReportingEnabled() => (bool enabled,
network.mojom.AttributionSupport attribution_support);
// Sends the given report, ignoring delay, returning when the operation has
// been completed and the report has been cleared from storage.
SendReport(ReportID id) => ();
// Deletes all persisted data for the attribution reporting API, returning when the
// operation has been completed.
ClearStorage() => ();
};
// Factory for Observer and Handler.
interface Factory {
// Binds the observer and handler.
Create(pending_remote<Observer> observer,
pending_receiver<Handler> handler);
};
|