This file is indexed.

/usr/share/xul-ext/firegestures/components/xdGestureService.js is in xul-ext-firegestures 1.10.9-1~deb8u1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
const Cc = Components.classes;
const Ci = Components.interfaces;

const DB_FILE_NAME = "firegestures.sqlite";
const BROWSER_ID  = "gesture_mappings";
const BROWSER_URI = "chrome://firegestures/content/browser.rdf";
const VIEWSOURCE_ID  = "viewsource_mapping";
const VIEWSOURCE_URI = "chrome://firegestures/content/viewSource.rdf";
const BUNDLE_URI = "chrome://firegestures/locale/firegestures.properties";

Components.utils.import("resource://gre/modules/XPCOMUtils.jsm");




function xdGestureService() {
	this._initService();
}


xdGestureService.prototype = {

	classDescription: "Mouse Gesture Service",
	contractID: "@xuldev.org/firegestures/service;1",
	classID: Components.ID("{1d26f3e7-d92e-4bcc-ac79-9624bb181308}"),
	QueryInterface: XPCOMUtils.generateQI([
		Ci.nsISupports,
		Ci.xdIGestureService
	]),

	_dbFile: null,

	_dbConn: null,

	_mappingsMeta: {},

	_namedMappings: {},


	_initService: function FGS__initService() {
		if (this._dbFile)
			return;
		var dirSvc = Cc["@mozilla.org/file/directory_service;1"].getService(Ci.nsIProperties);
		this._dbFile = dirSvc.get("ProfD", Ci.nsILocalFile);
		this._dbFile.append(DB_FILE_NAME);
		this.registerMapping(BROWSER_ID, BROWSER_URI, this.getLocaleString("BROWSER"));
		this.registerMapping(VIEWSOURCE_ID, VIEWSOURCE_URI, this.getLocaleString("VIEWSOURCE"));
	},

	createHandler: function FGS_createHandler() {
		var handler = Cc["@xuldev.org/firegestures/handler;1"].createInstance(Ci.xdIGestureHandler);
		return handler;
	},

	registerMapping: function FGS_registerMapping(aID, aURI, aName) {
		if (aID in this._mappingsMeta)
			return;
		this._mappingsMeta[aID] = { uri: aURI, name: aName };
	},

	getMapping: function FGS_getMapping(aID) {
		if (aID in this._namedMappings)
			return this._namedMappings[aID];
		var meta = this._mappingsMeta[aID];
		if (!meta)
			throw Components.results.NS_ERROR_NOT_INITIALIZED;
		var mapping = Cc["@xuldev.org/firegestures/mapping;1"].createInstance(Ci.xdIGestureMapping);
		mapping.init(aID, meta.uri, meta.name);
		this._namedMappings[aID] = mapping;
		return mapping;
	},

	getMappingForBrowser: function FGS_getMappingForBrowser() {
		return this.getMapping(BROWSER_ID);
	},

	getMappingsInfo: function FGS_getMappingsInfo() {
		var ret = [];
		for (var id in this._mappingsMeta) {
			var meta = this._mappingsMeta[id];
			ret.push({ id: id, uri: meta.uri, name: meta.name });
		}
		return ret;
	},

	backupMappings: function FGS_backupMappings(aFile) {
		if (!this._dbFile.exists())
			throw Components.results.NS_ERROR_FAILURE;
		if (aFile.exists())
			aFile.remove(false);
		this._dbFile.copyTo(aFile.parent, aFile.leafName);
	},

	restoreMappings: function FGS_restoreMappings(aFile) {
		if (aFile.equals(this._dbFile))
			return;
		if (this._dbConn) {
			this._dbConn.close();
			this._dbConn = null;
		}
		if (this._dbFile.exists())
			this._dbFile.remove(false);
		aFile.copyTo(this._dbFile.parent, DB_FILE_NAME);
		this._dbFile = null;
		this._initService();
		for (let { id: id, uri: uri, name: name } of this.getMappingsInfo()) {
			var mapping = this._namedMappings[id];
			if (mapping) {
				mapping.finalize();
				mapping.init(id, uri, name);
			}
		}
		var winMed = Cc["@mozilla.org/appshell/window-mediator;1"].getService(Ci.nsIWindowMediator);
		var winEnum = winMed.getEnumerator(null);
		while (winEnum.hasMoreElements()) {
			var win = winEnum.getNext().QueryInterface(Ci.nsIDOMWindow);
			if (win.PrefsUI) {
				win.gShouldCommit = false;
				win.close();
			}
		}
	},

	getDBConnection: function FGS_getDBConnection(aForceOpen) {
		if (!aForceOpen && !this._dbFile.exists())
			return null;
		if (!this._dbConn || !this._dbConn.connectionReady) {
			var dbSvc = Cc["@mozilla.org/storage/service;1"].getService(Ci.mozIStorageService);
			this._dbConn = dbSvc.openDatabase(this._dbFile);
		}
		return this._dbConn;
	},

	getLocaleString: function FGS_getLocaleString(aName) {
		if (!this._stringBundle) {
			var bundleSvc = Cc["@mozilla.org/intl/stringbundle;1"].
			                getService(Ci.nsIStringBundleService);
			this._stringBundle = bundleSvc.createBundle(BUNDLE_URI);
		}
		try {
			return this._stringBundle.GetStringFromName(aName);
		}
		catch (ex) {
			return aName;
		}
	},

	_stringBundle: null,

};



var NSGetFactory = XPCOMUtils.generateNSGetFactory([xdGestureService]);