summaryrefslogtreecommitdiffstats
path: root/extensions/BrowserID/template/en/default/hook/account/auth/login-additional_methods.html.tmpl
diff options
context:
space:
mode:
authorGervase Markham <gerv@mozilla.org>2012-11-20 15:50:48 +0100
committerByron Jones <bjones@mozilla.com>2012-11-20 15:50:48 +0100
commit6feee28184b9eda5a5d83423af99c35bf17864f4 (patch)
treecae6e304eae8c7edc3261cb157481e78ec0e7ac5 /extensions/BrowserID/template/en/default/hook/account/auth/login-additional_methods.html.tmpl
parentc32d40fa6b8484341e61a144cbe9283d57f51ce0 (diff)
downloadbugzilla-6feee28184b9eda5a5d83423af99c35bf17864f4.tar.gz
bugzilla-6feee28184b9eda5a5d83423af99c35bf17864f4.tar.xz
Bug 791035: Cookie lifetime should extend beyond session when authenticated via Persona login
Diffstat (limited to 'extensions/BrowserID/template/en/default/hook/account/auth/login-additional_methods.html.tmpl')
-rw-r--r--extensions/BrowserID/template/en/default/hook/account/auth/login-additional_methods.html.tmpl49
1 files changed, 22 insertions, 27 deletions
diff --git a/extensions/BrowserID/template/en/default/hook/account/auth/login-additional_methods.html.tmpl b/extensions/BrowserID/template/en/default/hook/account/auth/login-additional_methods.html.tmpl
index 2b6f4b85a..3a0ecb1cc 100644
--- a/extensions/BrowserID/template/en/default/hook/account/auth/login-additional_methods.html.tmpl
+++ b/extensions/BrowserID/template/en/default/hook/account/auth/login-additional_methods.html.tmpl
@@ -6,44 +6,39 @@
<script src="https://browserid.org/include.js" type="text/javascript"></script>
<script type="text/javascript">
+function createHidden(name, value, form) {
+ var field = document.createElement('input');
+ field.type = 'hidden';
+ field.name = name;
+ field.value = value;;
+ form.appendChild(field);
+}
+
function browserid_sign_in() {
navigator.id.getVerifiedEmail(function(assertion) {
if (assertion) {
// This code will be invoked once the user has successfully
// selected an email address they control to sign in with.
- var browseridForm = document.createElement('form');
- browseridForm.action = '[% target FILTER js %]';
- browseridForm.method = 'POST';
- browseridForm.style.display = 'none';
-
- var tokenField = document.createElement('input');
- tokenField.type = 'hidden';
- tokenField.name = 'token';
- tokenField.value = '[% issue_hash_token(['login']) FILTER js %]';
- browseridForm.appendChild(tokenField);
-
- var assertionField = document.createElement('input');
- assertionField.type = 'hidden';
- assertionField.name = 'browserid_assertion';
- assertionField.value = assertion;
- browseridForm.appendChild(assertionField);
-
- var hidden_fields =[];
- var field_count = 0;
+ var form = document.createElement('form');
+ form.action = '[% target FILTER js %]';
+ form.method = 'POST';
+ form.style.display = 'none';
+
+ createHidden('token', '[% issue_hash_token(['login']) FILTER js %]', form);
+ createHidden('Bugzilla_remember', 'on', form);
+ createHidden('browserid_assertion', assertion, form);
+
[% FOREACH field = cgi.param() %]
[% NEXT IF field.search("^(Bugzilla_(login|password|restrictlogin)|token|browserid_assertion)$") %]
[% FOREACH mvalue = cgi.param(field).slice(0) %]
- hidden_fields[field_count] = document.createElement('input');
- hidden_fields[field_count].type = 'hidden';
- hidden_fields[field_count].name = '[% field FILTER js %]';
- hidden_fields[field_count].value = '[% mvalue FILTER html_linebreak FILTER js %]';
- browseridForm.appendChild(hidden_fields[field_count]);
+ createHidden('[% field FILTER js %]',
+ '[% mvalue FILTER html_linebreak FILTER js %]',
+ form);
[% END %]
- field_count++;
[% END %]
- document.body.appendChild(browseridForm);
- browseridForm.submit();
+ document.body.appendChild(form);
+ form.submit();
return true;
}
});