summaryrefslogtreecommitdiffstats
path: root/dom/webidl/MozSelfSupport.webidl
blob: d13aa112ce13083aa53a9fc8397d3afec388309b (plain)
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
/* 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/. */

/**
 * The MozSelfSupport interface allows external Mozilla support sites such as
 * FHR and SUMO to access data and control settings that are not otherwise
 * exposed to external content.
 *
 * At the moment, this is a ChromeOnly interface, but the plan is to allow
 * specific Mozilla domains to access it directly.
 */
[ChromeOnly,
 JSImplementation="@mozilla.org/mozselfsupport;1",
 Constructor()]
interface MozSelfSupport
{
  /**
   * Controls whether uploading FHR data is allowed.
   */
  attribute boolean healthReportDataSubmissionEnabled;

  /**
   * Retrieve a list of the archived Telemetry pings.
   * This contains objects with ping info, which are of the form:
   * {
   *   type: <string>, // The pings type, e.g. "main", "environment-change", ...
   *   timestampCreated: <number>, // The time the ping was created (ms since unix epoch).
   *   id: <string>, // The pings UUID.
   * }
   *
   * @return Promise<sequence<Object>>
   *         Resolved with the ping infos when the archived ping list has been built.
   */
  Promise<sequence<object>> getTelemetryPingList();

  /**
   * Retrieve an archived Telemetry ping by it's id.
   * This will load the ping data async from the archive, possibly hitting the disk.
   *
   * @return Promise<Object>
   *         Resolved with the ping data, see the Telemetry "main" ping documentation for the format.
   */
  Promise<object> getTelemetryPing(DOMString pingID);

  /**
   * Get the current Telemetry environment - see the Telemetry documentation for details on the format.
   *
   * @return Promise<Object>
   *         Resolved with an object containing the Telemetry environment data.
   */
  Promise<object> getCurrentTelemetryEnvironment();

  /**
   * Get a Telemetry "main" ping containing the current session measurements.
   *
   * @return Promise<Object>
   *         Resolved with the ping data, see the Telemetry "main" ping documentation for the format.
   */
  Promise<object> getCurrentTelemetrySubsessionPing();

  /**
   * Resets a named pref:
   * - if there is a default value, then change the value back to default,
   * - if there's no default value, then delete the pref,
   * - no-op otherwise.
   *
   * @param DOMString
   *        The name of the pref to reset.
   */
  void resetPref(DOMString name);

  /**
   * Resets original search engines, and resets the default one.
   */
  void resetSearchEngines();
};