forked from szabodanika/wake-pc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·147 lines (136 loc) · 4.77 KB
/
index.php
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<?php
// ini_set('display_errors', 1);
// read config.ini
if (($config = parse_ini_file("config.ini", true)) == false) {
// uh-oh, failed ot read ini file
$status = "Missing or corrupt configuration file!";
} else {
// config.ini read successfully, let's break it up to sections
$globalConfig = $config['global'];
unset($config['global']);
$pcConfigs = $config;
// get config of selected PC
$pcSelected = isset($_GET['pc']) ? $_GET['pc'] : array_key_first($config);
$pcConfig = $pcConfigs[$pcSelected];
// ping PC
$online = fsockopen($pcConfig['host'], $pcConfig['pingPort'],$errno, $errstr, $globalConfig["pingTimeout"]);
// check if we want to wake or just fetching page
if (isset($_POST['wake'])) {
// check password if needed
if ((isset($_POST['pwd']) && $pcConfig['password'] == $_POST['pwd']) ||
$pcConfig['password'] == ""
) {
// password ok/not needed, lets send WOL
require __DIR__.'/Phpwol/Init.php';
$f = new \Phpwol\Factory();
$magicPacket = $f->magicPacket();
$result = $magicPacket->send($pcConfig['mac'], $pcConfig['broadcast']);
// check the status code of the above command, if 0 say OK otherwise print output
$status = $result ? 'Magic packet sent' : 'Failed to send';
} else $status = 'Incorrect password';
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<!-- Bootstrap 5.0.2 CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Bootstrap 5.0.2 JS -->
<script src="js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
<title>⏰ Wake PC</title>
<style>
/* Dark mode styles */
@media (prefers-color-scheme: dark) {
body {
background-color: #121212;
color: #ffffff;
}
.card {
background-color: #1e1e1e;
border-color: #333333;
}
.card-title {
color: #ffffff;
}
.form-select {
background-color: #333333;
color: #ffffff;
border-color: #444444;
}
.form-control {
background-color: #333333;
color: #ffffff;
border-color: #444444;
}
.btn-primary {
background-color: #0b5ed7;
border-color: #0b5ed7;
}
.btn-primary:hover {
background-color: #0a58ca;
border-color: #0a53be;
}
.text-center {
color: #ffffff;
}
}
</style>
</head>
<body>
<div class="card" style="max-width:240px; margin:auto; margin-top: 2em">
<div class="card-body">
<h4 class="card-title mb-3">Wake PC</h4>
<form action="" method="post">
<select id="pc-select" class="form-select mb-3" name="pc" onchange="pcSelected()">
<?php
foreach ($pcConfigs as $key => $value) {
echo '<option value="' . $key . '" ' . ($key === $pcSelected ? "selected" : "") . '>' . $value["pcName"] . '</option>';
}
?>
</select>
<input style="display:none" type="text" id="username" name="username" value="<?= $pcConfigs[$pcSelected]["pcName"] ?>">
<?php
if ($pcConfig['password'] != "") {
$pwd = isset($_GET['pwd']) ? $_GET['pwd'] : "";
echo '
<div class="form-group mb-3" >
<label for="pwd">Password</label>
<input type="password" class="form-control" id="pwd" name="pwd" placeholder="Password" value="'.$pwd.'">
</div>
';
}
?>
<?php
if ($online) {
echo '<p class="text-center" style="color:green; cursor: pointer;" onclick="reload()">⬤ Online</p>';
} else {
echo '<p class="text-center" style="color:red; cursor: pointer;" onclick="reload()">❌ Offline</p>';
}
?>
<div class="d-grid mb-3">
<button class="btn btn-primary btn-block" type="submit" id="wake-btn" name="wake" value="wake"><?= $globalConfig['wakeButtonText'] ?></button>
</div>
</form>
<div class="text-center"><?= $status ?></div>
</div>
</div>
</body>
</html>
<script>
function pcSelected() {
selected = document.getElementById("pc-select").value;
var username = document.getElementById("username");
var pcName = document.querySelector(`#pc-select option[value='${selected}']`).text;
username.value = pcName;
var url = new URL(window.location);
url.searchParams.set('pc', selected);
window.open(url, "_self");
}
function reload() {
window.location.reload();
}
</script>