proxitok/app/Helpers/UrlBuilder.php

31 lines
998 B
PHP
Raw Normal View History

2022-09-25 17:53:00 +00:00
<?php
namespace App\Helpers;
class UrlBuilder {
static public function stream(string $url): string {
return Misc::url('/stream?url=' . urlencode($url));
}
2022-10-24 18:53:59 +00:00
static public function download(string $url, string $username, string $id, bool $watermark): string {
$down_url = Misc::url('/download?url=' . urlencode($url) . '&id=' . $id . '&user=' . $username);
2022-09-25 17:53:00 +00:00
if ($watermark) $down_url .= '&watermark=1';
return $down_url;
}
static public function user(string $username): string {
return Misc::url('/@' . $username);
}
2022-11-04 19:08:19 +00:00
static public function tag(string $tag): string {
return Misc::url('/tag/' . $tag);
}
2022-09-25 17:53:00 +00:00
static public function video_internal(string $username, string $id): string {
return Misc::url('/@' . $username . "/video/" . $id);
}
static public function video_external(string $username, string $id): string {
return "https://www.tiktok.com/@" . $username . "/video/" . $id;
}
}