forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_webapp.php
More file actions
131 lines (127 loc) · 4.43 KB
/
setup_webapp.php
File metadata and controls
131 lines (127 loc) · 4.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!-- Begin toolbar -->
<div class="toolbar">
<div class="toolbar-inner">
<div class="toolbar-buttons">
<a class="button button-secondary button-back js-button-back" href="/add/webapp/?domain=<?= htmlentities($v_domain) ?>">
<i class="fas fa-arrow-left icon-blue"></i><?= _("Back") ?>
</a>
</div>
<div class="toolbar-buttons">
<button type="submit" class="button" form="vstobjects">
<i class="fas fa-floppy-disk icon-purple"></i><?= _("Save") ?>
</button>
</div>
</div>
</div>
<!-- End toolbar -->
<!-- Begin form -->
<div class="container animate__animated animate__fadeIn">
<?php if (!empty($WebappInstaller->getOptions())) { ?>
<form id="vstobjects" method="POST" name="v_setup_webapp">
<input type="hidden" name="token" value="<?= $_SESSION["token"] ?>">
<input type="hidden" name="ok" value="true">
<div class="form-container">
<h1 class="form-title"><?= sprintf(_("Install %s"), $WebappInstaller->info()["name"]) ?></h1>
<?php show_alert_message($_SESSION); ?>
<?php if (!$WebappInstaller->isDomainRootClean()) { ?>
<div class="alert alert-info" role="alert">
<i class="fas fa-info"></i>
<div>
<p class="u-mb10"><?= _("Data loss warning!") ?></p>
<p class="u-mb10"><?= _("Your web folder already has files uploaded to it. The installer will overwrite your files and / or the installation might fail.") ?></p>
<p><?php echo sprintf(_("Please make sure ~/web/%s/public_html is empty!"), $v_domain); ?></p>
</div>
</div>
<?php } ?>
<div class="u-mt20">
<?php
foreach ($WebappInstaller->getOptions() as $form_name => $form_control) {
$field_name = $WebappInstaller->formNs() . "_" . $form_name;
$field_type = $form_control;
$field_value = "";
$field_label =
isset($form_control["label"])
? htmlentities($form_control["label"])
: ucwords(str_replace([".","_"], " ", $form_name));
$field_placeholder = "";
if (is_array($form_control)) {
$field_type = !empty($form_control["type"]) ? $form_control["type"] : "text";
$field_value = !empty($form_control["value"]) ? $form_control["value"] : "";
$field_placeholder = !empty($form_control["placeholder"]) ? $form_control["placeholder"] : "";
}
$field_value = htmlentities($field_value);
$field_label = htmlentities($field_label);
$field_name = htmlentities($field_name);
$field_placeholder = htmlentities($field_placeholder);
?>
<div
x-data="{
value: '<?= !empty($field_value) ? $field_value : "" ?>'
}"
class="u-mb10"
>
<?php if ($field_type != "boolean"): ?>
<label for="<?= $field_name ?>" class="form-label">
<?= $field_label ?>
<?php if ($field_type == "password") { ?>
/
<button
x-on:click="value = Hestia.helpers.randomPassword()"
class="form-link"
type="button"
>
<?= _("generate") ?>
</button>
<?php } ?>
</label>
<?php endif; ?>
<?php if ($field_type == 'select' && count($form_control['options'])) { ?>
<select class="form-select" name="<?= $field_name ?>" id="<?= $field_name ?>">
<?php
foreach ($form_control['options'] as $key => $option) {
$key = !is_numeric($key) ? $key : $option;
$selected = !empty($form_control['value'] && $key == $form_control['value']) ? 'selected' : '';
?>
<option
value="<?= $key ?>"
<?= $selected ?>
>
<?= htmlentities($option) ?>
</option>
<?php } ?>
</select>
<?php
} elseif ($field_type == "boolean") {
$checked = !empty($field_value) ? "checked" : "";
?>
<div class="form-check">
<input
class="form-check-input"
type="checkbox"
name="<?= $field_name ?>"
id="<?= $field_name ?>"
value="true"
<?= $checked ?>
>
<label for="<?= $field_name ?>">
<?= $field_label ?>
</label>
</div>
<?php } else { ?>
<input
x-model="value"
type="text"
class="form-control"
name="<?= $field_name ?>"
id="<?= $field_name ?>"
placeholder="<?= $field_placeholder ?>"
>
<?php } ?>
</div>
<?php } ?>
</div>
</div>
</form>
<?php } ?>
</div>
<!-- End form -->