From 5968549e9f0beb1184ca185f8d71c1c6058ab8af Mon Sep 17 00:00:00 2001
From: Shane Tomlinson <stomlinson@mozilla.com>
Date: Mon, 18 Jun 2012 12:50:39 +0100
Subject: [PATCH] Disable the development menu in staging and prod using the
 configuration "enable_development_menu"

issue #1733
---
 config/aws.json                   | 4 +++-
 config/local.json                 | 5 ++++-
 config/production.json            | 5 ++++-
 lib/browserid/views.js            | 3 +++
 lib/configuration.js              | 4 ++++
 resources/views/dialog_layout.ejs | 4 +++-
 resources/views/layout.ejs        | 4 +++-
 7 files changed, 24 insertions(+), 5 deletions(-)

diff --git a/config/aws.json b/config/aws.json
index 418d8fc46..95eb55fdf 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 6d346f58d..0aec32890 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 cf9b1968d..13cbcaf2e 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 5d8b14e04..9fcb860e2 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 2858160e4..0c5b68dce 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 6ca9a9ade..899bfd401 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">&nbsp;</a>
+         <% if (enable_development_menu) { %>
+           <a href="#" id="showDevelopment">&nbsp;</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 91e873f19..d01aa64f8 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">&nbsp;</a>
+<% if (enable_development_menu) { %>
+  <a href="#" id="showDevelopment">&nbsp;</a>
+<% } %>
 <div id="errorBackground"></div>
 
 <div id="wrapper">
-- 
GitLab