First commit

This commit is contained in:
Pablo Ferreiro 2022-01-01 20:14:57 +01:00
commit fa632b1f2d
No known key found for this signature in database
GPG key ID: 41FBCE65B779FA24
14 changed files with 2946 additions and 0 deletions

33
index.php Normal file
View file

@ -0,0 +1,33 @@
<?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("/users/{user}", function (string $username) {
$blade = new Blade('./views', './cache/views');
$api = new \Sovit\TikTok\Api();
$user = $api->getUserFeed($username);
if ($user) {
echo $blade->render('user', ['user' => $user]);
} else {
echo 'ERROR!';
}
});
$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->run();