38 lines
804 B
PHP
38 lines
804 B
PHP
<?php
|
|
require __DIR__ . "/vendor/autoload.php";
|
|
|
|
use Leaf\Blade;
|
|
|
|
$app = new Leaf\App;
|
|
|
|
$app->get('/', function () use ($app) {
|
|
$app->response()->page('./views/home.html');
|
|
});
|
|
|
|
$app->get('/stream', function () {
|
|
if (!isset($_GET['url'])) {
|
|
die('You need to send a url!');
|
|
}
|
|
|
|
// Start streamer
|
|
$streamer = new \Sovit\TikTok\Stream();
|
|
$streamer->stream($_GET['url']);
|
|
});
|
|
|
|
$app->get("/@([^/]+)", function (string $username) {
|
|
$cursor = 0;
|
|
if (isset($_GET['cursor']) && is_numeric($_GET['cursor'])) {
|
|
$cursor = (int) $_GET['cursor'];
|
|
}
|
|
$blade = new Blade('./views', './cache/views');
|
|
$api = new \Sovit\TikTok\Api();
|
|
$user = $api->getUserFeed($username, $cursor);
|
|
if ($user) {
|
|
echo $blade->render('user', ['user' => $user]);
|
|
} else {
|
|
echo 'ERROR!';
|
|
}
|
|
});
|
|
|
|
$app->run();
|