[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[tor-commits] [tor-browser/tor-browser-91.2.0esr-11.0-1] fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#tor
commit 49a17ed426b887a0c8cd3724d99a03333bc35231
Author: Matthew Finkel <sysrqb@xxxxxxxxxxxxxx>
Date: Fri Sep 3 03:52:19 2021 +0000
fixup! Bug 31286: Implementation of bridge, proxy, and firewall settings in about:preferences#tor
This reverts commit 48b88a65e95064d39c84650e4ee37dde7b0bda83.
---
browser/modules/BridgeDB.jsm | 6 ++--
browser/modules/TorProtocolService.jsm | 58 +++++++++++++++++-----------------
2 files changed, 32 insertions(+), 32 deletions(-)
diff --git a/browser/modules/BridgeDB.jsm b/browser/modules/BridgeDB.jsm
index 2caa26b4e2e0..9f76b4f05a69 100644
--- a/browser/modules/BridgeDB.jsm
+++ b/browser/modules/BridgeDB.jsm
@@ -26,7 +26,7 @@ var BridgeDB = {
return this._bridges;
},
- submitCaptchaGuess(aCaptchaSolution) {
+ async submitCaptchaGuess(aCaptchaSolution) {
if (this._moatRequestor && this._currentCaptchaInfo) {
return this._moatRequestor
.finishFetch(
@@ -49,11 +49,11 @@ var BridgeDB = {
});
},
- requestNewCaptchaImage(aProxyURI) {
+ async requestNewCaptchaImage(aProxyURI) {
// close and clear out existing state on captcha request
this.close();
- let transportPlugins = TorProtocolService.readStringArraySetting(
+ let transportPlugins = await TorProtocolService.readStringArraySetting(
TorStrings.configKeys.clientTransportPlugin
);
diff --git a/browser/modules/TorProtocolService.jsm b/browser/modules/TorProtocolService.jsm
index e6c78b9a0eb1..b8678fbca9aa 100644
--- a/browser/modules/TorProtocolService.jsm
+++ b/browser/modules/TorProtocolService.jsm
@@ -108,7 +108,7 @@ var TorProtocolService = {
// takes a Map containing tor settings
// throws on error
- writeSettings(aSettingsObj) {
+ async writeSettings(aSettingsObj) {
// only write settings that have changed
let newSettings = new Map();
for (const [setting, value] of aSettingsObj) {
@@ -157,7 +157,7 @@ var TorProtocolService = {
}
let errorObject = {};
- if (!this._TorLauncherProtocolService.TorSetConfWithReply(settingsObject, errorObject)) {
+ if (! await this._TorLauncherProtocolService.TorSetConfWithReply(settingsObject, errorObject)) {
throw new Error(errorObject.details);
}
@@ -168,17 +168,17 @@ var TorProtocolService = {
}
},
- _readSetting(aSetting) {
+ async _readSetting(aSetting) {
this._assertValidSettingKey(aSetting);
- let reply = this._TorLauncherProtocolService.TorGetConf(aSetting);
+ let reply = await this._TorLauncherProtocolService.TorGetConf(aSetting);
if (this._TorLauncherProtocolService.TorCommandSucceeded(reply)) {
return reply.lineArray;
}
throw new Error(reply.lineArray.join("\n"));
},
- _readBoolSetting(aSetting) {
- let lineArray = this._readSetting(aSetting);
+ async _readBoolSetting(aSetting) {
+ let lineArray = await this._readSetting(aSetting);
if (lineArray.length != 1) {
throw new Error(
`Expected an array with length 1 but received array of length ${
@@ -198,8 +198,8 @@ var TorProtocolService = {
}
},
- _readStringSetting(aSetting) {
- let lineArray = this._readSetting(aSetting);
+ async _readStringSetting(aSetting) {
+ let lineArray = await this._readSetting(aSetting);
if (lineArray.length != 1) {
throw new Error(
`Expected an array with length 1 but received array of length ${
@@ -210,32 +210,32 @@ var TorProtocolService = {
return lineArray[0];
},
- _readStringArraySetting(aSetting) {
- let lineArray = this._readSetting(aSetting);
+ async _readStringArraySetting(aSetting) {
+ let lineArray = await this._readSetting(aSetting);
return lineArray;
},
- readBoolSetting(aSetting) {
- let value = this._readBoolSetting(aSetting);
+ async readBoolSetting(aSetting) {
+ let value = await this._readBoolSetting(aSetting);
this._settingsCache.set(aSetting, value);
return value;
},
- readStringSetting(aSetting) {
- let value = this._readStringSetting(aSetting);
+ async readStringSetting(aSetting) {
+ let value = await this._readStringSetting(aSetting);
this._settingsCache.set(aSetting, value);
return value;
},
- readStringArraySetting(aSetting) {
- let value = this._readStringArraySetting(aSetting);
+ async readStringArraySetting(aSetting) {
+ let value = await this._readStringArraySetting(aSetting);
this._settingsCache.set(aSetting, value);
return value;
},
// writes current tor settings to disk
- flushSettings() {
- this.sendCommand("SAVECONF");
+ async flushSettings() {
+ await this.sendCommand("SAVECONF");
},
getLog(countObj) {
@@ -261,17 +261,17 @@ var TorProtocolService = {
return true;
},
- enableNetwork() {
+ async enableNetwork() {
let settings = {};
settings.DisableNetwork = false;
let errorObject = {};
- if (!this._TorLauncherProtocolService.TorSetConfWithReply(settings, errorObject)) {
+ if (! await this._TorLauncherProtocolService.TorSetConfWithReply(settings, errorObject)) {
throw new Error(errorObject.details);
}
},
- sendCommand(cmd) {
- return this._TorLauncherProtocolService.TorSendCommand(cmd);
+ async sendCommand(cmd) {
+ return await this._TorLauncherProtocolService.TorSendCommand(cmd);
},
retrieveBootstrapStatus() {
@@ -287,11 +287,11 @@ var TorProtocolService = {
}
},
- setConfWithReply(settings) {
+ async setConfWithReply(settings) {
let result = false;
const error = {};
try {
- result = this._TorLauncherProtocolService.TorSetConfWithReply(settings, error);
+ result = await this._TorLauncherProtocolService.TorSetConfWithReply(settings, error);
} catch (e) {
console.log("TorSetConfWithReply error", e);
error.details = this._GetSaveSettingsErrorMessage(e.message);
@@ -312,16 +312,16 @@ var TorProtocolService = {
},
// Resolves to null if ok, or an error otherwise
- connect() {
+ async connect() {
const kTorConfKeyDisableNetwork = "DisableNetwork";
const settings = {};
settings[kTorConfKeyDisableNetwork] = false;
- const { result, error } = this.setConfWithReply(settings);
+ const { result, error } = await this.setConfWithReply(settings);
if (!result) {
return error;
}
try {
- this.sendCommand("SAVECONF");
+ await this.sendCommand("SAVECONF");
this.clearBootstrapError();
this.retrieveBootstrapStatus();
} catch (e) {
@@ -334,14 +334,14 @@ var TorProtocolService = {
return this._TorLauncherProtocolService.TorLogHasWarnOrErr;
},
- torStopBootstrap() {
+ async torStopBootstrap() {
// Tell tor to disable use of the network; this should stop the bootstrap
// process.
const kErrorPrefix = "Setting DisableNetwork=1 failed: ";
try {
let settings = {};
settings.DisableNetwork = true;
- const { result, error } = this.setConfWithReply(settings);
+ const { result, error } = await this.setConfWithReply(settings);
if (!result) {
console.log(
`Error stopping bootstrap ${kErrorPrefix} ${error.details}`
_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits