store pics from api in db
This commit is contained in:
		@@ -1,11 +1,12 @@
 | 
			
		||||
<?php
 | 
			
		||||
 | 
			
		||||
require 'Database.php';
 | 
			
		||||
 | 
			
		||||
class Movie
 | 
			
		||||
{
 | 
			
		||||
 | 
			
		||||
    private $apikey = "9fd90530b11447f5646f8e6fb4733fb4";
 | 
			
		||||
    private $baseurl = "https://api.themoviedb.org/3/";
 | 
			
		||||
    private $posterbase = "https://image.tmdb.org/t/p/w500";
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    public function reindexMovies()
 | 
			
		||||
@@ -17,15 +18,26 @@ class Movie
 | 
			
		||||
 | 
			
		||||
        foreach ($dir as $i) {
 | 
			
		||||
            echo "$i\n";
 | 
			
		||||
            if($i != "." && $i != ".."){
 | 
			
		||||
                $reply = json_decode(file_get_contents($this->baseurl . "search/movie?api_key=" . $this->apikey . "&query=" . $i));
 | 
			
		||||
                if($reply->total_results == 0){
 | 
			
		||||
            if ($i != "." && $i != "..") {
 | 
			
		||||
                $reply = json_decode(file_get_contents($this->baseurl . "search/movie?api_key=" . $this->apikey . "&query=" . pathinfo($i)['filename']));
 | 
			
		||||
                if ($reply->total_results == 0) {
 | 
			
		||||
                    // no results found
 | 
			
		||||
                    // todo maybe parse first pictures somehow
 | 
			
		||||
                }else{
 | 
			
		||||
                } else {
 | 
			
		||||
                    echo json_encode($reply->results[0]);
 | 
			
		||||
 | 
			
		||||
                    $image_base64 = base64_encode(file_get_contents($this->posterbase . $reply->results[0]->poster_path));
 | 
			
		||||
                    $image = 'data:image/jpeg;base64,' . $image_base64;
 | 
			
		||||
                    // Insert record
 | 
			
		||||
                    $conn = Database::getInstance()->getConnection();
 | 
			
		||||
                    $query = "insert into Movie(name,url,poster) values('" . pathinfo($i)['filename'] . "','/data/$i','" . $image . "')";
 | 
			
		||||
                    if ($conn->query($query) === TRUE) {
 | 
			
		||||
                        echo('{"data":"successfully created entry"}');
 | 
			
		||||
                    } else {
 | 
			
		||||
                        echo('{"data":"' . $conn->error . '"}');
 | 
			
		||||
                    }
 | 
			
		||||
                }
 | 
			
		||||
                echo json_encode($reply);
 | 
			
		||||
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user