mirror of
https://github.com/unraid/webgui.git
synced 2025-12-31 14:40:36 -06:00
336 lines
12 KiB
Plaintext
336 lines
12 KiB
Plaintext
Menu="NetworkServices"
|
|
Type="xmenu"
|
|
Title="Outgoing Proxy Manager"
|
|
Icon="icon-network"
|
|
Tag="icon-network"
|
|
---
|
|
<?php
|
|
/* Copyright 2024, Lime Technology
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License version 2,
|
|
* as published by the Free Software Foundation.
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*/
|
|
|
|
require_once("plugins/dynamix/include/OutgoingProxyLib.php");
|
|
|
|
/* Parse the plugin config file. */
|
|
$cfg = parse_plugin_config();
|
|
|
|
/* Pid file used to track the Running/Stopped status. */
|
|
$opm_pid = "OutgoingProxy";
|
|
$pid_file = OPM_PID_FILE;
|
|
|
|
$cfg['proxy_active'] = $cfg['proxy_active'] ?? "0";
|
|
if ($cfg['proxy_active'] != "0") {
|
|
file_put_contents($pid_file, "running");
|
|
} else if (file_exists($pid_file)) {
|
|
unlink($pid_file);
|
|
}
|
|
|
|
/* Be sure proxy_mames are defined */
|
|
$cfg['proxy_name_1'] = $cfg['proxy_name_1'] ?? "";
|
|
$cfg['proxy_name_2'] = $cfg['proxy_name_2'] ?? "";
|
|
$cfg['proxy_name_3'] = $cfg['proxy_name_3'] ?? "";
|
|
|
|
/* Parse the url, user, and password from the full url for proxy 1. */
|
|
$url_array = get_proxy_info($cfg['proxy_url_1'] ?? "", $cfg['proxy_user_1'] ?? "", $cfg['proxy_pass_1'] ?? "");
|
|
$cfg['proxy_url_1'] = $url_array['url'];
|
|
$cfg['proxy_user_1'] = $url_array['user'];
|
|
$cfg['proxy_pass_1'] = $url_array['pass'];
|
|
$proxy_1_url = $url_array['full_url'];
|
|
|
|
/* Parse the url, user, and password from the full url for proxy 2. */
|
|
$url_array = get_proxy_info($cfg['proxy_url_2'] ?? "", $cfg['proxy_user_2'] ?? "", $cfg['proxy_pass_2'] ?? "");
|
|
$cfg['proxy_url_2'] = $url_array['url'];
|
|
$cfg['proxy_user_2'] = $url_array['user'];
|
|
$cfg['proxy_pass_2'] = $url_array['pass'];
|
|
$proxy_2_url = $url_array['full_url'];
|
|
|
|
/* Parse the url, user, and password from the full url for proxy 3. */
|
|
$url_array = get_proxy_info($cfg['proxy_url_3'] ?? "", $cfg['proxy_user_3'] ?? "", $cfg['proxy_pass_3'] ?? "");
|
|
$cfg['proxy_url_3'] = $url_array['url'];
|
|
$cfg['proxy_user_3'] = $url_array['user'];
|
|
$cfg['proxy_pass_3'] = $url_array['pass'];
|
|
$proxy_3_url = $url_array['full_url'];
|
|
?>
|
|
|
|
<form markdown="1" name="outgoing_proxy_manager" method="POST" action="/update.php" target="progressFrame">
|
|
<input type="hidden" name="#file" value="<?=PLG_CONFIG_FILE;?>">
|
|
<input type="hidden" name="#command" value="<?= OUTGOING_PROXY_SCRIPT; ?>">
|
|
<input type="hidden" name="#arg[1]" value="apply">
|
|
|
|
_(Enable Outgoing Proxy)_
|
|
:
|
|
|
|
_(Select Proxy)_:
|
|
: <select name="proxy_active" size="1">
|
|
<?=mk_option($cfg['proxy_active'], "0", "_(None)_");?>
|
|
<?if (($cfg['proxy_url_1']) && ($cfg['proxy_name_1'])):?>
|
|
<?=mk_option($cfg['proxy_active'], "1", htmlspecialchars($cfg['proxy_name_1']), "disabled");?>
|
|
<?endif;?>
|
|
<?if (($cfg['proxy_url_2']) && ($cfg['proxy_name_2'])):?>
|
|
<?=mk_option($cfg['proxy_active'], "2", htmlspecialchars($cfg['proxy_name_2']), "disabled");?>
|
|
<?endif;?>
|
|
<?if (($cfg['proxy_url_3']) && ($cfg['proxy_name_3'])):?>
|
|
<?=mk_option($cfg['proxy_active'], "3", htmlspecialchars($cfg['proxy_name_3']), "disabled");?>
|
|
<?endif;?>
|
|
</select>
|
|
|
|
:outgoing_proxy_enable_plug:
|
|
> Select the Proxy to use. Only online Proxies will be selectable.
|
|
>
|
|
> If your network environment requires an outgoing http proxy, define that here.
|
|
>
|
|
> Outgoing connections from the webgui and some system processes will use the specified http proxy. Docker container installs and updates will use the proxy, but the container itself will not, neither will any VMs.
|
|
>
|
|
> For a more comprehensive solution you might consider setting up <u><a href='https://docs.unraid.net/go/configuring-vpn-tunneled-access-for-system/' target='_blank'>_(VPN tunnel access for System)_</a></u>.
|
|
:end
|
|
|
|
<div markdown="1" class="shade">
|
|
_(Outgoing Proxy)_ 1
|
|
:
|
|
|
|
_(Name)_:
|
|
: <input type="text" name="proxy_name_1" maxlength="35" value="<?=$cfg['proxy_name_1'];?>" placeholder="(_(Required)_)">
|
|
<span id="proxy-status-1"></span>
|
|
|
|
:outgoing_proxy_name_plug:
|
|
> Outgoing Proxy name for this Proxy.
|
|
:end
|
|
|
|
_(URL)_:
|
|
: <input type="text" name="proxy_url_1" maxlength="100" value="<?=htmlspecialchars($cfg['proxy_url_1']);?>" onchange="verifyUrl(this)" placeholder="_(http://IP:port or http://host:port)_">
|
|
|
|
:outgoing_proxy_url_plug:
|
|
> Outgoing Proxy URL for this Proxy. The URL can be entered with or without credentials. The credentials will be parsed from the URL.
|
|
>
|
|
> If you enter a User and Password, they will be used as new credentials.
|
|
:end
|
|
|
|
_(User)_:
|
|
: <input type="text" name="proxy_user_1" maxlength="100" value="<?=htmlspecialchars($cfg['proxy_user_1']);?>" placeholder="(_(Optional)_)">
|
|
|
|
:outgoing_proxy_user_plug:
|
|
> Outgoing Proxy User Name for this Proxy.
|
|
:end
|
|
|
|
_(Password)_:
|
|
: <input type="password" name="proxy_pass_1" maxlength="100" value="<?=htmlspecialchars($cfg['proxy_pass_1']);?>" placeholder="(_(Optional)_)">
|
|
|
|
:outgoing_proxy_password_plug:
|
|
> Outgoing Proxy Password for this Proxy.
|
|
:end
|
|
</div>
|
|
|
|
<div markdown="1" class="shade">
|
|
_(Outgoing Proxy)_ 2
|
|
:
|
|
|
|
_(Name)_:
|
|
: <input type="text" name="proxy_name_2" maxlength="35" value="<?=$cfg['proxy_name_2'];?>" placeholder="(_(Required)_)"><span id="proxy-status-2"></span>
|
|
|
|
:outgoing_proxy_name_plug:
|
|
> Outgoing Proxy name for this Proxy.
|
|
:end
|
|
|
|
_(URL)_:
|
|
: <input type="text" name="proxy_url_2" maxlength="100" value="<?=htmlspecialchars($cfg['proxy_url_2']);?>" onchange="verifyUrl(this)" placeholder="_(http://IP:port or http://host:port)_">
|
|
|
|
:outgoing_proxy_url_plug:
|
|
> Outgoing Proxy URL for this Proxy. The URL can be entered with or without credentials. The credentials will be parsed from the URL.
|
|
>
|
|
> If you enter a User and Password, they will be used as new credentials.
|
|
:end
|
|
|
|
_(User)_:
|
|
: <input type="text" name="proxy_user_2" maxlength="100" value="<?=htmlspecialchars($cfg['proxy_user_2']);?>" placeholder="(_(Optional)_)">
|
|
|
|
:outgoing_proxy_user_plug:
|
|
> Outgoing Proxy User Name for this Proxy.
|
|
:end
|
|
|
|
_(Password)_:
|
|
: <input type="password" name="proxy_pass_2" maxlength="100" value="<?=htmlspecialchars($cfg['proxy_pass_2']);?>" placeholder="(_(Optional)_)">
|
|
|
|
:outgoing_proxy_password_plug:
|
|
> Outgoing Proxy Password for this Proxy.
|
|
:end
|
|
|
|
</div>
|
|
|
|
<div markdown="1" class="shade">
|
|
_(Outgoing Proxy)_ 3
|
|
:
|
|
|
|
_(Name)_:
|
|
: <input type="text" name="proxy_name_3" maxlength="35" value="<?=$cfg['proxy_name_3'];?>" placeholder="(_(Required)_)"><span id="proxy-status-3"></span>
|
|
|
|
:outgoing_proxy_name_plug:
|
|
> Outgoing Proxy name for this Proxy.
|
|
:end
|
|
|
|
_(URL)_:
|
|
: <input type="text" name="proxy_url_3" maxlength="100" value="<?=htmlspecialchars($cfg['proxy_url_3']);?>" onchange="verifyUrl(this)" placeholder="_(http://IP:port or http://host:port)_">
|
|
|
|
:outgoing_proxy_url_plug:
|
|
> Outgoing Proxy URL for this Proxy. The URL can be entered with or without credentials. The credentials will be parsed from the URL.
|
|
>
|
|
> If you enter a User and Password, they will be used as new credentials.
|
|
:end
|
|
|
|
_(User)_:
|
|
: <input type="text" name="proxy_user_3" maxlength="100" value="<?=htmlspecialchars($cfg['proxy_user_3']);?>" placeholder="(_(Optional)_)">
|
|
|
|
:outgoing_proxy_user_plug:
|
|
> Outgoing Proxy User Name for this Proxy.
|
|
:end
|
|
|
|
_(Password)_:
|
|
: <input type="password" name="proxy_pass_3" maxlength="100" value="<?=htmlspecialchars($cfg['proxy_pass_3']);?>" placeholder="(_(Optional)_)">
|
|
|
|
:outgoing_proxy_password_plug:
|
|
> Outgoing Proxy Password for this Proxy.
|
|
:end
|
|
|
|
</div>
|
|
|
|
|
|
: <span class="inline-block">
|
|
<input type="submit" value='_(Apply)_'>
|
|
<input type="button" value="_(Done)_" onclick="done()">
|
|
</span>
|
|
</form>
|
|
|
|
<script>
|
|
/* Refresh Proxy Manager page showing updated proxy status. */
|
|
const proxyUrls = <?= json_encode([
|
|
'proxy_1_url' => $proxy_1_url,
|
|
'proxy_2_url' => $proxy_2_url,
|
|
'proxy_3_url' => $proxy_3_url,
|
|
'proxy_active' => $cfg['proxy_active']
|
|
]) ?>;
|
|
|
|
function refreshPage() {
|
|
$.post(OPMURL, {
|
|
action: "proxy_status",
|
|
proxy_1_url: proxyUrls.proxy_1_url,
|
|
proxy_2_url: proxyUrls.proxy_2_url,
|
|
proxy_3_url: proxyUrls.proxy_3_url,
|
|
proxy_active: proxyUrls.proxy_active
|
|
}, function(data) {
|
|
/* Refresh the proxy status. */
|
|
/* Update the proxy status div */
|
|
$('#proxy-status-1').html('<strong>' + data.proxy_status_1 + '</strong>');
|
|
|
|
/* Update the proxy status div */
|
|
$('#proxy-status-2').html('<strong>' + data.proxy_status_2 + '</strong>');
|
|
|
|
/* Update the proxy status div */
|
|
$('#proxy-status-3').html('<strong>' + data.proxy_status_3 + '</strong>');
|
|
|
|
//*Get a reference to the dropdown element. */
|
|
const dropdown = document.querySelector('select[name="proxy_active"]');
|
|
const options = dropdown.getElementsByTagName('option');
|
|
|
|
/* Enable the dropdown element if the proxy is available or active. */
|
|
const condition_1 = $('#proxy-status-1').text().trim() === '' || $('#proxy-status-1').text().trim() === 'Active';
|
|
const optionToEnableOrDisable_1 = options[1];
|
|
|
|
if (optionToEnableOrDisable_1) {
|
|
if (condition_1) {
|
|
/* Enable the option. */
|
|
optionToEnableOrDisable_1.removeAttribute('disabled');
|
|
} else {
|
|
/* Disable the option. */
|
|
optionToEnableOrDisable_1.setAttribute('disabled', 'disabled');
|
|
}
|
|
}
|
|
|
|
/* Enable the dropdown element if the proxy is available or active. */
|
|
const condition_2 = $('#proxy-status-2').text().trim() === '' || $('#proxy-status-2').text().trim() === 'Active';
|
|
const optionToEnableOrDisable_2 = options[2];
|
|
|
|
if (optionToEnableOrDisable_2) {
|
|
if (condition_2) {
|
|
/* Enable the option. */
|
|
optionToEnableOrDisable_2.removeAttribute('disabled');
|
|
} else {
|
|
/* Disable the option. */
|
|
optionToEnableOrDisable_2.setAttribute('disabled', 'disabled');
|
|
}
|
|
}
|
|
|
|
/* Enable the dropdown element if the proxy is available or active. */
|
|
const condition_3 = $('#proxy-status-3').text().trim() === '' || $('#proxy-status-3').text().trim() === 'Active';
|
|
const optionToEnableOrDisable_3 = options[3];
|
|
|
|
if (optionToEnableOrDisable_3) {
|
|
if (condition_3) {
|
|
/* Enable the option. */
|
|
optionToEnableOrDisable_3.removeAttribute('disabled');
|
|
} else {
|
|
/* Disable the option. */
|
|
optionToEnableOrDisable_3.setAttribute('disabled', 'disabled');
|
|
}
|
|
}
|
|
}, 'json');
|
|
}
|
|
|
|
/* polyfill to fix reportValidity() for Firefox. */
|
|
if (!HTMLInputElement.prototype.reportValidity || (navigator.userAgent.indexOf("Firefox") !== -1)) {
|
|
HTMLInputElement.prototype.reportValidity = function () {
|
|
if (this.checkValidity()) {
|
|
return true;
|
|
} else {
|
|
var labelText = "_(Invalid data)_";
|
|
try {
|
|
labelText = $(this).closest('dl').children().first()[0].textContent;
|
|
} catch (err) { }
|
|
/* the browser generates the validationMessage, we cannot translate it. */
|
|
swal({title:labelText,text:this.validationMessage,html:true,type:'error',confirmButtonText:"_(Ok)_"});
|
|
return false;
|
|
}
|
|
};
|
|
}
|
|
|
|
/* Verify the format of the url. */
|
|
function verifyUrl(inputElement) {
|
|
const fieldValue = inputElement.value;
|
|
/* Return true if the field is blank. */
|
|
if (fieldValue.trim() === '') {
|
|
return true;
|
|
}
|
|
|
|
/* Verify the url is in the correct format. */
|
|
if (fieldValue.startsWith("http://") && fieldValue.match(/:\d+$/)) {
|
|
inputElement.setCustomValidity("");
|
|
return true;
|
|
} else {
|
|
inputElement.setCustomValidity("_(Please match the requested format)_:\n\n"+"'_(http://IP:port or http://host:port)_'");
|
|
inputElement.reportValidity();
|
|
return false;
|
|
}
|
|
}
|
|
|
|
$(function() {
|
|
/* Status indicator on upper right of page. */
|
|
showStatus('pid','<?=$opm_pid;?>');
|
|
|
|
/* Page refresh rate in milliseconds. */
|
|
const REFRESH_INTERVAL = 15000;
|
|
|
|
/* Set page refresh interval every 15 seconds. */
|
|
window.setInterval(refreshPage, REFRESH_INTERVAL);
|
|
|
|
/* Do an initial page refresh to fill in values. */
|
|
refreshPage();
|
|
});
|
|
|
|
/* URL for Outgoing Proxy PHP file. */
|
|
const OPMURL = '<?= OUTGOING_PROXY_INCLUDE; ?>';
|
|
</script>
|