<?php

require __DIR__ . '/../../vendor/autoload.php';
use opensrs\OMA\SearchAdmins;
if ($_SERVER['REQUEST_METHOD'] === 'POST') {
    require_once dirname(__FILE__) . '/../../opensrs/openSRS_loader.php';
    // Put the data to the Formatted array
    $callArray = array('criteria' => array('company' => $_POST['company'], 'type' => explode(',', $_POST['type']), 'match' => $_POST['match']), 'range' => array('first' => $_POST['first'], 'limit' => $_POST['limit']), 'sort' => array('by' => $_POST['by'], 'direction' => $_POST['direction']));
    if (!empty($_POST['token'])) {
        $callArray['token'] = $_POST['token'];
    }
    // Open SRS Call -> Result
    $response = SearchAdmins::call(array_filter_recursive($callArray));
    // Print out the results
    echo ' In: ' . json_encode($callArray) . '<br>';
    echo 'Out: ' . $response;
} else {
    // Format
    if (isset($_GET['format'])) {
        $tf = $_GET['format'];
    } else {
        $tf = 'json';
    }
    include 'header.inc';
    ?>
<div class="container">
<h3>search_admins</h3>
<form action="" method="post" class="form-horizontal" >
	<div class="control-group">
	    <label class="control-label">Session Token (Option)</label>
	    <div class="controls"><input type="text" name="token" value="" ></div>