mirror of
https://github.com/shlinkio/shlink.git
synced 2024-11-28 09:03:07 +03:00
38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace ShlinkioApiTest\Shlink\Rest\Utils;
|
|
|
|
use Laminas\Diactoros\Uri;
|
|
|
|
use function GuzzleHttp\Psr7\build_query;
|
|
use function sprintf;
|
|
|
|
trait NotFoundUrlHelpersTrait
|
|
{
|
|
public function provideInvalidUrls(): iterable
|
|
{
|
|
yield 'invalid shortcode' => ['invalid', null, 'No URL found with short code "invalid"'];
|
|
yield 'invalid shortcode without domain' => [
|
|
'abc123',
|
|
'example.com',
|
|
'No URL found with short code "abc123" for domain "example.com"',
|
|
];
|
|
yield 'invalid shortcode + domain' => [
|
|
'custom-with-domain',
|
|
'example.com',
|
|
'No URL found with short code "custom-with-domain" for domain "example.com"',
|
|
];
|
|
}
|
|
|
|
public function buildShortUrlPath(string $shortCode, ?string $domain, string $suffix = ''): string
|
|
{
|
|
$url = new Uri(sprintf('/short-urls/%s%s', $shortCode, $suffix));
|
|
if ($domain !== null) {
|
|
$url = $url->withQuery(build_query(['domain' => $domain]));
|
|
}
|
|
|
|
return (string) $url;
|
|
}
|
|
}
|