-
Notifications
You must be signed in to change notification settings - Fork 33
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
5 changed files
with
133 additions
and
2 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
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/33 | ||
*/ | ||
class ExtTitle implements ExtTagInterface | ||
{ | ||
private string $value; | ||
|
||
/** | ||
* #EXTTITLE:super-song. | ||
*/ | ||
public function __construct(string $lineStr = null) | ||
{ | ||
if (null !== $lineStr) { | ||
$this->make($lineStr); | ||
} | ||
} | ||
|
||
public function __toString(): string | ||
{ | ||
return '#EXTTITLE:'.$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, '#EXTTITLE:'); | ||
} | ||
|
||
protected function make(string $lineStr): void | ||
{ | ||
/* | ||
EXTTITLE format: | ||
#EXTTITLE:<value> | ||
example: | ||
#EXTTITLE:name | ||
*/ | ||
$dataLineStr = \substr($lineStr, \strlen('#EXTTITLE:')); | ||
$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\ExtTitle; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* @internal | ||
* | ||
* @coversNothing | ||
*/ | ||
class ExtTitleTest extends TestCase | ||
{ | ||
public function testParseExtTitle(): void | ||
{ | ||
$m3uParser = new M3uParser(); | ||
$m3uParser->addDefaultTags(); | ||
$data = $m3uParser->parseFile(__DIR__.'/../fixtures/exttitle.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 ExtTitle $extTitle */ | ||
$extTitle = $extTags[0]; | ||
self::assertInstanceOf(ExtTitle::class, $extTitle); | ||
|
||
self::assertEquals('Rock music', $extTitle->getValue()); | ||
} | ||
|
||
public function testGenerateExtTitle(): void | ||
{ | ||
$expectedString = '#EXTM3U'."\n"; | ||
$expectedString .= '#EXTTITLE:Rock music'."\n"; | ||
$expectedString .= 'test-path'; | ||
|
||
$entry = new M3uEntry(); | ||
$entry->setPath('test-path'); | ||
$entry->addExtTag( | ||
(new ExtTitle()) | ||
->setValue('Rock music') | ||
); | ||
|
||
$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 | ||
|
||
#EXTTITLE:Rock music | ||
rtp://@127.0.0.1:5003 |