-
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
1 deletion.
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/28 | ||
*/ | ||
class ExtGrp implements ExtTagInterface | ||
{ | ||
private string $value; | ||
|
||
/** | ||
* #EXTGRP:music. | ||
*/ | ||
public function __construct(string $lineStr = null) | ||
{ | ||
if (null !== $lineStr) { | ||
$this->make($lineStr); | ||
} | ||
} | ||
|
||
public function __toString(): string | ||
{ | ||
return '#EXTGRP:'.$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, '#EXTGRP:'); | ||
} | ||
|
||
protected function make(string $lineStr): void | ||
{ | ||
/* | ||
EXTGRP format: | ||
#EXTGRP:<key> | ||
example: | ||
#EXTGRP:Rock | ||
*/ | ||
$dataLineStr = \substr($lineStr, \strlen('#EXTGRP:')); | ||
$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\ExtGrp; | ||
use M3uParser\Tag\ExtTagInterface; | ||
use PHPUnit\Framework\TestCase; | ||
|
||
/** | ||
* @internal | ||
* | ||
* @coversNothing | ||
*/ | ||
class ExtGrpTest extends TestCase | ||
{ | ||
public function testParseExtGrp(): void | ||
{ | ||
$m3uParser = new M3uParser(); | ||
$m3uParser->addDefaultTags(); | ||
$data = $m3uParser->parseFile(__DIR__.'/../fixtures/extgrp.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 ExtGrp $extGrp */ | ||
$extGrp = $extTags[0]; | ||
self::assertInstanceOf(ExtGrp::class, $extGrp); | ||
|
||
self::assertEquals('Rock', $extGrp->getValue()); | ||
} | ||
|
||
public function testGenerateExtGrp(): void | ||
{ | ||
$expectedString = '#EXTM3U'."\n"; | ||
$expectedString .= '#EXTGRP:Rock'."\n"; | ||
$expectedString .= 'test-path'; | ||
|
||
$entry = new M3uEntry(); | ||
$entry->setPath('test-path'); | ||
$entry->addExtTag( | ||
(new ExtGrp()) | ||
->setValue('Rock') | ||
); | ||
|
||
$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 | ||
|
||
#EXTGRP:Rock | ||
rtp://@127.0.0.1:5003 |