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 ( 60221d...07ce94 )
by François
03:39
created

InputValidation   A

Complexity

Total Complexity 22

Size/Duplication

Total Lines 81
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
wmc 22
lcom 0
cbo 1
dl 0
loc 81
rs 10
c 1
b 0
f 1

9 Methods

Rating   Name   Duplication   Size   Complexity  
A commonName() 0 9 3
A userId() 0 9 3
A disable() 0 6 2
A otpKey() 0 6 2
A otpSecret() 0 6 2
A vootToken() 0 9 4
A dateTime() 0 6 2
A poolId() 0 6 2
A ipAddress() 0 6 2
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 POOL_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
    public static function commonName($commonName)
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
    public static function userId($userId)
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 >= 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 poolId($poolId)
90
    {
91
        if (0 === preg_match(self::POOL_ID_PATTERN, $poolId)) {
92
            throw new HttpException('invalid poolId 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