Skip to content

Commit 1254985

Browse files
authored
Merge pull request #39 from mpscholten/string-trim
added trim() to string parser
2 parents 3e9ea49 + c5b1e15 commit 1254985

File tree

4 files changed

+104
-2
lines changed

4 files changed

+104
-2
lines changed

src/StringParser.php

+15
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,19 @@ public function email()
5353
{
5454
return new EmailParser($this->config, $this->name, $this->value);
5555
}
56+
57+
public function trim()
58+
{
59+
return new TrimParser($this->config, $this->name, $this->value, TrimParser::TRIM);
60+
}
61+
62+
public function leftTrim()
63+
{
64+
return new TrimParser($this->config, $this->name, $this->value, TrimParser::LEFT_TRIM);
65+
}
66+
67+
public function rightTrim()
68+
{
69+
return new TrimParser($this->config, $this->name, $this->value, TrimParser::RIGHT_TRIM);
70+
}
5671
}

src/TrimParser.php

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
<?php
2+
3+
namespace MPScholten\RequestParser;
4+
5+
class TrimParser extends AbstractValueParser
6+
{
7+
const TRIM = 'trim';
8+
const LEFT_TRIM = 'left_trim';
9+
const RIGHT_TRIM = 'right_trim';
10+
11+
private $trimType;
12+
13+
public function __construct(Config $config, $name, $value, $trimType)
14+
{
15+
$this->trimType = $trimType;
16+
parent::__construct($config, $name, $value);
17+
}
18+
19+
protected function describe()
20+
{
21+
return "a text string";
22+
}
23+
24+
protected function parse($value)
25+
{
26+
if ($this->trimType === self::TRIM) {
27+
return trim((string) $value);
28+
} elseif ($this->trimType === self::LEFT_TRIM) {
29+
return ltrim((string) $value);
30+
} elseif ($this->trimType === self::RIGHT_TRIM) {
31+
return rtrim((string) $value);
32+
}
33+
return (string) $value;
34+
}
35+
36+
/**
37+
* @param string $defaultValue
38+
* @return string
39+
*/
40+
public function defaultsTo($defaultValue)
41+
{
42+
return parent::defaultsTo($defaultValue);
43+
}
44+
45+
/**
46+
* @throws \Exception
47+
* @return string
48+
*/
49+
public function required($invalidValueMessage = null, $notFoundMessage = null)
50+
{
51+
return parent::required($invalidValueMessage, $notFoundMessage);
52+
}
53+
54+
/**
55+
* @param string $defaultValue
56+
* @return string
57+
*/
58+
public function defaultsToIfEmpty($defaultValue)
59+
{
60+
if ($this->value === '') {
61+
return $defaultValue;
62+
}
63+
64+
return $this->defaultsTo($defaultValue);
65+
}
66+
}

tests/ParserSpecTest.php

+4-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
use MPScholten\RequestParser\AbstractValueParser;
44
use MPScholten\RequestParser\Config;
55
use MPScholten\RequestParser\DateTimeParser;
6-
use MPScholten\RequestParser\ExceptionFactory;
7-
use MPScholten\RequestParser\ExceptionMessageFactory;
86
use MPScholten\RequestParser\IntParser;
97
use MPScholten\RequestParser\FloatParser;
108
use MPScholten\RequestParser\InvalidValueException;
@@ -16,6 +14,7 @@
1614
use MPScholten\RequestParser\StringParser;
1715
use MPScholten\RequestParser\EmailParser;
1816
use MPScholten\RequestParser\UrlParser;
17+
use MPScholten\RequestParser\TrimParser;
1918

2019
class ParserSpecTest extends \PHPUnit_Framework_TestCase
2120
{
@@ -47,6 +46,9 @@ public function specWithValueAndDefaultValue()
4746
[new StringParser(new Config(), 'name', 'quintly'), '', 'quintly'],
4847
[new UrlParser(new Config(), 'referrer', 'https://www.quintly.com/'), 'https://www.quintly.com/blog/', 'https://www.quintly.com/'],
4948
[new EmailParser(new Config(), 'emailAddress', '[email protected]'), '', '[email protected]'],
49+
[new TrimParser(new Config(), 'emailAddress', ' [email protected] ', TrimParser::TRIM), '', '[email protected]'],
50+
[new TrimParser(new Config(), 'emailAddress', ' [email protected]', TrimParser::LEFT_TRIM), '', '[email protected]'],
51+
[new TrimParser(new Config(), 'emailAddress', '[email protected] ', TrimParser::RIGHT_TRIM), '', '[email protected]'],
5052
[new OneOfParser(new Config(), 'type', 'a', ['a', 'b']), 'b', 'a'],
5153
[new DateTimeParser(new Config(), 'createdAt', '2015-02-02'), new \DateTime('2015-01-01'), new \DateTime('2015-02-02')],
5254
[new JsonParser(new Config(), 'config', '{"value":false}'), ['value' => true], ['value' => false]]

tests/TypeSpecTest.php

+19
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
use MPScholten\RequestParser\ExceptionFactory;
1717
use MPScholten\RequestParser\IntParser;
1818
use MPScholten\RequestParser\FloatParser;
19+
use MPScholten\RequestParser\TrimParser;
1920
use MPScholten\RequestParser\UrlParser;
2021
use MPScholten\RequestParser\YesNoBooleanParser;
2122
use MPScholten\RequestParser\BooleanParser;
@@ -57,6 +58,24 @@ public function testEmail()
5758
$this->assertInstanceOf(EmailParser::class, $spec->string()->email());
5859
}
5960

61+
public function testTrim()
62+
{
63+
$spec = new TypeParser(new Config(), 'emailAddress', ' [email protected] ');
64+
$this->assertInstanceOf(TrimParser::class, $spec->string()->trim());
65+
}
66+
67+
public function testLeftTrim()
68+
{
69+
$spec = new TypeParser(new Config(), 'emailAddress', ' [email protected]');
70+
$this->assertInstanceOf(TrimParser::class, $spec->string()->leftTrim());
71+
}
72+
73+
public function testRightTrim()
74+
{
75+
$spec = new TypeParser(new Config(), 'emailAddress', '[email protected] ');
76+
$this->assertInstanceOf(TrimParser::class, $spec->string()->rightTrim());
77+
}
78+
6079
public function testOneOf()
6180
{
6281
$spec = new TypeParser(new Config(), 'type', 'b');

0 commit comments

Comments
 (0)