-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
135 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
<?php | ||
|
||
namespace M3uParser\Tag; | ||
|
||
/** | ||
* @see https://github.com/Gemorroj/M3uParser/issues/29 | ||
*/ | ||
class Playlist implements ExtTagInterface | ||
{ | ||
private string $value; | ||
|
||
/** | ||
* #PLAYLIST:My favorite music. | ||
*/ | ||
public function __construct(string $lineStr = null) | ||
{ | ||
if (null !== $lineStr) { | ||
$this->make($lineStr); | ||
} | ||
} | ||
|
||
public function __toString(): string | ||
{ | ||
return '#PLAYLIST:'.$this->getValue(); | ||
} | ||
|
||
public function setValue(string $value): self | ||
{ | ||
$this->value = $value; | ||
|
||
return $this; | ||
} | ||
|
||
public function getValue(): string | ||
{ | ||
return $this->value; | ||
} | ||
|
||
public static function isMatch(string $lineStr): bool | ||
{ | ||
return 0 === \stripos($lineStr, '#PLAYLIST:'); | ||
} | ||
|
||
protected function make(string $lineStr): void | ||
{ | ||
/* | ||
PLAYLIST format: | ||
#PLAYLIST:<value> | ||
example: | ||
#PLAYLIST:My favorite music | ||
*/ | ||
$dataLineStr = \substr($lineStr, \strlen('#PLAYLIST:')); | ||
$dataLineStr = \trim($dataLineStr); | ||
|
||
$this->setValue($dataLineStr); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<?php | ||
|
||
namespace M3uParser\Tests\Tag; | ||
|
||
use M3uParser\M3uData; | ||
use M3uParser\M3uEntry; | ||
use M3uParser\M3uParser; | ||
use M3uParser\Tag\ExtTagInterface; | ||
use M3uParser\Tag\Playlist; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* @internal | ||
* | ||
* @coversNothing | ||
*/ | ||
class PlaylistTest extends TestCase | ||
{ | ||
public function testParsePlaylist(): void | ||
{ | ||
$m3uParser = new M3uParser(); | ||
$m3uParser->addDefaultTags(); | ||
$data = $m3uParser->parseFile(__DIR__.'/../fixtures/playlist.m3u'); | ||
|
||
/** @var M3uEntry $entry */ | ||
$entry = $data[0]; | ||
|
||
self::assertEquals('rtp://@127.0.0.1:5003', $entry->getPath()); | ||
|
||
/** @var ExtTagInterface[] $extTags */ | ||
$extTags = $entry->getExtTags(); | ||
self::assertCount(1, $extTags); | ||
|
||
/** @var Playlist $playlist */ | ||
$playlist = $extTags[0]; | ||
self::assertInstanceOf(Playlist::class, $playlist); | ||
|
||
self::assertEquals('My favorite playlist', $playlist->getValue()); | ||
} | ||
|
||
public function testGeneratePlaylist(): void | ||
{ | ||
$expectedString = '#EXTM3U'."\n"; | ||
$expectedString .= '#PLAYLIST:My favorite playlist'."\n"; | ||
$expectedString .= 'test-path'; | ||
|
||
$entry = new M3uEntry(); | ||
$entry->setPath('test-path'); | ||
$entry->addExtTag( | ||
(new Playlist()) | ||
->setValue('My favorite playlist') | ||
); | ||
|
||
$data = new M3uData(); | ||
$data->append($entry); | ||
|
||
self::assertEquals($expectedString, (string) $data); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#EXTM3U | ||
|
||
#PLAYLIST:My favorite playlist | ||
rtp://@127.0.0.1:5003 |