Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | #filter substitution |
michael@0 | 2 | |
michael@0 | 3 | /* This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | * License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
michael@0 | 6 | |
michael@0 | 7 | this.EXPORTED_SYMBOLS = ["UpdateChannel"]; |
michael@0 | 8 | |
michael@0 | 9 | const Cu = Components.utils; |
michael@0 | 10 | |
michael@0 | 11 | Cu.import("resource://gre/modules/Services.jsm"); |
michael@0 | 12 | |
michael@0 | 13 | this.UpdateChannel = { |
michael@0 | 14 | /** |
michael@0 | 15 | * Read the update channel from defaults only. We do this to ensure that |
michael@0 | 16 | * the channel is tightly coupled with the application and does not apply |
michael@0 | 17 | * to other instances of the application that may use the same profile. |
michael@0 | 18 | * |
michael@0 | 19 | * @param [optional] aIncludePartners |
michael@0 | 20 | * Whether or not to include the partner bits. Default: true. |
michael@0 | 21 | */ |
michael@0 | 22 | get: function UpdateChannel_get(aIncludePartners = true) { |
michael@0 | 23 | let channel = "@MOZ_UPDATE_CHANNEL@"; |
michael@0 | 24 | let defaults = Services.prefs.getDefaultBranch(null); |
michael@0 | 25 | try { |
michael@0 | 26 | channel = defaults.getCharPref("app.update.channel"); |
michael@0 | 27 | } catch (e) { |
michael@0 | 28 | // use default value when pref not found |
michael@0 | 29 | } |
michael@0 | 30 | |
michael@0 | 31 | if (aIncludePartners) { |
michael@0 | 32 | try { |
michael@0 | 33 | let partners = Services.prefs.getChildList("app.partner.").sort(); |
michael@0 | 34 | if (partners.length) { |
michael@0 | 35 | channel += "-cck"; |
michael@0 | 36 | partners.forEach(function (prefName) { |
michael@0 | 37 | channel += "-" + Services.prefs.getCharPref(prefName); |
michael@0 | 38 | }); |
michael@0 | 39 | } |
michael@0 | 40 | } catch (e) { |
michael@0 | 41 | Cu.reportError(e); |
michael@0 | 42 | } |
michael@0 | 43 | } |
michael@0 | 44 | |
michael@0 | 45 | return channel; |
michael@0 | 46 | } |
michael@0 | 47 | }; |