mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
19 lines
648 B
PHP
Executable File
19 lines
648 B
PHP
Executable File
<?php
|
|
require_once realpath(dirname(dirname(dirname(__DIR__))) . DIRECTORY_SEPARATOR . 'bootstrap.php');
|
|
|
|
use nntmux\ColorCLI;
|
|
use nntmux\RottenTomato;
|
|
use nntmux\db\DB;
|
|
|
|
$cli = new ColorCLI();
|
|
|
|
$rtkey = (new DB())->getSetting('rottentomatokey');
|
|
if (isset($rtkey)) {
|
|
$rt = new RottenTomato($rtkey);
|
|
print_r(json_decode($rt->searchMovie("inception")));
|
|
$url = (RottenTomato::API_URL . "movies.json?apikey=" . $rt->getApiKey() . "&q=inception&page_limit=50");
|
|
exit($cli->header("\nIf nothing was displayed above then there might be an error. If so, go to the following url: $url\n"));
|
|
} else {
|
|
exit($cli->error("\nNo rotten tomato key.\n"));
|
|
}
|