You are here

public static function miniorange_saml_sp_registration::register_data in SAML SP 2.0 Single Sign On (SSO) - SAML Service Provider 8

2 calls to miniorange_saml_sp_registration::register_data()
miniorange_saml_sp_registration::miniorange_saml_register_popup in src/miniorange_saml_sp_registration.php
Utilities::customer_setup_submit in src/Utilities.php

File

src/miniorange_saml_sp_registration.php, line 31

Class

miniorange_saml_sp_registration

Namespace

Drupal\miniorange_saml

Code

public static function register_data($transaction_limit = false, $invalid_credential = false) {
  global $base_url;
  $requestUrl = $base_url . MiniorangeSAMLConstants::LICENSING_TAB_URL;
  $myArray = array();
  $myArray = $_POST;
  $form_id = isset($_POST['form_id']) ? $_POST['form_id'] : '';
  $form_token = isset($_POST['form_token']) ? $_POST['form_token'] : '';
  $admin_email = \Drupal::config('miniorange_saml.settings')
    ->get('miniorange_saml_customer_admin_email');
  ?>

        <html>
        <head>
            <title>Register with miniOrange</title>
            <link href="https://fonts.googleapis.com/css?family=PT+Serif" rel="stylesheet">
            <meta name="viewport" content="width=device-width, initial-scale=1">
            <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
            <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
            <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
            <style>
                .saml_loader {
                    margin: auto;
                    display: block;
                    border: 5px solid #f3f3f3; /* Light grey */
                    border-top: 5px solid #3498db; /* Blue */
                    border-radius: 50%;
                    width: 50px;
                    height: 50px;
                    animation: spin 2s linear infinite;
                }
                @keyframes spin {
                    0% { transform: rotate(0deg); }
                    100% { transform: rotate(360deg); }
                }
                .popup{
			  background: #fff;
			  padding: 4em 4em 2em;
			  max-width: 400px;
			  margin: 50px auto 0;
			  box-shadow: 0 0 1em #222;
			  border-radius: 2px;
			}
			.popup-header {
			    margin:0 0 50px 0;
			    padding:10px;
			    text-align:center;
			    font-size:20px;
			    color:darken(#e5e5e5, 50%);
			    border-bottom:solid 1px #e5e5e5;
			  }
			  .popup-para {
			    margin: 0 0 3em 0;
			    position: relative;
			  }
			  .popup-input {
			    display: block;
			    box-sizing: border-box;
			    width: 90%;
			    outline: none;
			    margin:0;
			  }
			  .popup-input[type="text"],
			  .popup-input[type="password"],
              .popup-input[type="email"] {
			    background: #fff;
			    border: 1px solid #dbdbdb;
			    font-size: 1.2em;
			    padding: 6px 0 0 5px;
			    border-radius: 4px;
			  }
			  .popup-input[type="text"]:focus,
			  .popup-input[type="password"]:focus,
              .popup-input[type="email"]:focus {
			    background: #fff
			  }

			  .popup-label{
			    position: absolute;
			    left: -4px;
			    top: -25px;
			    color: #999;
			    font-size: 16px;
			    display: inline-block;
			    padding: 4px 10px;
			    font-weight: 400;
			    background-color: rgba(255,255,255,0);
			    @include transition(color .3s, top .3s, background-color .8s);
			    &.floatLabel{
			      top: -11px;
			      background-color: rgba(255,255,255,0.8);
			      font-size: 14px;
			    }
				}

            </style>
            <script type="text/javascript">
                $(document).ready(function () {
                    $("#myModal").modal({
                        backdrop: 'static',
                        keyboard: false
                    });
                    $('.button').click(function() {
                        document.getElementById('saml_loader').style.display = 'block';
                    });
                });
                function check() {
                  if (document.getElementById("password").value == document.getElementById("confirm_password").value) {
                    if (document.getElementById("password").value.length < 6) {
                        document.getElementById("saml_continue").disabled = true;
                        document.getElementById("message").innerHTML = "<p style=color:green;>Password match: <b style=color:green;>Yes</b></p>";
                        document.getElementById("password_error").innerHTML = "<p style=color:green;>Minimum Length: <b style=color:red;>6</b></p>";
                    }else{
                        document.getElementById("saml_continue").disabled = false;
                        document.getElementById("message").innerHTML = "<p style=color:green;>Password match: <b style=color:green;>Yes</b></p>";
                        document.getElementById("password_error").innerHTML = "<p></p>";
                    }

                  } else {
                    if (document.getElementById("password").value.length < 6) {
                        document.getElementById("password_error").innerHTML = "<p style=color:green;>Minimum Length: <b style=color:red;>6</b></p>";
                    }else{
                        document.getElementById("password_error").innerHTML = "<p></p>";
                    }
                    document.getElementById("saml_continue").disabled = true;
                    document.getElementById("message").innerHTML = "<p style=color:green>Password match: <b style=color:red;>No</b></p>";
                  }
                  if (document.getElementById("Email").value.length == 0 || document.getElementById("password").value.length == 0 || document.getElementById("confirm_password").value.length == 0) {
                		document.getElementById("saml_continue").disabled = true;
                        document.getElementById("message").innerHTML = "<p></p>";
                	}
                }
            </script>
        </head>
        <body>
        <div class="container">
            <div class="modal fade" id="myModal" role="dialog" style="background: rgba(0,0,0,0.1);">
                <div class="modal-dialog" style="width: 500px;">
                    <div class="modal-content popup" style="border-radius: 20px;">
                        	<?php

  if ($transaction_limit == true) {
    ?>
                        		<p style="color: red;font-size: 11px;">An error has been occured. Please try after some time.</p>
                            <?php

  }
  elseif ($invalid_credential == true) {
    ?>
                        		<p style="color: red;font-size: 11px;text-align: center;">Invalid Credentials!</p>
                            <?php

  }
  else {
    ?>
                            	<p style="color: green;font-size: 11.2px;text-align: center;">You need to register with mini<span style="color:orange;"><b>O</b></span>range in order to upgrade to the licensed versions of this module.</p>
                            <?php

  }
  ?>
                            <h2 class="popup-header">Register/Login with mini<span style="color:orange;"><b>O</b></span>range</h2>


                            <form name="f" method="post" action="" id="mo_register">
                                <div>
                                    <p class="popup-para">
                                            <label for="Email" class="floatLabel popup-label">Email</label>
                                            <input id="Email" name="Email" type="email" class="popup-input">
                                        </p>
                                        <p class="popup-para">
                                            <label for="password" class="floatLabel popup-label">Password</label>
                                            <input id="password" name="password" type="password" class="popup-input" onkeyup="check();">
                                            <span id="password_error" style="float:left;font-size:11px;"></span>
                                        </p>
                                        <p class="popup-para">
                                            <label for="confirm_password" class="floatLabel popup-label">Confirm Password</label>
                                            <input id="confirm_password" name="confirm_password" type="password" class="popup-input" onkeyup="check();">
                                            <span id="message" style="float:left;font-size:11px;"></span>
                                        </p>

                                    <br>
                                    <input type="hidden" name="mo_saml_check" value="True">
                                    <input type="hidden" name="form_token" value=<?php

  echo $form_token;
  ?>>
                                    <input type="hidden" name="form_id" value= <?php

  echo $form_id;
  ?>>

                                    <div class="modal-footer">
                                        <a type="button" class="btn btn-default" href="<?php

  echo $requestUrl;
  ?>" style="float:left;" >Close</a>
                                               <input type="submit" class="btn btn-danger" id="saml_continue" disabled="disabled" value="Submit" onclick="" /><br>
                                        <div class="saml_loader" id="saml_loader" style="display: none;"></div>
                                        <br>
                                        <h6 style="text-align:center;">In case of any queries or issues, <br> please <a href="mailto:<?php

  echo MiniorangeSAMLConstants::SUPPORT_EMAIL;
  ?>"><strong>contact us</strong>.</a> </h6>
                                    </div>
                                    </p>
                                </div>
                            </form>

                    </div>
                </div>
            </div>
        </div>
        </body>
        </html>

        <?php

  exit;
}