-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathimport_github.php
227 lines (188 loc) · 6.47 KB
/
import_github.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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
<?php
error_reporting(0); // Повідомлення про помилку не треба :)
// Код безпеки. Можна любі букви-цифри, бажано більше восьми і менше 128
// Залишити false якщо не потрібен
// Код передається в URL після #:
// https://example.com/path/to/import_github.php#SOME-RANDOM-STRING-HERE-1234567890
define("SECURITY", "SOME-RANDOM-STRING-HERE-1234567890");
// Токен отримати можна тут: https://github.com/settings/tokens
define("API_TOKEN", "ghp_aBcDeFgHiJkLmNoPqRsTuVwXyZ0123456789");
// Репозиторій в форматі author/repoName
define("REPO", "author/repoName");
// Гілка
define("BRANCH", "master");
// Папка, куда будем розпаковувати. Зазвичай - папка де ми зараз
define("DESTINATION", dirname(__FILE__));
// LOCK-файл. Не трогати
define("LOCKFILE", dirname(__FILE__) . ".lock");
/* ВСЬО ЩО ДАЛЬШЕ - НЕ ТРОГАТИ */
if ($_POST["act"] == "start") {
// Перевірка ключа безпеки
$securityKeySeed = $_POST["seed"] ?? "";
$securityKeyKey = "_" . sha1($securityKeySeed . SECURITY);
$securityPass = $_POST[$securityKeyKey] ?? "";
if (SECURITY !== false && (empty($securityPass) || $securityPass !== SECURITY)) {
die("Invalid security key");
}
// Щоб випадково не затерти зміни, зроблені на локалці
if ($_SERVER["REMOTE_ADDR"] == "127.0.0.1") {
die("Denied for localhost");
}
$lockfile = fopen(LOCKFILE, "w+");
if (!flock($lockfile, LOCK_EX | LOCK_NB)) {
die("Unable to obtain lock, the previous process is still going on");
}
$mainDestination = rtrim(DESTINATION, "/\\");
$backupDestination = $mainDestination . ".bak/bak-" . date("Y-m-d_H-i-s");
$unzipDestination = $mainDestination . ".unzip-" . time();
$tempDestination = $mainDestination . ".tmp-" . time();
$targetSubfolder = explode("/", REPO)[1] . "-" . strtolower(BRANCH); //Назва підпапки: repoName-branch
$downloadZipFilename = $mainDestination . ".zip-" . time() . ".zip";
// Скачуєм файл
$url = "https://github.com/" . REPO . "/archive/" . BRANCH . ".zip";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, true);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_BASIC);
curl_setopt($ch, CURLOPT_USERPWD, API_TOKEN);
$result = curl_exec($ch);
file_put_contents($downloadZipFilename, $result);
curl_close($ch);
// Відкриваєм архів
$zip = new ZipArchive;
$isOpen = $zip->open($downloadZipFilename);
if ($isOpen === true) {
$zip->extractTo($unzipDestination);
$zip->close();
$backupDestinationParent = dirname($backupDestination);
if (!file_exists($backupDestinationParent)) {
mkdir($backupDestinationParent);
}
// Робим рокіровку
rename($unzipDestination . "/" . $targetSubfolder, $tempDestination);
rename($mainDestination, $backupDestination);
rename($tempDestination, $mainDestination);
// Видаляєм тимчасову папку
rmdir($unzipDestination);
echo "Success";
} else {
echo "Unable to unzip";
}
// Видаляєм архів
unlink($downloadZipFilename);
flock($lockfile, LOCK_UN);
fclose($lockfile);
unlink(LOCKFILE);
}
if ($_SERVER["REQUEST_METHOD"] !== "GET") {
die();
}
$securityKeySeed = rand();
$securityKeyKey = "_" . sha1($securityKeySeed . SECURITY);
?>
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="theme-color" content="#ffffff">
<meta name="msapplication-navbutton-color" content="#ffffff">
<meta name="apple-mobile-web-app-status-bar-style" content="#ffffff">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=5">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="HandheldFriendly" content="True">
<meta charset="UTF-8">
<title>Github Updater</title>
<style>
* {
box-sizing: border-box;
}
html {
font-size: 20px;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
padding: 16px;
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
p {
margin: 0;
}
p:not(:last-child) {
margin-bottom: 1em;
}
.popup {
width: 500px;
padding: 2rem 3rem;
text-align: center;
border-radius: 1rem;
box-shadow: 0 0 2rem rgba(0, 0, 0, 0.3);
color: #242424;
}
.js-info {
color: #1799fb;
font-size: 1.5rem;
}
.loader {
display: block;
text-align: center;
height: 2rem;
}
.loader:after {
content: '';
display: inline-block;
width: 2rem;
height: 2rem;
border: 0.2rem solid transparent;
border-bottom-color: #1799fb;
border-left-color: #1799fb;
border-radius: 2rem;
animation: spin 0.5s infinite linear;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
</style>
</head>
<body>
<div class="popup">
<p class="title">Repository import in progress</p>
<p class="js-info"></p>
</div>
<script>
(async () => {
const info = document.querySelector(".js-info");
info.classList.add("loader");
const formData = new FormData();
formData.append("act", "start");
formData.append("seed", "<?php echo $securityKeySeed; ?>");
formData.append("<?php echo $securityKeyKey; ?>", location.hash.substr(1));
history.replaceState({}, null, "#");
const resultText = await fetch("?", {
method: "POST",
body: formData,
}).then(response => response.text());
info.innerText = resultText;
info.classList.remove("loader");
if (resultText.toLowerCase() === "success") {
setTimeout(() => location.assign("/"), 3000);
}
})();
</script>
</body>
<!--
Code written by David Manzhula @da411d
https://da411d.me/
-->
</html>