diff --git a/config/aws.json b/config/aws.json index 418d8fc46340525c56893f7452c79cb9d41b1c94..95eb55fdfae619519adb14a3a8040cd717dcc507 100644 --- a/config/aws.json +++ b/config/aws.json @@ -21,5 +21,7 @@ }, "proxy": { "bind_to": { "port": 10006 } }, "router": { "bind_to": { "port": 8080 } }, - "kpi_backend_db_url" : "https://kpiggybank.hacksign.in/wsapi/interaction_data" + "kpi_backend_db_url" : "https://kpiggybank.hacksign.in/wsapi/interaction_data", + // whether to show the development menu. + "enable_development_menu": true } diff --git a/config/local.json b/config/local.json index 6d346f58d91652f91b4eff0e375a3941ec55d7a2..0aec32890f91b63109148e09f7bf85cd7877df87 100644 --- a/config/local.json +++ b/config/local.json @@ -12,5 +12,8 @@ "express_log_format": "dev_bid", "email_to_console": true, "env": "local", - "kpi_backend_sample_rate": 1.0 + "kpi_backend_sample_rate": 1.0, + + // whether to show the development menu. + "enable_development_menu": true } diff --git a/config/production.json b/config/production.json index cf9b1968d99e7548030a83e60c4978f78352c1d2..13cbcaf2ed977a1d1dc597c93a2d988335666677 100644 --- a/config/production.json +++ b/config/production.json @@ -50,7 +50,10 @@ "dbwriter_url": "http://127.0.0.1:62900", "browserid": { "bind_to": { "port": 62700 } }, "browserid_url": "http://127.0.0.1:62700", - "router": { "bind_to": { "port": 63300 } } + "router": { "bind_to": { "port": 63300 } }, + + // set to true to enable the development menu. + "enable_development_menu": false // http_proxy should be overridded per env //"http_proxy": { diff --git a/lib/browserid/views.js b/lib/browserid/views.js index 5d8b14e046a6c652322cd677f8b20486fd45631b..9fcb860e2586e208a9058ae8f5a0b1399c395522 100644 --- a/lib/browserid/views.js +++ b/lib/browserid/views.js @@ -38,6 +38,9 @@ function renderCachableView(req, res, template, options) { res.setHeader('Date', new Date().toUTCString()); res.setHeader('Vary', 'Accept-Encoding,Accept-Language'); res.setHeader('Content-Type', 'text/html; charset=utf8'); + + options.enable_development_menu = config.get('enable_development_menu'); + res.render(template, options); } diff --git a/lib/configuration.js b/lib/configuration.js index 2858160e4e2b9acc26a0ab3eacf640a4ba606adc..0c5b68dce08d4963c117b79ced4bf9663e2d4c09 100644 --- a/lib/configuration.js +++ b/lib/configuration.js @@ -219,6 +219,10 @@ var conf = module.exports = convict({ declaration_of_support_timeout_ms: { doc: "The amount of time we wait for a server to respond with a declaration of support, before concluding that they are not a primary. Only relevant when our local proxy is in use, not in production or staging", format: 'integer = 15000' + }, + enable_development_menu: { + doc: "Whether or not the development menu can be accessed", + format: 'boolean = false' } }); diff --git a/resources/views/dialog_layout.ejs b/resources/views/dialog_layout.ejs index 6ca9a9ade30ed647c0d717a819ed21a21009c58c..899bfd401bd3d8aa55382aca6d3562b235079511 100644 --- a/resources/views/dialog_layout.ejs +++ b/resources/views/dialog_layout.ejs @@ -20,7 +20,9 @@ </head> <body class="waiting"> <header id="header"> - <a href="#" id="showDevelopment"> </a> + <% if (enable_development_menu) { %> + <a href="#" id="showDevelopment"> </a> + <% } %> <h1><a class="home" target="_blank" href="/">Mozilla Persona Home</a></h1> </header> diff --git a/resources/views/layout.ejs b/resources/views/layout.ejs index 91e873f19e3636e98ae79402aad503636d46afcd..d01aa64f819fb1fa741e229cd64231fe48afc183 100644 --- a/resources/views/layout.ejs +++ b/resources/views/layout.ejs @@ -18,7 +18,9 @@ <title><%= format(gettext("Mozilla Persona: %s"), [title]) %></title> </head> <body class="loading"> -<a href="#" id="showDevelopment"> </a> +<% if (enable_development_menu) { %> + <a href="#" id="showDevelopment"> </a> +<% } %> <div id="errorBackground"></div> <div id="wrapper">