respect-validation/docs/rules/VideoUrl.md

56 lines
1.6 KiB
Markdown
Raw Normal View History

2015-09-15 20:35:17 +02:00
# VideoUrl
- `VideoUrl()`
- `VideoUrl(string $service)`
2015-09-15 20:35:17 +02:00
Validates if the input is a video URL value.
2015-09-15 20:35:17 +02:00
```php
v::videoUrl()->validate('https://player.vimeo.com/video/71787467'); // true
v::videoUrl()->validate('https://vimeo.com/71787467'); // true
v::videoUrl()->validate('https://www.youtube.com/embed/netHLn9TScY'); // true
v::videoUrl()->validate('https://www.youtube.com/watch?v=netHLn9TScY'); // true
v::videoUrl()->validate('https://youtu.be/netHLn9TScY'); // true
v::videoUrl()->validate('https://www.twitch.tv/videos/320689092'); // true
v::videoUrl()->validate('https://clips.twitch.tv/BitterLazyMangetoutHumbleLife'); // true
2015-09-15 20:35:17 +02:00
v::videoUrl('youtube')->validate('https://www.youtube.com/watch?v=netHLn9TScY'); // true
v::videoUrl('vimeo')->validate('https://vimeo.com/71787467'); // true
v::videoUrl('twitch')->validate('https://www.twitch.tv/videos/320689092'); // true
v::videoUrl('twitch')->validate('https://clips.twitch.tv/BitterLazyMangetoutHumbleLife'); // true
2015-09-15 20:35:17 +02:00
v::videoUrl()->validate('https://youtube.com'); // false
v::videoUrl('youtube')->validate('https://vimeo.com/71787467'); // false
v::videoUrl('twitch')->validate('https://clips.twitch.tv/videos/90210'); // false
v::videoUrl('twitch')->validate('https://twitch.tv/TakeTeaAndNoTea'); // false
2015-09-15 20:35:17 +02:00
```
The services accepted are:
- YouTube
- Vimeo
- Twitch (videos and clips)
2015-09-15 20:35:17 +02:00
The `$service` value is not case-sensitive.
Message template for this validator includes `{{service}}`.
## Categorization
- Internet
## Changelog
Version | Description
--------|-------------
1.0.0 | Created
2015-09-15 20:35:17 +02:00
***
See also:
2018-12-11 13:31:50 +01:00
- [Email](Email.md)
- [Json](Json.md)
- [Phone](Phone.md)
- [Slug](Slug.md)
- [Url](Url.md)