<?php

use phpweb\I18n\Languages;
use phpweb\UserPreferences;

$_SERVER['BASE_PAGE'] = 'my.php';
include_once __DIR__ . '/include/prepend.inc';

// Try to make this page non-cached
header_nocache();

// Languages array copy and options to list
$langs = Languages::ACTIVE_ONLINE_LANGUAGES;
$options = [];

// We have post data, and it is an available language
if (isset($_POST['my_lang'], $langs[$_POST['my_lang']])) {

    // Set the language preference
    $userPreferences->languageCode = $_POST['my_lang'];

    // Add this as first option, selected
    $options[] = '<option value="' . $_POST['my_lang'] . '" selected>' .
                 $langs[$_POST['my_lang']] . "</option>\n";

    // Remove, so it is not listed two times
    unset($langs[$_POST['my_lang']]);
}

// We have received a cookie and it is an available language
elseif (isset($langs[$userPreferences->languageCode])) {

    // Add this as first option, selected
    $options[] = '<option value="' . $userPreferences->languageCode . '" selected>' .
                 $langs[$userPreferences->languageCode] . "</option>\n";

    // Remove, so it is not listed two times
    unset($langs[$userPreferences->languageCode]);
}

// We have no cookie and no form submitted
else {
    // Add this as first option, selected
    $options[] = "<option value=\"not_set\" selected=\"selected\">Not Set</option>\n";
}

// Add all other languages
foreach ($langs as $code => $name) {
    $options[] = '<option value="' . $code . '">' . $name . "</option>\n";
}

// Assemble form from collected data
$langpref = "<select id=\"form-my_lang\" name=\"my_lang\">\n" .
            implode("", $options) . "</select>\n";

// Save URL shortcut fallback setting
if (isset($_POST['urlsearch'])) {
    $userPreferences->setUrlSearchType($_POST['urlsearch']);
}

if (isset($_POST["showug"])) {
    $userPreferences->setIsUserGroupTipsEnabled($_POST["showug"] === "enable");
}

// Prepare mirror array
$mirror_sites = $MIRRORS;
$mirror_sites["NONE"] = [7 => MIRROR_OK];

$userPreferences->save();

site_header("My PHP.net", ["current" => "community"]);
?>

<form action="/my.php" method="post">
<h1>My PHP.net</h1>

<p>
 This page allows you to customize the PHP.net site.
</p>

<?php if (!is_official_mirror()) { ?>
<p class="warn">
 This is not an official PHP.net mirror site, and therefore the settings
 you set and see here will <strong>not</strong> be effective on any
 official PHP.net mirror site. The settings you specify here are only
 going to be active for this URL, and only if you have cookies enabled.
</p>
<?php } else { ?>
<p>
 These settings are cookie-based and will work on all official PHP.net
 mirror sites.
</p>
<?php } ?>

<h2>Preferred language</h2>

<p>
 If you use a shortcut or search for a function, the language used
 is determined by checking for the following settings. The list is
 in priority order, the first is the most important. Normally you don't
 need to set your preferred language, as your browser's language preferences
 are detected automatically using the Accept-Language header.
</p>

<div class="indent">
<table border="0" cellpadding="3" cellspacing="2" class="standard">
<?php

// Data for the language settings table
$langinfo = [

    "<label for=\"form-my_lang\">Your preferred language</label>" =>
    $langpref,

    "Your Accept-Language browser setting" =>
    (isset($_SERVER['HTTP_ACCEPT_LANGUAGE']) ? htmlentities($_SERVER['HTTP_ACCEPT_LANGUAGE'], ENT_QUOTES | ENT_IGNORE, 'UTF-8') : "None"),

    "The mirror's default language" =>
    default_language(),

    "Default" => "en",
];

// Write a row for all settings
foreach ($langinfo as $lin => $lid) {
    echo " <tr>\n  <td class=\"sub\">" . $lin . "</td>\n";
    echo "  <td>" . $lid . "</td>\n </tr>\n";
}

?>
</table>
</div>

<p>
 These settings are only overridden in case you have passed a language
 setting URL parameter or POST data to a page or you are viewing a manual
 page in a particular language. In these cases, the explicit specification
 overrides the language selected from the above list.
</p>

<p>
 The language setting is honored when you use a
 <a href="/urlhowto.php">URL shortcut</a>, when you start
 a function list search on a non-manual page, when you visit
 the <a href="/download-docs.php">manual download</a> or
 <a href="/docs.php">language selection</a> pages, etc.
</p>

<h2>URL search fallback</h2>

<p>
 When you try to access a PHP.net page via a URL shortcut, and
 the site is unable to find that particular page, it falls back
 to a documentation search, or a function list lookup, depending on
 your choice. The default is a function list lookup, as most of
 the URL shortcut users try to access function documentation pages.
</p>

<div class="indent">
 Your setting: <input id="form-urlsearch-quickref" type="radio" name="urlsearch" value="quickref"
<?php
$type = $userPreferences->searchType;
if ($type === UserPreferences::URL_NONE || $type === UserPreferences::URL_FUNC) {
    echo ' checked="checked"';
}
echo '> <label for="form-urlsearch-quickref">Function list search</label> <input id="form-urlsearch-manual" type="radio" name="urlsearch" value="manual"';
if ($type === UserPreferences::URL_MANUAL) {
    echo ' checked="checked"';
}
?>
> <label for="form-urlsearch-manual">PHP Documentation search</label>
</div>

<br>
<h2>User Group tips</h2>

<p>
We are experimenting with listing nearby user groups. This feature is highly experimental
and will very likely change a lot and be broken at times.
</p>
<label for="showugenable">Enable UG tips</label> <input type="radio" name="showug" id="showugenable" value="enable" <?php echo $userPreferences->isUserGroupTipsEnabled ? "checked=checked" : "" ?>><br>
<label for="showugdisable">Disable UG tips</label> <input type="radio" name="showug" id="showugdisable" value="disable" <?php echo $userPreferences->isUserGroupTipsEnabled ? "" : "checked=checked" ?>>

<p class="center">
 <input type="submit" value="Set All Preferences">
</p>
</form>

<?php site_footer(); ?>