<!DOCTYPE html>
<html>
<head>
    <title>Coruson API</title>
    <link rel="icon" href="../favicon.ico"/>
    <link href='css/typography.css' media='screen' rel='stylesheet' type='text/css' />
    <link href='css/reset.css' media='screen' rel='stylesheet' type='text/css' />
    <link href='css/screen.css' media='screen' rel='stylesheet' type='text/css' />
    <link href='css/reset.css' media='print' rel='stylesheet' type='text/css' />
    <link href='css/screen.css' media='print' rel='stylesheet' type='text/css' />
    <script type="text/javascript" src="lib/shred.bundle.js"></script>
    <script src='lib/jquery-1.8.0.min.js' type='text/javascript'></script>
    <script src='lib/jquery.slideto.min.js' type='text/javascript'></script>
    <script src='lib/jquery.wiggle.min.js' type='text/javascript'></script>
    <script src='lib/jquery.ba-bbq.min.js' type='text/javascript'></script>
    <script src='lib/handlebars-2.0.0.js' type='text/javascript'></script>
    <script src='lib/underscore-min.js' type='text/javascript'></script>
    <script src='lib/backbone-min.js' type='text/javascript'></script>
    <script src='lib/swagger-client.js' type='text/javascript'></script>
    <script src='swagger-ui.js' type='text/javascript'></script>
    <script src='lib/highlight.7.3.pack.js' type='text/javascript'></script>
    <script src='lib/marked.js' type='text/javascript'></script>

    <!-- enabling this will enable oauth2 implicit scope support -->
    <script src='lib/swagger-oauth.js' type='text/javascript'></script>
    <script type="text/javascript">
        $(function () {
            var url = window.location.search.match(/url=([^&]+)/);
            if (url && url.length > 1) {
                url = decodeURIComponent(url[1]);
            } else {
                url = window.location.protocol + window.location.pathname + "../../api/resources";
            }


            window.swaggerUi = new SwaggerUi({
                
                url: url,
                dom_id: "swagger-ui-container",
                supportedSubmitMethods: ['get', 'post', 'put', 'delete', 'patch'],
                supportHeaderParams: true,
                highlightSizeThreshold: 100000,
                onComplete: function (swaggerApi, swaggerUi) {
                    if (typeof initOAuth == "function") {
                        /*
                        initOAuth({
                          clientId: "your-client-id",
                          realm: "your-realms",
                          appName: "your-app-name"
                        });
                        */
                    }
                    $('pre code').each(function (i, e) {
                        hljs.highlightBlock(e)
                    });
                },
                onFailure: function (data) {
                    log("Unable to Load SwaggerUI");
                },
                docExpansion: "none",
                sorter: "alpha"
            });

            function addApiKeyAuthorization() {
                var tenantName = $('#input_tenantName')[0].value;
                if (tenantName && tenantName.trim() != "") {
                    window.authorizations.add("key", new ApiKeyAuthorization("Tenant", tenantName, "header"));
                }
            }
            
            $('#input_tenantName').change(function () {
                addApiKeyAuthorization();
            });

            window.swaggerUi.load();
        });
    </script>
</head>

<body class="swagger-section">
    <div id='header'>
        <div class="swagger-ui-wrap">
            <a id="logo">Coruson API Documentation</a>
            <form id='api_selector'>
                <div class='input'><input placeholder="Tenant Url" id="input_tenantName" name="tenantName" type="text" /></div>
                <div class='input'><input placeholder="Authentication Token" id="input_apiKey" name="apiKey" type="text"/></div>
            </form>
        </div>
    </div>

    <div id="message-bar" class="swagger-ui-wrap">&nbsp;</div>
    <div id="swagger-ui-container" class="swagger-ui-wrap"></div>


<script type='text/javascript'>$("#input_apiKey").parent().replaceWith(
    "<div class='input'><input type='text' id='txtUsername' placeholder='Username' style='width:100px'/></div>" +
    "<div class='input'><input type='password' id='txtPassword' placeholder='Password' style='width:100px'/></div>");

$('#txtUsername').change(addBasicAuth);
$('#txtPassword').change(addBasicAuth);

function addBasicAuth() {
    var username = $('#txtUsername').val().replace(/^\s+|\s+$/gm, ''); //trim
    var password = $('#txtPassword').val().replace(/^\s+|\s+$/gm, '');
    if (username && password) {
        window.authorizations.add("basic", new PasswordAuthorization("basic", username, password));
    }
}
</script></body>
</html>

