aboutsummaryrefslogtreecommitdiff
path: root/assets/php
diff options
context:
space:
mode:
Diffstat (limited to 'assets/php')
-rwxr-xr-xassets/php/getData.php46
-rw-r--r--assets/php/getInformation.php17
-rwxr-xr-xassets/php/getNetflixJson.php34
3 files changed, 46 insertions, 51 deletions
diff --git a/assets/php/getData.php b/assets/php/getData.php
new file mode 100755
index 0000000..22f0f26
--- /dev/null
+++ b/assets/php/getData.php
@@ -0,0 +1,46 @@
+<?php
+/**
+ * Server-side script of the Netflix Stats Generator to get the personal Netflix JSON
+ * @author Marvin Borner
+ * @copyright Marvin Borner 2018
+ */
+
+$cookie = $_POST['cookie'];
+
+if (isset($cookie)) {
+ $isLastPage = false;
+ $currentPage = 0;
+ $result = '[';
+
+ while ($isLastPage === false) {
+ $ch = curl_init('https://www.netflix.com/api/shakti/ve8ded8cd/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++;
+ }
+
+ if ($result !== '') {
+ print_r($result . ']');
+ } else {
+ http_response_code(404);
+ die();
+ }
+} else {
+ http_response_code(404);
+ die();
+}
+
+
+
diff --git a/assets/php/getInformation.php b/assets/php/getInformation.php
deleted file mode 100644
index c5f3ea2..0000000
--- a/assets/php/getInformation.php
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-/**
- * Serverside Script of the Netflix Stats Generator to get information of a movie/series
- * @author Marvin Borner
- * @copyright Marvin Borner 2018
- */
-
-$RequestedTitle = $_POST["Title"];
-
-$ApiKey = file_get_contents("../../../../ApiKeys/ThemoviedbApiKey.txt");
-$ch = curl_init("https://api.themoviedb.org/3/search/multi?api_key=" . $ApiKey . "&language=en-US&query=" . urlencode($RequestedTitle) . "&page=1&include_adult=true");
-curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
-curl_setopt($ch, CURLOPT_HEADER, 0);
-$Result = json_decode(curl_exec($ch), true);
-curl_close($ch);
-
-print_r(json_encode($Result["results"][0]));
diff --git a/assets/php/getNetflixJson.php b/assets/php/getNetflixJson.php
deleted file mode 100755
index 3a2fbe4..0000000
--- a/assets/php/getNetflixJson.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-/**
- * Serverside Script of the Netflix Stats Generator to get the personal Netflix JSON
- * @author Marvin Borner
- * @copyright Marvin Borner 2018
- */
-
-$NetflixCookie = $_POST["Cookie"];
-
-$LastPage = false;
-$CurPage = 0;
-$NetflixJson = "[";
-
-while ($LastPage === false) {
- $ch = curl_init("https://www.netflix.com/api/shakti/7742b8c7/viewingactivity?pg=" . (string) $CurPage . "&pgSize=100");
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_HEADER, 0);
- curl_setopt($ch, CURLOPT_COOKIE, $NetflixCookie);
- $Result = curl_exec($ch);
- //print_r((json_decode($Result, TRUE)["viewedItems"]));
- //echo count(json_decode(curl_exec($ch),true)["viewedItems"]);
- if ($LastPage = count(json_decode($Result, true)["viewedItems"]) > 0) {
- $LastPage = false;
- $NetflixJson .= json_encode(json_decode($Result, true)["viewedItems"]) . ",";
- } else {
- $LastPage = true;
- $NetflixJson = substr($NetflixJson, 0, -1);
- }
-
- curl_close($ch);
- $CurPage++;
-}
-
-print_r($NetflixJson . "]");