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
|
/* 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/. */
"use strict";
const { BaseAction } = ChromeUtils.import(
"resource://normandy/actions/BaseAction.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"TelemetryEnvironment",
"resource://gre/modules/TelemetryEnvironment.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"PreferenceRollouts",
"resource://normandy/lib/PreferenceRollouts.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"PrefUtils",
"resource://normandy/lib/PrefUtils.jsm"
);
ChromeUtils.defineModuleGetter(
this,
"ActionSchemas",
"resource://normandy/actions/schemas/index.js"
);
ChromeUtils.defineModuleGetter(
this,
"TelemetryEvents",
"resource://normandy/lib/TelemetryEvents.jsm"
);
var EXPORTED_SYMBOLS = ["PreferenceRollbackAction"];
class PreferenceRollbackAction extends BaseAction {
get schema() {
return ActionSchemas["preference-rollback"];
}
async _run(recipe) {
const { rolloutSlug } = recipe.arguments;
const rollout = await PreferenceRollouts.get(rolloutSlug);
if (!rollout) {
this.log.debug(`Rollback ${rolloutSlug} not applicable, skipping`);
return;
}
switch (rollout.state) {
case PreferenceRollouts.STATE_ACTIVE: {
this.log.info(`Rolling back ${rolloutSlug}`);
rollout.state = PreferenceRollouts.STATE_ROLLED_BACK;
for (const { preferenceName, previousValue } of rollout.preferences) {
PrefUtils.setPref("default", preferenceName, previousValue);
}
await PreferenceRollouts.update(rollout);
TelemetryEvents.sendEvent(
"unenroll",
"preference_rollback",
rolloutSlug,
{
reason: "rollback",
enrollmentId:
rollout.enrollmentId || TelemetryEvents.NO_ENROLLMENT_ID_MARKER,
}
);
TelemetryEnvironment.setExperimentInactive(rolloutSlug);
break;
}
case PreferenceRollouts.STATE_ROLLED_BACK: {
// The rollout has already been rolled back, so nothing to do here.
break;
}
case PreferenceRollouts.STATE_GRADUATED: {
// graduated rollouts can't be rolled back
TelemetryEvents.sendEvent(
"unenrollFailed",
"preference_rollback",
rolloutSlug,
{
reason: "graduated",
enrollmentId:
rollout.enrollmentId || TelemetryEvents.NO_ENROLLMENT_ID_MARKER,
}
);
throw new Error(
`Cannot rollback already graduated rollout ${rolloutSlug}`
);
}
default: {
throw new Error(
`Unexpected state when rolling back ${rolloutSlug}: ${rollout.state}`
);
}
}
}
async _finalize() {
await PreferenceRollouts.saveStartupPrefs();
}
}
|