Last commit for src/views/elements/SecurityElement.php: 2addb500315b7393a90fe66431d7832b1e7386c7

Adjust copyrights years

Chris Pollett [2024-01-03 21:Jan:rd]
Adjust copyrights years
<?php
/**
 * SeekQuarry/Yioop --
 * Open Source Pure PHP Search Engine, Crawler, and Indexer
 *
 * Copyright (C) 2009 - 2020 Chris Pollett chris@pollett.org
 *
 * LICENSE:
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 *
 * END LICENSE
 *
 * @author Sreenidhi Muralidharan
 * @license https://www.gnu.org/licenses/ GPL3
 * @link https://www.seekquarry.com/
 * @copyright 2009 - 2020
 * @filesource
 */
namespace seekquarry\yioop\views\elements;

use seekquarry\yioop as B;
use seekquarry\yioop\configs as C;

/**
 * Element used to handle configurations of Yioop related to authentication,
 * captchas, and recovery of missing passwords
 *
 * @author Sreenidhi Muralidharan/Chris Pollett
 */
class SecurityElement extends Element
{
    /**
     * Method that draws forms to to select either among a text or a
     * graphical captcha
     *
     * @param array $data holds data on the profile elements which have been
     *     filled in as well as data about which form fields to display
     */
    public function render($data)
    {
        $admin_url = htmlentities(B\controllerUrl('admin', true));
        $localize_url = $admin_url .C\CSRF_TOKEN."=".$data[C\CSRF_TOKEN] .
            "&amp;a=manageLocales&amp;arg=editstrings&amp;selectlocale=" .
            $data['LOCALE_TAG'];
        ?>
        <div class = "current-activity">
        <h2><?= tl('security_element_session_captcha') ?></h2>
        <form class="top-margin" method="post">
            <input type="hidden" name="c" value="admin" />
            <input type="hidden" name="a" value="security"/>
            <input type="hidden" name="<?= C\CSRF_TOKEN ?>" value="<?=
                $data[C\CSRF_TOKEN] ?>" />
            <input type="hidden" name="arg" value="updatetypes"/>
            <div class="top-margin">
            <fieldset>
                <legend><b><?=
                tl('security_element_session').
                "&nbsp;" . $this->view->helper("helpbutton")->render(
                    "Session Parameters", $data[C\CSRF_TOKEN])
                ?>
                </b></legend>
                <div class="top-margin"><b><label for="timezone"><?=
                    tl('security_element_site_timezone') ?></label></b>
                <input type="text" id="timezone"
                    name="TIMEZONE" class="extra-wide-field" value='<?=
                    $data["TIMEZONE"] ?>' /></div>
                <div class="top-margin"><b><label for="token-name"><?=
                    tl('security_element_token_name') ?></label></b>
                <input type="text" id="token-name"
                    name="CSRF_TOKEN" class="extra-wide-field" value='<?=
                    $data["CSRF_TOKEN"] ?>' /></div>
                <div class="top-margin"><b><label for="cookie-name"><?=
                    tl('security_element_session_name') ?></label></b>
                <input type="text" id="cookie-name"
                    name="SESSION_NAME" class="extra-wide-field" value='<?=
                    $data["SESSION_NAME"] ?>' /></div>
                <div class="top-margin"><b><label for="autologout"><?=
                    tl('security_element_autologout')?></label></b>
                <?php
                    $this->view->helper("options")->render(
                    "autologout", "AUTOLOGOUT",  $data['AUTOLOGOUT_TIMES'],
                     $data['AUTOLOGOUT']);?></div>
                <div class="top-margin"><b><label for="consent-expires"><?=
                    tl('security_element_consent_expires')?></label></b>
                <?php
                    $this->view->helper("options")->render(
                    "consent-expires", "COOKIE_LIFETIME",
                    $data['COOKIE_LIFETIMES'], $data['COOKIE_LIFETIME']);
                    s?></div>
            </fieldset>
            </div>
            <div class="top-margin">
            <fieldset>
                <legend><b><label
                for="privacy-mode"><?=tl('security_element_privacy') ?>
                </label>
                <?= tl($this->view->helper("helpbutton")->render(
                    "Privacy", $data[C\CSRF_TOKEN]))
                ?></b>
                </legend>
                <table>
                <tr><td>
                <label><b><?=
                    tl('security_element_differential_privacy')?></b></label>
                </td><td>
                <?php
                $this->view->helper("options")->render("privacy-mode",
                    "DIFFERENTIAL_PRIVACY", $data['PRIVACY_MODES'],
                    $data['DIFFERENTIAL_PRIVACY']);
                ?>
                </td></tr><tr><td>
                <label for="group-analytics-mode"><b><?php
                e(tl('security_element_group_analytics'));
                ?></b>
                </label>
                </td><td>
                <?php
                $this->view->helper("options")->render("group-analytics-mode",
                    "GROUP_ANALYTICS_MODE", $data['GROUP_ANALYTICS_MODES'],
                    $data['GROUP_ANALYTICS_MODE']);
                ?>
                </td></tr><tr><td>
                <label
                for="search-analytics-mode"><b><?php
                e(tl('security_element_search_analytics'));
                ?></b>
                </label>
                </td><td>
                <?php
                $this->view->helper("options")->render("search-analytics-mode",
                    "SEARCH_ANALYTICS_MODE", $data['SEARCH_ANALYTICS_MODES'],
                    $data['SEARCH_ANALYTICS_MODE']);
                ?>
                </td></tr></table>
            </fieldset>
            </div>
            <div class="top-margin">
            <fieldset>
                <legend><b><label
                for="captcha-mode"><?=tl('security_element_captcha_type') ?>
                </label>
                <?=$this->view->helper("helpbutton")->render(
                    "Captcha Type", $data[C\CSRF_TOKEN])
                ?></b>
                </legend>
                <?php
                    $this->view->helper("options")->render("captcha-mode",
                        "CAPTCHA_MODE", $data['CAPTCHA_MODES'],
                        $data['CAPTCHA_MODE']);?>
            </fieldset>
            </div>
            <div class="top-margin">
            <fieldset>
                <legend><b><label
                for="recovery-mode"><?=tl('security_element_recovery_type')?>
                </label>
                <?=$this->view->helper("helpbutton")->render(
                    "Recovery Type", $data[C\CSRF_TOKEN])
                ?></b>
                </legend>
                <?php
                $this->view->helper("options")->render("recovery-mode",
                    "RECOVERY_MODE", $data['RECOVERY_MODES'],
                    $data['RECOVERY_MODE']);
                if ($data['CAN_LOCALIZE']) { ?>
                    <div class="top-margin">[<a href="<?=
                        $localize_url.'&amp;filter=register_view_recovery'.
                        '&amp;previous_activity=security' ?>" ><?=
                         tl('security_element_edit_recovery') ?></a>]
                    </div><?php
                }?>
            </fieldset>
            </div>
            <div class="top-margin center"><button
                class="button-box" type="submit"><?=tl('security_element_save')
                ?></button>
            </div>
        </form>
        </div>
        <?php
    }
}
ViewGit