aboutsummaryrefslogtreecommitdiff
path: root/assets/php/getData.php
diff options
context:
space:
mode:
authorMarvin Borner2021-05-16 10:35:56 +0200
committerMarvin Borner2021-05-16 10:35:56 +0200
commitdfa6d36a6edd5ad5190acf3401bad43480f8bcc0 (patch)
tree790bdbe44009731b3883e8f8dec660374d13a696 /assets/php/getData.php
parent6362a31bb256db876aa950581e3df0ec0d7ba04c (diff)
Fixed several things
Diffstat (limited to 'assets/php/getData.php')
-rwxr-xr-xassets/php/getData.php67
1 files changed, 34 insertions, 33 deletions
diff --git a/assets/php/getData.php b/assets/php/getData.php
index f20b110..c392fc5 100755
--- a/assets/php/getData.php
+++ b/assets/php/getData.php
@@ -1,50 +1,51 @@
<?php
+
/**
* Server-side script of the Netflix Stats Generator to get the personal Netflix JSON
* @author Marvin Borner
* @copyright Marvin Borner 2018
*/
-$debug = false;
+$debug = true;
$cookie = $_POST['cookie'];
if ($debug) {
- print_r(file_get_contents("debug.json"));
-} else if (isset($cookie)) {
- $isLastPage = false;
- $currentPage = 0;
- $result = '[';
-
- while ($isLastPage === false) {
- // netflix.appContext.state.model.models.serverDefs.data.BUILD_IDENTIFIER
- $ch = curl_init('https://www.netflix.com/api/shakti/vf10970d2/viewingactivity?pg=' . $currentPage . '&pgSize=100');
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- curl_setopt($ch, CURLOPT_COOKIE, $cookie);
- $answer = curl_exec($ch);
-
- if ($isLastPage = (count(json_decode($answer, true)['viewedItems']) > 0)) {
- $isLastPage = false;
- $result .= json_encode(json_decode($answer, true)['viewedItems']) . ',';
- } else {
- $isLastPage = true;
- $result = substr($result, 0, -1);
- }
-
- curl_close($ch);
- $currentPage++;
- }
+ print_r(file_get_contents("../../debug.json"));
+ die();
+}
- if ($result !== '') {
- print_r($result . ']');
- } else {
- http_response_code(404);
- die();
- }
-} else {
+if (!isset($cookie)) {
http_response_code(404);
die();
}
+$isLastPage = false;
+$currentPage = 0;
+$result = '[';
+
+while ($isLastPage === false) {
+ // Anywhere on netflix.com in console: netflix.appContext.state.model.models.serverDefs.data.BUILD_IDENTIFIER
+ $ch = curl_init('https://www.netflix.com/shakti/vbe1263cd/viewingactivity?pg=' . $currentPage . '&pgSize=100');
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
+ curl_setopt($ch, CURLOPT_HEADER, 0);
+ curl_setopt($ch, CURLOPT_COOKIE, $cookie);
+ $answer = curl_exec($ch);
+ curl_close($ch);
+
+ if ($isLastPage = (count(json_decode($answer, true)['viewedItems']) > 0)) {
+ $isLastPage = false;
+ $result .= json_encode(json_decode($answer, true)['viewedItems']) . ',';
+ } else {
+ $isLastPage = true;
+ $result = substr($result, 0, -1);
+ }
+ $currentPage++;
+}
+if ($result !== '') {
+ print_r($result . ']');
+} else {
+ http_response_code(404);
+ die();
+}