1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/jappix_ynh.git synced 2024-09-03 19:26:19 +02:00
jappix_ynh/source/server/form-hosts.php
2014-11-25 23:42:38 +01:00

73 lines
3 KiB
PHP

<?php
/*
Jappix - An open social platform
This is the hosts configuration form (install & manager)
-------------------------------------------------
License: AGPL
Author: Valérian Saliou
*/
// Someone is trying to hack us?
if(!defined('JAPPIX_BASE')) {
exit;
}
// Checks the checkboxes which are set "on"
$checked = ' checked=""';
// BOSH proxy
if($bosh_proxy == 'on') {
$check_bosh_proxy = $checked;
} else {
$check_bosh_proxy = '';
}
?>
<a class="info smallspace neutral" href="https://github.com/jappix/jappix/wiki/JappixApp" target="_blank"><?php _e("Need help? You'd better read our documentation page about how to fill this form!"); ?></a>
<fieldset>
<legend><?php _e("General"); ?></legend>
<label for="host_main"><?php _e("Main host"); ?></label><input id="host_main" type="text" name="host_main" value="<?php echo $host_main; ?>" pattern="[^@/]+" />
<label for="host_muc"><?php _e("Groupchat host"); ?></label><input id="host_muc" type="text" name="host_muc" value="<?php echo $host_muc; ?>" pattern="[^@/]+" />
<label for="host_pubsub"><?php _e("Pubsub host"); ?></label><input id="host_pubsub" type="text" name="host_pubsub" value="<?php echo $host_pubsub; ?>" pattern="[^@/]+" />
</fieldset>
<fieldset>
<legend><?php _e("Advanced"); ?></legend>
<label for="host_anonymous"><?php _e("Anonymous host"); ?></label><input id="host_anonymous" type="text" name="host_anonymous" value="<?php echo $host_anonymous; ?>" pattern="[^@/]+" />
<label for="host_vjud"><?php _e("Directory host"); ?></label><input id="host_vjud" type="text" name="host_vjud" value="<?php echo $host_vjud; ?>" pattern="[^@/]+" />
<?php if($host_websocket) { ?>
<label for="host_websocket"><?php _e("WebSocket host"); ?></label><input id="host_websocket" type="text" name="host_websocket" value="<?php echo $host_websocket; ?>" />
<?php } else { ?>
<input type="hidden" name="host_websocket" value="<?php echo $host_websocket; ?>" />
<?php } ?>
<label for="host_bosh"><?php _e("BOSH host"); ?></label><input id="host_bosh" type="text" name="host_bosh" value="<?php echo $host_bosh; ?>" />
<label for="bosh_proxy"><?php _e("Use the built-in BOSH proxy"); ?></label><input id="bosh_proxy" type="checkbox" name="bosh_proxy"<?php echo $check_bosh_proxy; ?> />
<input type="hidden" name="host_bosh_main" value="<?php echo $host_bosh_main; ?>" />
<input type="hidden" name="host_bosh_mini" value="<?php echo $host_bosh_mini; ?>" />
<input type="hidden" name="host_static" value="<?php echo $host_static; ?>" />
<input type="hidden" name="host_upload" value="<?php echo $host_upload; ?>" />
<input type="hidden" name="host_stun" value="<?php echo $host_stun; ?>" />
<input type="hidden" name="host_turn" value="<?php echo $host_turn; ?>" />
<input type="hidden" name="host_turn_username" value="<?php echo $host_turn_username; ?>" />
<input type="hidden" name="host_turn_password" value="<?php echo $host_turn_password; ?>" />
</fieldset>