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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
|
<?php
namespace Controller;
use Database;
use DOMDocument;
function on_post() {
$WEBSITE_CATEGORY = 'page_url';
$DOWNLOADS_FOLDER = getenv('ARCHIVES_DIR');
$website_url = $_POST[$WEBSITE_CATEGORY];
$currentPage = new DownloadPage($website_url, $DOWNLOADS_FOLDER);
}
class DownloadPage {
private $folder_location;
private $folder_name;
private $page_url;
private $page_contents;
private $favicon_path;
private $page_title;
function __construct($page_url, $folder_location) {
$this->folder_location = $folder_location;
$this->page_url = $page_url;
list($website_exists, $this->page_url) = $this->doesWebsiteExist($this->page_url);
// Search for all the regexes that fit the *url* pattern where the pattern is the requested url but without the protocol
$page_url_pattern = $this->getCorrectLinkPattern($page_url);
$simular_pages = Database\Webpage::getArchivePathsByPattern('%' . $page_url_pattern . '%');
if ($website_exists) {
$this->folder_name = Database\Webpage::getPagesCount() + 1;
$this->page_contents = $this->downloadFile($this->page_url);
$this->createArchive($simular_pages);
if (!$this->favicon_path) {
// No favicons were found in the normal links
// Fallback and try to download them from the server directly
$this->tryDownloadFavicon();
}
Database\Webpage::create($folder_location, $page_url, 1, $this->favicon_path, $this->page_title);
} else {
echo "Website does not exist";
}
}
private function debugPrintToConsole($data) : void{
$output = $data;
if (is_array($output))
$output = implode(',', $output);
echo "<script>console.log('Debug Objects: " . $output . "' );</script>";
}
function tryDownloadFavicon() : void {
// Tries to download an icon from the server directly
// The tried names are favicon.png/ico/jpeg/jpg/svg
foreach(["png", "ico", "jpeg", "jpg", "svg"] as $ending) {
$currentName = "/favicon." . $ending;
$currentLink = $this->page_url . $currentName;
if ($this->downloadFavicon($currentLink, $currentName)) {
break;
}
}
}
function downloadFavicon(string $currentLink, string $currentName) : bool {
if ($this->isResourceAccessible($currentLink)) {
$sourceContent = $this->downloadFile($currentLink);
if ($sourceContent) {
$resourceName = basename($currentName);
$folder_path = $this->folder_location . '/' . $this->folder_name;
$file = fopen($folder_path . '/' . $resourceName, "w");
if ($file){
fwrite($file, $sourceContent);
fclose($file);
$this->favicon_path = $this->folder_name . $currentName;
return true;
}
}
}
return false;
}
function getCorrectLinkPattern($page_url) : string {
// NOTE: Offset by 2 because of the '//' of the protocol
$page_url = substr($page_url, strpos($page_url, "//"), strlen($page_url));
return $page_url;
}
function setFolderLocation($folder_location) : void {
$this->folder_location = $folder_location;
}
function setFolderName($folder_name) : void {
$this->folder_name = $folder_name;
}
function setPageUrl($page_url) : void {
$this->page_url = $page_url;
}
function applyCorrectProtocol($url, $protocol) : string {
if (str_contains($url, $protocol)) {
return $url;
}
return $protocol . $url;
}
function downloadFile($url) : string {
$curl_func = curl_init($url);
curl_setopt($curl_func, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl_func, CURLOPT_FOLLOWLOCATION, true);
curl_setopt($curl_func, CURLOPT_USERAGENT, "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; pageburst) Chrome/131.0.6778.204 Safari/537.36");
$page_contents = curl_exec($curl_func);
curl_close($curl_func);
return $page_contents;
}
function doesWebsiteExist($url) : array {
// Check if the site exists with https
$https_url = $this->applyCorrectProtocol($url, "https://");
if ($https_url != $url) {
$url_headers = @get_headers($https_url);
if ($url_headers && $url_headers[0] != 'HTTP/1.1 404 Not Found') {
return array(true, $https_url);
}
}
// Check if the site exists with http
$http_url = $this->applyCorrectProtocol($url, "http://");
if ($http_url != $url) {
$url_headers = @get_headers($http_url);
if ($url_headers && $url_headers[0] != 'HTTP/1.1 404 Not Found') {
return array(true, $http_url);
}
}
// Check if the site exists as is
// Will take effect when the user has entered the https/http protocol with the site
$url_headers = @get_headers($url);
if ($url_headers && $url_headers[0] != 'HTTP/1.1 404 Not Found') {
return array(true, $url);
}
return array(false, $url);
}
function resolveUrl($relativeUrl, $baseUrl) : string {
// If the url is already absolute return it
if (parse_url($relativeUrl, PHP_URL_SCHEME)) {
return $relativeUrl;
}
// Otherwise resolve it agains the base url
// Get only the domain with the protocol
$pattern = '/((^.*\/\/|.{0,0})[a-z0-9A-Z\.]+)(\/\w+|$)/';
$actualUrl = $baseUrl;
if (preg_match($pattern, $baseUrl, $matches)) {
$actualUrl = $matches[1];
}
return rtrim($actualUrl, '/') . '/' . ltrim($relativeUrl, '/');
}
function handleCssUrls(&$content) : void {
if (preg_match_all('/url\((.*)\)/', $content, $matches, PREG_PATTERN_ORDER) > 0) {
$urls = $matches[1];
foreach ($urls as $url) {
$original_url = $url;
$url = ltrim($url, "'()");
$url = rtrim($url, "'()");
$url = substr($url, 0, strpos($url, "'"));
$url = $this->resolveUrl($url, $this->page_url);
if ($this->isResourceAccessible($url)) {
// Get the file name and local path
$file_name = basename($url);
$file_path = './' . $file_name;
$folder_path = $this->folder_location . '/' . $this->folder_name;
$urlContents = $this->downloadFile($url);
if ($urlContents) {
// Save the resource locally
$file = fopen($folder_path . '/' . $file_name, "w");
if ($file){
fwrite($file, $urlContents);
fclose($file);
}
// Replace the URL in the CSS content
$content = str_replace($original_url, "'" . $file_path . "'", $content);
}
}
}
}
}
function handleJsImports(&$content) : void {
if (preg_match_all("/import .*'(.*)'/", $content, $matches, PREG_PATTERN_ORDER) > 0) {
$urls = $matches[1];
foreach ($urls as $url) {
$original_url = $url;
$url = ltrim($url, "./");
$url = rtrim($url, "./");
$url = $this->resolveUrl($url, $this->page_url);
if ($this->isResourceAccessible($url)) {
// Get the file name and local path
$file_name = basename($url);
$file_path = './' . $file_name;
$folder_path = $this->folder_location . '/' . $this->folder_name;
$urlContents = $this->downloadFile($url);
if ($urlContents) {
// Save the resource locally
$file = fopen($folder_path . '/' . $file_name, "w");
if ($file){
fwrite($file, $urlContents);
fclose($file);
}
// Replace the URL in the CSS content
$content = str_replace($original_url, "'" . $file_path . "'", $content);
}
}
}
}
}
function downloadSource(&$dom, $folder_path, $tagName, $attribute, $simular_pages) : void {
$links = $dom->getElementsByTagName($tagName);
foreach($links as $link) {
$source = $link->getAttribute($attribute);
if ($source) {
$sourceUrl = $this->resolveUrl($source, $this->page_url);
if ($this->isResourceAccessible($sourceUrl)) {
$sourceContent = $this->downloadFile($sourceUrl);
if ($sourceContent) {
$found_resource = false;
if ($tagName == "link") {
// The resource is a css resource most likely
// Go trough the resource, download the urls and replace them with their local path
$this->handleCssUrls($sourceContent);
} elseif ($tagName == "script") {
// The resource is a script resource most likely
// Go trough the resource, download the imports and replace them with their local path
$this->handleJsImports($sourceContent);
}
if (count($simular_pages) != 0) {
// Page is not unique so check if any other already downloaded resource is
// the same as the resource that is needed thus not actually needing to download it
foreach($simular_pages as $page) {
$resourceName = basename($source);
if (!file_exists($this->folder_location . "/" . $page->WID . "/" . $resourceName)) {
continue;
}
$resourceContents = file_get_contents($this->folder_location . "/" . $page->WID . "/" . $resourceName);
if (strlen($resourceContents) == strlen($sourceContent) && md5($resourceContents) == md5($sourceContent)) {
// They are the same resource
// change the link to point to the source of the previous archive instead of downloading a news source
$link->setAttribute($attribute, "../" . $page->WID . "/" . $resourceName);
$found_resource = true;
if ($tagName == "link") {
$faviconTry = $link->getAttribute("rel");
if ($faviconTry && ($faviconTry == "icon" || $faviconTry == "icon shortcut")) {
$this->favicon_path = $page->WID . "/" . $resourceName;
}
}
break;
}
}
}
if (!$found_resource) {
// Page is unique so there will be no resource that can be cached
$resourceName = basename($source);
$link->setAttribute($attribute, './' . $resourceName);
$file = fopen($folder_path . '/' . $resourceName, "w");
if ($file){
fwrite($file, $sourceContent);
fclose($file);
}
if ($tagName == "link") {
$faviconTry = $link->getAttribute("rel");
if ($faviconTry && ($faviconTry == "icon" || $faviconTry == "icon shortcut")) {
$this->favicon_path = $this->folder_name . "/" . $resourceName;
}
}
}
}
}
}
}
}
// Changes the hyperlinks in the site to ones that are local for the site
// or to the landing page when a page is not archived if the hyperlink of the
// other page is not archived
function changeHyperlinkToLocal(&$dom, $tagName, $attribute) : void {
$tags = $dom->getElementsByTagName($tagName);
foreach($tags as $tag) {
$link = $tag->getAttribute($attribute);
// Make a request to the db and check if any URLs like the 'link'
// exist in it and are presently donwloaded
//$link_url = $this->resolveUrl($link);
$page_url_pattern = $this->getCorrectLinkPattern($link);
// TODO: The link should depend on whether there is a domain in the front or not
$correct_results = Database\Webpage::getArchivePathsByPattern('%' . $page_url_pattern . '%');
if (count($correct_results) != 0) {
// If there are any links that are the same as the urls make the $dom attribute point
// to the latest version of that page
$tag->setAttribute($attribute, "/archives/" . $correct_results[0]->WID . "/index.html");
} else {
// If there are no pages that are like that url point to the landing page of the site
// that says that this page was not yet archived
$tag->setAttribute($attribute, "/archive/?url=" . $this->baseToFullUrlForGet($this->page_url, $link));
}
}
}
function baseToFullUrlForGet($url, $base) : string {
$replaced = rtrim($url, '/') . '/' . ltrim($base, '/');
$replaced = str_replace('/', '%2F', $replaced);
$replaced = str_replace(':', '%3A', $replaced);
return $replaced;
}
function isResourceAccessible($url) : bool {
$curl_func = curl_init($url);
curl_setopt($curl_func, CURLOPT_NOBODY, true); // Gives only the headers
curl_setopt($curl_func, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl_func, CURLOPT_FOLLOWLOCATION, true);
curl_exec($curl_func);
$code = curl_getinfo($curl_func, CURLINFO_HTTP_CODE);
curl_close($curl_func);
return ($code >= 200 && $code < 400);
}
function updatePageTitle(&$dom) {
$titles = $dom->getElementsByTagName("title");
if ($titles->length > 0) {
$this->page_title = $titles->item(0)->textContent;
}
}
function createArchive($simular_pages) : void {
// Creates the folder with the correct resources and the main html page in a index.html tag
$dom = new DOMDocument();
$contentType = '<meta http-equiv="Content-Type" content="text/html; charset=utf-8">'; // Ensures the encoding is UTF-8
@$dom->loadHTML($contentType . $this->page_contents); // This suppresses warnings for invalid HTML
$folder_path = $this->folder_location . '/' . $this->folder_name;
if (!file_exists($folder_path)) {
mkdir($folder_path, 0777, true);
}
$this->downloadSource($dom, $folder_path, 'link', 'href', $simular_pages);
$this->downloadSource($dom, $folder_path, 'script', 'src', $simular_pages);
$this->downloadSource($dom, $folder_path, 'img', 'src', $simular_pages);
$this->updatePageTitle($dom);
$this->changeHyperlinkToLocal($dom, 'a', 'href');
$this->page_contents = $dom->saveHTML();
$indexFile = fopen($folder_path . '/index.html', "w");
fwrite($indexFile, $this->page_contents);
fclose($indexFile);
}
}
function applyCorrectProtocol($url, $protocol) : string {
if (str_contains($url, $protocol)) {
return $url;
}
return $protocol . $url;
}
function doesWebsiteExist($url) : bool {
// Check if the site exists with https
$https_url = applyCorrectProtocol($url, "https://");
if ($https_url != $url) {
$url_headers = @get_headers($https_url);
if ($url_headers && $url_headers[0] != 'HTTP/1.1 404 Not Found') {
return true;
}
}
// Check if the site exists with http
$http_url = applyCorrectProtocol($url, "http://");
if ($http_url != $url) {
$url_headers = @get_headers($http_url);
if ($url_headers && $url_headers[0] != 'HTTP/1.1 404 Not Found') {
return true;
}
}
// Check if the site exists as is
// Will take effect when the user has entered the https/http protocol with the site
$url_headers = @get_headers($url);
if ($url_headers && $url_headers[0] != 'HTTP/1.1 404 Not Found') {
return true;
}
return false;
}
|