Completed
Push — 3.0.0-dev ( ac3f65...1cfe87 )
by Eduardo Gulias
02:02
created

DoubleQuote   A

Complexity

Total Complexity 18

Size/Duplication

Total Lines 74
Duplicated Lines 13.51 %

Coupling/Cohesion

Components 1
Dependencies 9

Importance

Changes 0
Metric Value
wmc 18
lcom 1
cbo 9
dl 10
loc 74
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
C parse() 6 51 14
A checkDQUOTE() 4 18 4

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
namespace Egulias\EmailValidator\Parser;
3
4
use Egulias\EmailValidator\EmailLexer;
5
use Egulias\EmailValidator\Parser\Parser;
6
use Egulias\EmailValidator\Result\ValidEmail;
7
use Egulias\EmailValidator\Result\InvalidEmail;
8
use Egulias\EmailValidator\Warning\CFWSWithFWS;
9
use Egulias\EmailValidator\Warning\QuotedString;
10
use Egulias\EmailValidator\Result\Reason\ExpectingATEXT;
11
use Egulias\EmailValidator\Result\Reason\UnclosedQuotedString;
12
use Egulias\EmailValidator\Result\Result;
13
14
class DoubleQuote extends Parser
15
{
16
    public function parse($qouted)
17
    {
18
19
        $validQuotedString = $this->checkDQUOTE();
20
        if(!$validQuotedString->isValid()) return $validQuotedString;
21
22
        $special = array(
23
            EmailLexer::S_CR => true,
24
            EmailLexer::S_HTAB => true,
25
            EmailLexer::S_LF => true
26
        );
27
28
        $invalid = array(
29
            EmailLexer::C_NUL => true,
30
            EmailLexer::S_HTAB => true,
31
            EmailLexer::S_CR => true,
32
            EmailLexer::S_LF => true
33
        );
34
        $setSpecialsWarning = true;
35
36
        $this->lexer->moveNext();
37
38
        while ($this->lexer->token['type'] !== EmailLexer::S_DQUOTE && null !== $this->lexer->token['type']) {
39
            if (isset($special[$this->lexer->token['type']]) && $setSpecialsWarning) {
40
                $this->warnings[CFWSWithFWS::CODE] = new CFWSWithFWS();
41
                $setSpecialsWarning = false;
42
            }
43 View Code Duplication
            if ($this->lexer->token['type'] === EmailLexer::S_BACKSLASH && $this->lexer->isNextToken(EmailLexer::S_DQUOTE)) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
44
                $this->lexer->moveNext();
45
            }
46
47
            $this->lexer->moveNext();
48
49
            if (!$this->escaped() && isset($invalid[$this->lexer->token['type']])) {
50
                return new InvalidEmail(new ExpectingATEXT("Expecting ATEXT between DQUOTE"), $this->lexer->token['value']);
51
            }
52
        }
53
54
        $prev = $this->lexer->getPrevious();
55
56
        if ($prev['type'] === EmailLexer::S_BACKSLASH) {
57
            $validQuotedString = $this->checkDQUOTE();
58
            if(!$validQuotedString->isValid()) return $validQuotedString;
59
        }
60
61 View Code Duplication
        if (!$this->lexer->isNextToken(EmailLexer::S_AT) && $prev['type'] !== EmailLexer::S_BACKSLASH) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
62
            return new InvalidEmail(new ExpectingATEXT("Expecting ATEXT between DQUOTE"), $this->lexer->token['value']);
63
        }
64
65
        return new ValidEmail();
66
    }
67
68
    protected function checkDQUOTE() : Result
69
    {
70
        $previous = $this->lexer->getPrevious();
71
72 View Code Duplication
        if ($this->lexer->isNextToken(EmailLexer::GENERIC) && $previous['type'] === EmailLexer::GENERIC) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
73
            $description = 'https://tools.ietf.org/html/rfc5322#section-3.2.4 - quoted string should be a unit';
74
            return new InvalidEmail(new ExpectingATEXT($description), $this->lexer->token['value']);
75
        }
76
77
        try {
78
            $this->lexer->find(EmailLexer::S_DQUOTE);
79
        } catch (\Exception $e) {
80
            return new InvalidEmail(new UnclosedQuotedString(), $this->lexer->token['value']);
81
        }
82
        $this->warnings[QuotedString::CODE] = new QuotedString($previous['value'], $this->lexer->token['value']);
83
84
        return new ValidEmail();
85
    }
86
87
}