Heray-Was-Here
Server : Apache
System : Linux mail.lomejor.cr 6.8.0-1059-azure #65~22.04.1-Ubuntu SMP Thu May 28 16:59:19 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
Directory :  /var/www/facapi44/API_Hacienda/api/core/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/facapi44/API_Hacienda/api/core/params.php
<?php
/*
 * Copyright (C) 2017-2025 CRLibre <https://crlibre.org>
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published
 * by the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

global $params;

/**
 * Get me a parameter
 */
function params_get($p, $def = false)
{
    global $params;
    
    # Get them all
    if ($p === false)
        return $params;

    if (isset($params[$p]) && trim($params[$p]) != '')
        return $params[$p];
    else
        return $def;
}

/**
 * Set config parameters
 */
function params_set($p, $val = false, $override = false)
{
    global $params;

    if (is_array($val)) {
        foreach ($val as $vv => $v) {
            _params_set($vv, $v, $override);
        }
    } else
        _params_set($p, $val, $override);

    return $params[$p];
}

/**
 * Helper function to actually store the params
 */
function _params_set($p, $val = false, $override = false)
{
    global $params;

    if (isset($params[$p]) && $override)
        $params[$p] = $val;
    else
        $params[$p] = $val;

    return $params[$p];
}

/**
 * Verify request and set default values when required
 * @todo Verify possible options for each a|b|c etc...
 */
function params_verifyRequest($keys)
{
    foreach ($keys as $key) {
        if (params_get($key["key"], '') === '') {
            $msg = "Falta el parametro requerido: " . $key["key"];
            grace_debug($msg);
            if ($key["req"])
                tools_reply($msg, true);
            else # Set the default value
            {
                grace_debug("Using default");
                params_set($key["key"], $key["def"]);
            }
        }
    }
}

/**
 * Loads the options from the command line
 */
function params_cliLoadOpts($allParams)
{
    grace_debug("Loading in CLI mode");

    echo "loading";

    # Load the params
    //$params = core_init();

    # The actual params to be considered
    $params = array();

    $opts = "";
    $longOpts = array();

    # Extract only the params
    foreach ($allParams as $param) {
        if (isset($param['params']))
            $params[] = $param['params'];
    }

    # For some reason they are stored in pos 0 of the array
    $params = $params[0];

    print_r($params);
    foreach ($params as $p) {
        $longOpt = $p['key'];
        $opts .= $p['cli'];
        # Is it mandatory?
        if ($p['req']) {
            $opts .= ":";
            $longOpt .= ":";
        } else {
            $opts .= "::";
            $longOpt .= "::";
        }

        $longOpts[] = $longOpt;
    }

    grace_debug("Opts requested: " . $opts);

    # I need the basics in order to start
    $args = getopt($opts, $longOpts);

    # Now, lets extract them :)
    foreach ($params as $p) {
        # Was it sent as longOpt?
        if (isset($args[$p['key']]))
            params_set($p['key'], $args[$p['key']]);
        else if (isset($args[$p['cli']]))
            params_set($p['key'], $args[$p['cli']]);
        else if ($p['req'] == false) # If it is optional, I will load the default value?
            params_set($p['key'], $p['def']);
    }

    //print_r(params_get(false));
    params_verifyRequest($params);
    //if ($args[''] == 8)
    //var_dump($args);
}

/**
 * This are the core basic params required to function
 */
function core_getBasicParams() {}

Hry