Skip to content
Snippets Groups Projects
base.js 13.7 KiB
Newer Older
/* base.js
   This is the base JS file to render the user interfaces of kratos and provide
   the end user with flows for login, recovery etc. 

   check_flow_*():
   These functions check the status of the flow and based on the status do some
   action to get a better experience for the end user. Usually this is a
   redirect based on the state

   flow_*():
   execute / render all UI elements in a flow. Kratos expects you to work on
   to query kratos which provides you with the UI elements needed to be
   rendered. This querying and rendering is done exectly by those function.
   Based on what kratos provides or the state of the flow, elements are maybe
   hidden or shown

*/

// Check if an auth flow is configured and redirect to auth page in that
// case.
function check_flow_auth() {
  var state = Cookies.get('flow_state');
  var url = Cookies.get('auth_url');
  if (state == 'auth') {
    Cookies.set('flow_state', '');
    window.location.href = url;
  }
}

// Check if there if the flow is expired, if so, reset the cookie
function check_flow_expired() {
  if (state == 'flow_expired') {
    Cookies.set('flow_state', '');
    $('#contentFlowExpired').show();
  }
}

// The script executed on login flows
function flow_login() {
  var flow = $.urlParam('flow');
  var uri = api_url + 'self-service/login/flows?id=' + flow;

  // Query the Kratos backend to know what fields to render for the
  // current flow
  $.ajax({
    type: 'GET',
    url: uri,
    success: function (data) {
Arie Peterson's avatar
Arie Peterson committed
      // Determine which groups to show.
      var groups = scrape_groups(data);
      for (const group of groups) {
        // Render login form (group: password)
        var form_html = render_form(data, group, 'login');
        $('#contentLogin_' + group).html(form_html);
      }

      var messages_html = render_messages(data);
      $('#contentMessages').html(messages_html);
    },
    complete: function (obj) {
      // If we get a 410, the flow is expired, need to refresh the flow
      if (obj.status == 410) {
        Cookies.set('flow_state', 'flow_expired');
        // If we call the page without arguments, we get a new flow
        window.location.href = 'login';
      }
    },
  });
// This is called after a POST on settings. It tells if the save was
// successful and display / handles based on that outcome
function flow_settings_validate() {
  var flow = $.urlParam('flow');
  var uri = api_url + 'self-service/settings/flows?id=' + flow;

  $.ajax({
    type: 'GET',
    url: uri,
    success: function (data) {
      // We had success. We save that fact in our flow_state
      // cookie and regenerate a new flow
      if (data.state == 'success') {
        Cookies.set('flow_state', 'settings_saved');

        // Redirect to generate new flow ID
        window.location.href = 'settings';
      } else {
        // There was an error, Kratos does not specify what is
        // wrong. So we just show the general error message and
        // let the user figure it out. We can re-use the flow-id
        $('#contentProfileSaveFailed').show();

        // For now, this code assumes that only the password can fail
        // validation. Other forms might need to be added in the future.
Arie Peterson's avatar
Arie Peterson committed
        html = render_form(data, 'password', 'validation');
}

// Render the settings flow, this is where users can change their personal
Arie Peterson's avatar
Arie Peterson committed
// settings, like name, password and totp (second factor). The form contents
// are defined by Kratos.
function flow_settings() {
  // Get the details from the current flow from kratos
  var flow = $.urlParam('flow');
  var uri = api_url + 'self-service/settings/flows?id=' + flow;
  $.ajax({
    type: 'GET',
    url: uri,
    success: function (data) {
      var state = Cookies.get('flow_state');

      // If we have confirmation the settings are saved, show the
      // notification
      if (state == 'settings_saved') {
        $('#contentProfileSaved').show();
        Cookies.set('flow_state', 'settings');
      }

Arie Peterson's avatar
Arie Peterson committed
      // Hide everything except password section if we are in recovery state,
      // so the user is not confused by other fields. The user
Arie Peterson's avatar
Arie Peterson committed
      // probably wants to setup a password only first.
      if (state == 'recovery') {
        $('#contentProfile').hide();
Arie Peterson's avatar
Arie Peterson committed
        $('#contentTotp').hide();
Arie Peterson's avatar
Arie Peterson committed
      // Render the forms (password, profile, totp) based on the fields we got
      // from the API.
      var html = render_form(data, 'password', 'settings');
      $('#pills-password').html(html);

      html = render_form(data, 'profile', 'settings');
      $('#pills-profile').html(html);
Arie Peterson's avatar
Arie Peterson committed
      html = render_form(data, 'totp', 'settings');
      $('#pills-totp').html(html);

      // If the submit button is hit, execute the POST with Ajax.
      $('#formpassword').submit(function (e) {
        // avoid to execute the actual submit of the form.
        e.preventDefault();

        var form = $(this);
        var url = form.attr('action');

        $.ajax({
          type: 'POST',
          url: url,
          data: form.serialize(),
          complete: function (obj) {
            // Validate the settings
            flow_settings_validate();
          },
        });
      });
    },
    complete: function (obj) {
      // If we get a 410, the flow is expired, need to refresh the flow
      if (obj.status == 410) {
        Cookies.set('flow_state', 'flow_expired');
        window.location.href = 'settings';
      }
    },
  });
  var flow = $.urlParam('flow');
  var uri = api_url + 'self-service/recovery/flows?id=' + flow;

  $.ajax({
    type: 'GET',
    url: uri,
    success: function (data) {
      // Render the recover form, method 'link'
Arie Peterson's avatar
Arie Peterson committed
      var html = render_form(data, 'link', 'recovery');
      $('#contentRecover').html(html);

      // Do form post as an AJAX call
      $('#formlink').submit(function (e) {
        // avoid to execute the actual submit of the form.
        e.preventDefault();

        var form = $(this);
        var url = form.attr('action');

        // keep stat we are in recovery
        Cookies.set('flow_state', 'recovery');
        $.ajax({
          type: 'POST',
          url: url,
          data: form.serialize(), // serializes the form's elements.
          success: function (data) {
            // Show the request is sent out
            $('#contentRecover').hide();
            $('#contentRecoverRequested').show();
          },
        });
      });
    },
    complete: function (obj) {
      // If we get a 410, the flow is expired, need to refresh the flow
      if (obj.status == 410) {
        Cookies.set('flow_state', 'flow_expired');
        window.location.href = 'recovery';
      }
    },
  });
Arie Peterson's avatar
Arie Peterson committed
// Based on Kratos UI data, decide which node groups to process.
function scrape_groups(data) {
  var nodes = new Set();
  for (const node of data.ui.nodes) {
    if (node.group != 'default') {
      nodes.add(node.group);
    }
  }
  return nodes;
}

// Based on Kratos UI data and a group name, get the full form for that group.
// kratos groups elements which belongs together in a group and should be posted
// at once. The elements in the default group should be part of all other
// groups.
//
// data: data object as returned form the API
Arie Peterson's avatar
Arie Peterson committed
// group: group to render
// context: string to specify the context of this form. We need this because
//   the Kratos UI data is not sufficient in some cases to decide things like
//   texts and button labels.
function render_form(data, group, context) {
  // Create form
  var action = data.ui.action;
  var method = data.ui.method;
  var form = "<form id='form" + group + "' method='" + method + "' action='" + action + "'>";

  for (const node of data.ui.nodes) {
    if (node.group == 'default' || node.group == group) {
Arie Peterson's avatar
Arie Peterson committed
      var elm = getFormElement(node, context);
// Check if there are any general messages to show to the user and render them
function render_messages(data) {
  var messages = data.ui.messages;
Arie Peterson's avatar
Arie Peterson committed
  if (typeof message == 'undefined' || messages == []) {
    return '';
  }
  var html = '<ul>';
  messages.forEach((message) => {
    html += '<li>';
    html += message.text;
    html += '</li>';
  });
  html += '</ul>';
  return html;
}

// Return form element based on name, including help text (sub), placeholder etc.
// Kratos give us form names and types and specifies what to render. However
// it does not provide labels or translations. This function returns a HTML
// form element based on the fields provided by Kratos with proper names and
// labels
// type: input type, usual "input", "hidden" or "submit". But bootstrap types
//                   like "email" are also supported
// name: name of the field. Used when posting data
// value: If there is already a value known, show it
// messages: error messages related to the field
Arie Peterson's avatar
Arie Peterson committed
function getFormElement(node, context) {
  console.log('Getting form element', node);

  if (node.type == 'img') {
    return (
      `
            <img id="` +
      node.attributes.id +
      `" src='` +
      node.attributes.src +
      `'>`
    );
  }

  if (node.type == 'text') {
    return (
      `
            <span id="` +
      node.attributes.id +
      `" class="form-display form-display-` +
      node.attributes.text.type +
      `">` +
      node.attributes.text.text +
      `</span>`
    );
  }

  var name = node.attributes.name;
  var type = node.attributes.type;
  var value = node.attributes.value;
  var messages = node.messages;

  if (value == undefined) {
    value = '';
  }

  if (typeof messages == 'undefined') {
    messages = [];
  }

  if (name == 'email' || name == 'traits.email') {
    return getFormInput(
      'email',
      name,
      value,
      'E-mail address',
      'Please enter your e-mail address here',
      'Please provide your e-mail address. We will send a recovery link to that e-mail address.',
      messages,
    );
  }

  if (name == 'traits.username') {
    return getFormInput('name', name, value, 'Username', 'Please provide an username', null, messages);
  }

  if (name == 'traits.name') {
    return getFormInput('name', name, value, 'Full name', 'Please provide your full name', null, messages);
  }

  if (name == 'identifier') {
    return getFormInput(
      'email',
      name,
      value,
      'E-mail address',
      'Please provide your e-mail address to log in',
      null,
      messages,
    );
  }

  if (name == 'password') {
    return getFormInput('password', name, value, 'Password', 'Please provide your password', null, messages);
  }

  if (type == 'hidden' || name == 'traits.uuid') {
    return (
      `
            <input type="hidden" class="form-control" id="` +
      name +
      `"
            name="` +
      name +
      `" value='` +
      value +
      `'>`
    );
  }

Arie Peterson's avatar
Arie Peterson committed
  if (name == 'totp_code') {
    return getFormInput(
      'totp_code',
      name,
      value,
      'TOTP code',
      'Please enter the code from your TOTP/authenticator app.',
      null,
      messages,
    );
  }

Arie Peterson's avatar
Arie Peterson committed
    var label = 'Save';
    if (name == 'totp_unlink') {
      label = 'Forget saved TOTP device';
    }
    else if (node.group == 'totp') {
      if (context == 'settings') {
        label = 'Enroll TOTP device';
      }
      else {
        label = 'Verify';
      }
Arie Peterson's avatar
Arie Peterson committed
    }
    if (name == 'method' && value == 'password') {
      if (context == 'settings') {
        label = 'Update password';
      }
      else {
        label = 'Log in';
      }
    }
    if (context == 'recovery') {
      label = 'Send recovery link';
    }
    return (
      `<div class="form-group">
            <input type="hidden" name="` +
      name +
      `" value="` +
      value +
      `">
Arie Peterson's avatar
Arie Peterson committed
             <button type="submit" class="btn btn-primary">` + label + `</button>
  return getFormInput('input', name, value, name, null, null, messages);
}

// Usually called by getFormElement, generic function to generate an
// input box.
// param type: type of input, like 'input', 'email', 'password'
// param name: name of form field, used when posting the form
// param value: preset value of the field
// param label: Label to display above field
// param placeHolder: Label to display in field if empty
// param help: Additional help text, displayed below the field in small font
// param messages: Message about failed input
function getFormInput(type, name, value, label, placeHolder, help, messages) {
  if (typeof help == 'undefined' || help == null) {
    help = '';
  }
  console.log('Messages: ', messages);

  // Id field for help element
  var nameHelp = name + 'Help';

  var element = '<div class="form-group">';
  element += '<label for="' + name + '">' + label + '</label>';
  element += '<input type="' + type + '" class="form-control" id="' + name + '" name="' + name + '" ';

  // messages get appended to help info
  if (messages.length) {
    for (message in messages) {
      console.log('adding message', messages[message]);
      help += messages[message]['text'];
  }

  // If we are a password field, add a eye icon to reveal password
  if (value) {
    element += 'value="' + value + '" ';
  }
  if (help) {
    element += 'aria-describedby="' + nameHelp + '" ';
  }
  if (placeHolder) {
    element += 'placeholder="' + placeHolder + '" ';
  }
  element += '>';

  if (help) {
    element +=
      `<small id="` +
      nameHelp +
      `" class="form-text text-muted">` +
      help +
      `
}

// $.urlParam get parameters from the URI. Example: id =  $.urlParam('id');
$.urlParam = function (name) {
  var results = new RegExp('[?&]' + name + '=([^&#]*)').exec(window.location.href);
  if (results == null) {
    return null;
  }
  return decodeURI(results[1]) || 0;