GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( cf40de...df8b26 )
by François
02:28
created

InputValidation::ip6()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 3
Ratio 50 %

Importance

Changes 0
Metric Value
cc 2
eloc 3
nc 2
nop 1
dl 3
loc 6
rs 9.4285
c 0
b 0
f 0
1
<?php
2
/**
3
 *  Copyright (C) 2016 SURFnet.
4
 *
5
 *  This program is free software: you can redistribute it and/or modify
6
 *  it under the terms of the GNU Affero General Public License as
7
 *  published by the Free Software Foundation, either version 3 of the
8
 *  License, or (at your option) any later version.
9
 *
10
 *  This program is distributed in the hope that it will be useful,
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 *  GNU Affero General Public License for more details.
14
 *
15
 *  You should have received a copy of the GNU Affero General Public License
16
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
 */
18
namespace SURFnet\VPN\Server\Api;
19
20
use SURFnet\VPN\Common\Http\Exception\HttpException;
21
22
class InputValidation
23
{
24
    const PROFILE_ID_PATTERN = '/^[a-zA-Z-_]+$/';
25
    const COMMON_NAME_PATTERN = '/^[a-zA-Z0-9-_.@]+$/';
26
    const USER_ID_PATTERN = '/^[a-zA-Z0-9-_.@]+$/';
27
    const OTP_KEY_PATTERN = '/^[0-9]{6}$/';
28
    const OTP_SECRET_PATTERN = '/^[A-Z0-9]{16}$/';
29
    const ACCESS_TOKEN_PATTERN = '/^[\x20-\x7E]+$/';
30
31 View Code Duplication
    public static function commonName($commonName)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in 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...
32
    {
33
        if (0 === preg_match(self::COMMON_NAME_PATTERN, $commonName)) {
34
            throw new HttpException('invalid value for "common_name"', 400);
35
        }
36
        if ('..' === $commonName) {
37
            throw new HttpException('"common_name" cannot be ".."', 400);
38
        }
39
    }
40
41 View Code Duplication
    public static function userId($userId)
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in 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...
42
    {
43
        if (0 === preg_match(self::USER_ID_PATTERN, $userId)) {
44
            throw new HttpException('invalid value for "user_id"', 400);
45
        }
46
        if ('..' === $userId) {
47
            throw new HttpException('"user_id" cannot be ".."', 400);
48
        }
49
    }
50
51
    public static function disable($disable)
52
    {
53
        if (!is_bool($disable)) {
54
            throw new HttpException('"disable" must be boolean', 400);
55
        }
56
    }
57
58
    public static function otpKey($otpKey)
59
    {
60
        if (0 === preg_match(self::OTP_KEY_PATTERN, $otpKey)) {
61
            throw new HttpException('invalid OTP key format', 400);
62
        }
63
    }
64
65
    public static function otpSecret($otpSecret)
66
    {
67
        if (0 === preg_match(self::OTP_SECRET_PATTERN, $otpSecret)) {
68
            throw new HttpException('invalid OTP secret format', 400);
69
        }
70
    }
71
72
    public static function vootToken($vootToken)
73
    {
74
        if (!is_string($vootToken) || 0 >= mb_strlen($vootToken)) {
75
            throw new HttpException('voot token must be non-empty string', 400);
76
        }
77
        if (0 === preg_match(self::ACCESS_TOKEN_PATTERN, $vootToken)) {
78
            throw new HttpException('invalid value for "vootToken"', 400);
79
        }
80
    }
81
82
    public static function dateTime($dateTime)
83
    {
84
        if (false === strtotime($dateTime)) {
85
            throw new HttpException('invalid date/time format', 400);
86
        }
87
    }
88
89
    public static function profileId($profileId)
90
    {
91
        if (0 === preg_match(self::PROFILE_ID_PATTERN, $profileId)) {
92
            throw new HttpException('invalid profileId format', 400);
93
        }
94
    }
95
96
    public static function ipAddress($ipAddress)
97
    {
98
        if (false === filter_var($ipAddress, FILTER_VALIDATE_IP)) {
99
            throw new HttpException('invalid IP address', 400);
100
        }
101
    }
102
103
    public static function ip4($ipAddress)
104
    {
105 View Code Duplication
        if (false === filter_var($ipAddress, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4)) {
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...
106
            throw new HttpException('invalid IPv4 address', 400);
107
        }
108
    }
109
110
    public static function ip6($ipAddress)
111
    {
112 View Code Duplication
        if (false === filter_var($ipAddress, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) {
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...
113
            throw new HttpException('invalid IPv6 address', 400);
114
        }
115
    }
116
117
    public static function connectedAt($connectedAt)
118
    {
119
        if (!is_numeric($connectedAt) || 0 >= $connectedAt) {
120
            throw new HttpException('connectedAt must be positive integer', 400);
121
        }
122
    }
123
124
    public static function disconnectedAt($disconnectedAt)
125
    {
126
        if (!is_numeric($disconnectedAt) || 0 >= $disconnectedAt) {
127
            throw new HttpException('disconnectedAt must be positive integer', 400);
128
        }
129
    }
130
131
    public static function bytesTransferred($bytesTransferred)
132
    {
133
        if (!is_numeric($bytesTransferred) || 0 >= $bytesTransferred) {
134
            throw new HttpException('bytesTransferred must be positive integer', 400);
135
        }
136
    }
137
}
138