-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfunctions.php
214 lines (143 loc) · 5.42 KB
/
functions.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
<?php
use voku\helper\HtmlDomParser;
require_once 'composer/vendor/autoload.php';
function getHtmlFromUrl($url) {
global $userAgent;
$options = [
"http" => [
"header" => "User-Agent: " . $userAgent . "\r\n"
]
];
$context = stream_context_create($options);
// Use file_get_contents with the context
$content = file_get_contents($url, false, $context);
if ($content === FALSE) {
// Handle the error
sendErrorResponse("Error fetching the content.");
} else {
// Output the content
return $content;
}
}
// ---------------------------------------------------------
function encryptStringAES($data, $key, $iv) {
$method = 'AES-256-CBC'; // AES-256-CBC is equivalent to AES with a 256-bit key in CBC mode with PKCS5 padding
// Ensure the key and IV are of the correct length
if (strlen($key) !== 32) {
$key = substr(hash('sha256', $key, true), 0, 32); // 32 bytes for AES-256
}
if (strlen($iv) !== 16) {
$iv = substr(hash('sha256', $iv, true), 0, 16); // 16 bytes for AES-CBC
}
// Encrypt the data
$encryptedBytes = openssl_encrypt($data, $method, $key, OPENSSL_RAW_DATA, $iv);
// Encode the result to Base64
return base64_encode($encryptedBytes);
}
// ------------------------------------------------------------
function decryptStringAES($encryptedData, $key, $iv) {
$method = 'AES-256-CBC'; // AES-256-CBC is equivalent to AES with a 256-bit key in CBC mode with PKCS5 padding
// Ensure the key and IV are of the correct length
if (strlen($key) !== 32) {
$key = substr(hash('sha256', $key, true), 0, 32); // 32 bytes for AES-256
}
if (strlen($iv) !== 16) {
$iv = substr(hash('sha256', $iv, true), 0, 16); // 16 bytes for AES-CBC
}
// Decode the encrypted data from Base64
$decodedBytes = base64_decode($encryptedData);
// Decrypt the data
$decryptedBytes = openssl_decrypt($decodedBytes, $method, $key, OPENSSL_RAW_DATA, $iv);
return $decryptedBytes;
}
// ------------------------------------------------------------
function generateEncryptAjaxParameters($html, $id) {
global $iv, $firstKey;
$encryptedToken = "";
// Encrypt the ID
$encryptedId = encryptStringAES($id, $firstKey, $iv);
// Load the HTML document
$document = HtmlDomParser::str_get_html($html);
// Select the script tag
$scriptTags = $document->findMulti("script");
foreach ($scriptTags as $scriptTag) {
if ($scriptTag->hasAttribute("data-name")) {
if (strtolower($scriptTag->getAttribute("data-name")) == "episode") {
// Get the encrypted token
$encryptedToken = $scriptTag->getAttribute('data-value');
}
}
}
if (empty($encryptedToken)) {
die("Error parsing script tag");
}
// Decrypt the token
$token = decryptStringAES($encryptedToken, $firstKey, $iv);
// Return the generated parameters
return 'id=' . $encryptedId . '&alias=' . $id . '&' . $token;
}
// ------------------------------------------------------------
function decryptEncryptAjaxResponse($obj) {
global $secondKey, $iv;
// Decrypt the string
$decrypted = decryptStringAES($obj, $secondKey, $iv);
// Parse the decrypted string as JSON and return it as an associative array
return $decrypted;
}
// -----------------------------------------------------------
function fetchUrl($requestURL) {
global $userAgent;
// Set headers
$opts = [
'http' => [
'method' => 'GET',
'header' => "User-Agent: $userAgent\r\n" .
"X-Requested-With: XMLHttpRequest\r\n"
]
];
// Create a stream context
$context = stream_context_create($opts);
// Fetch the URL using file_get_contents
$response = file_get_contents($requestURL, false, $context);
// Check for errors
if ($response === false) {
echo "Failed to fetch data.";
return null;
}
// Parse the JSON response
$responseData = json_decode($response, true);
return $responseData;
}
// --------------------------------------------------------
function sendErrorResponse($message){
header('Content-Type: application/json');
$response = array("error" => $message);
echo json_encode($response);
die();
}
// --------------------------------------------------------
function extractAnime($url) {
$html = getHtmlFromUrl($url);
$dom = HtmlDomParser::str_get_html($html);
$items = $dom->findOne('.items')->findMulti("li");
$anime = array();
foreach ($items as $item) {
$anime_id = "";
$anime_name = "";
$thumbnail = "";
$release_date = "";
$anime_id = trim($item->findOne("a")->getAttribute("href"));
$anime_id = str_replace("/category/", "", $anime_id);
$anime_name = $item->findOne("a")->getAttribute("title");
$thumbnail = $item->findOne("img")->getAttribute("src");
$release_date = trim(str_replace("released:", "", strtolower($item->findOne(".released")->text())));
$anime_info_array = array(
"animeId" => $anime_id,
"animeTitle" => $anime_name,
"animeImg" => $thumbnail,
"releasedDate" => $release_date,
);
$anime[] = $anime_info_array;
}
return $anime;
}