@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | if (isset($deviceProperties['options']['hidden']) && $deviceProperties['options']['hidden'] && $showHidden == 0) { |
177 | 177 | continue; |
178 | 178 | } |
179 | - $count ++; |
|
179 | + $count++; |
|
180 | 180 | |
181 | 181 | $deviceProperties['device'] = $device; |
182 | 182 | |
@@ -563,7 +563,7 @@ discard block |
||
563 | 563 | } |
564 | 564 | |
565 | 565 | |
566 | - public function sendLogo($identifier, $type, $width = 0, $height = 0){ |
|
566 | + public function sendLogo($identifier, $type, $width = 0, $height = 0) { |
|
567 | 567 | if ($type === "federation") { |
568 | 568 | $logo = $this->getFedLogo($identifier, $width, $height); |
569 | 569 | } |
@@ -581,7 +581,7 @@ discard block |
||
581 | 581 | return ['status' => 'error', 'error' => 'Function for GEOIPv1 called, but config says this is not the version to use!']; |
582 | 582 | } |
583 | 583 | //$host = $_SERVER['REMOTE_ADDR']; |
584 | - $host = input_filter(INPUT_SERVER,'REMOTE_ADDR',FILTER_VALIDATE_IP); |
|
584 | + $host = input_filter(INPUT_SERVER, 'REMOTE_ADDR', FILTER_VALIDATE_IP); |
|
585 | 585 | $record = geoip_record_by_name($host); |
586 | 586 | if ($record === FALSE) { |
587 | 587 | return ['status' => 'error', 'error' => 'Problem listing countries']; |
@@ -743,12 +743,12 @@ discard block |
||
743 | 743 | $this->loggerInstance->debug(4, "Browser_id: $dev_id\n"); |
744 | 744 | return(['device' => $dev_id, 'display' => $device['display'], 'group' => $device['group']]); |
745 | 745 | } else { |
746 | - $this->loggerInstance->debug(2, "Unrecognised system: " . filter_input(INPUT_SERVER,'HTTP_USER_AGENT', FILTER_SANITIZE_STRING) . "\n"); |
|
746 | + $this->loggerInstance->debug(2, "Unrecognised system: " . filter_input(INPUT_SERVER, 'HTTP_USER_AGENT', FILTER_SANITIZE_STRING) . "\n"); |
|
747 | 747 | return(false); |
748 | 748 | } |
749 | 749 | } |
750 | 750 | } |
751 | - $this->loggerInstance->debug(2, "Unrecognised system: " . filter_input(INPUT_SERVER,'HTTP_USER_AGENT', FILTER_SANITIZE_STRING) . "\n"); |
|
751 | + $this->loggerInstance->debug(2, "Unrecognised system: " . filter_input(INPUT_SERVER, 'HTTP_USER_AGENT', FILTER_SANITIZE_STRING) . "\n"); |
|
752 | 752 | return(false); |
753 | 753 | } |
754 | 754 |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | * @author Zilvinas Vaira |
11 | 11 | * |
12 | 12 | */ |
13 | -class ValidateEmailAddress extends AbstractAjaxCommand{ |
|
13 | +class ValidateEmailAddress extends AbstractAjaxCommand { |
|
14 | 14 | |
15 | 15 | const COMMAND = 'validateemailaddress'; |
16 | 16 | const PARAM_ADDRESS = 'address'; |
@@ -20,7 +20,7 @@ discard block |
||
20 | 20 | * @param string $commandToken |
21 | 21 | * @param DefaultContext $context |
22 | 22 | */ |
23 | - public function __construct($commandToken, $context){ |
|
23 | + public function __construct($commandToken, $context) { |
|
24 | 24 | parent::__construct($commandToken, $context); |
25 | 25 | } |
26 | 26 | |
@@ -29,9 +29,9 @@ discard block |
||
29 | 29 | * {@inheritDoc} |
30 | 30 | * @see \web\lib\admin\http\AbstractCommand::execute() |
31 | 31 | */ |
32 | - public function execute(){ |
|
33 | - if(isset($_POST[self::PARAM_ADDRESS])){ |
|
34 | - $address = $this->parseString(filter_input(INPUT_POST,self::PARAM_ADDRESS, FILTER_SANITIZE_STRING)); |
|
32 | + public function execute() { |
|
33 | + if (isset($_POST[self::PARAM_ADDRESS])) { |
|
34 | + $address = $this->parseString(filter_input(INPUT_POST, self::PARAM_ADDRESS, FILTER_SANITIZE_STRING)); |
|
35 | 35 | $result = OutsideComm::mailAddressValidSecure($address); |
36 | 36 | $message = $this->chooseMessage($result, $address); |
37 | 37 | $tokenTag = new Tag('email'); |
@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * @param string $address |
51 | 51 | * @return string |
52 | 52 | */ |
53 | - private function chooseMessage($result, $address){ |
|
53 | + private function chooseMessage($result, $address) { |
|
54 | 54 | $errorMessage = sprintf(_("Email address '%s' validation failed. Sending is not possible!"), $address); |
55 | 55 | $warningMessage = sprintf(_("The invitation token is possibly going over the internet without transport encryption and can be intercepted by random third parties for email '%s'! Please consider sending the invitation token via a more secure transport!"), $address); |
56 | 56 | switch ($result) { |
@@ -23,7 +23,7 @@ discard block |
||
23 | 23 | * @param string $commandToken |
24 | 24 | * @param SilverbulletContext $context |
25 | 25 | */ |
26 | - public function __construct($commandToken, $context){ |
|
26 | + public function __construct($commandToken, $context) { |
|
27 | 27 | parent::__construct($commandToken, $context); |
28 | 28 | $this->context = $context; |
29 | 29 | } |
@@ -33,15 +33,15 @@ discard block |
||
33 | 33 | * {@inheritDoc} |
34 | 34 | * @see \web\lib\admin\http\AbstractCommand::execute() |
35 | 35 | */ |
36 | - public function execute(){ |
|
37 | - if(isset($_POST[self::PARAM_NAME]) && isset($_POST[self::PARAM_EXPIRY])){ |
|
36 | + public function execute() { |
|
37 | + if (isset($_POST[self::PARAM_NAME]) && isset($_POST[self::PARAM_EXPIRY])) { |
|
38 | 38 | $name = $this->parseString(filter_input(INPUT_POST, self::PARAM_NAME, FILTER_SANITIZE_STRING)); |
39 | 39 | $expiry = $this->parseString($_POST[self::PARAM_EXPIRY]); |
40 | 40 | $user = $this->context->createUser($name, $expiry, $this); |
41 | - if(!empty($user->getIdentifier())){ |
|
41 | + if (!empty($user->getIdentifier())) { |
|
42 | 42 | $this->storeInfoMessage(_('User was added successfully!')); |
43 | 43 | } |
44 | - }else{ |
|
44 | + } else { |
|
45 | 45 | $this->storeErrorMessage(_('User name or expiry parameters are missing!')); |
46 | 46 | } |
47 | 47 | } |
@@ -84,14 +84,14 @@ |
||
84 | 84 | $langConverted[] = $hardSetLang; |
85 | 85 | } |
86 | 86 | if (!empty($_REQUEST['lang'])) { |
87 | - $recoverLang = filter_input(INPUT_GET,'lang', FILTER_SANITIZE_STRING) ?? filter_input(INPUT_POST, 'lang', FILTER_SANITIZE_STRING); |
|
87 | + $recoverLang = filter_input(INPUT_GET, 'lang', FILTER_SANITIZE_STRING) ?? filter_input(INPUT_POST, 'lang', FILTER_SANITIZE_STRING); |
|
88 | 88 | $langConverted[] = $recoverLang; |
89 | 89 | } |
90 | 90 | if (!empty($_SESSION['language'])) { |
91 | 91 | $langConverted[] = $_SESSION['language']; |
92 | 92 | } |
93 | 93 | if (!empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { |
94 | - $langs = explode(",", filter_input(INPUT_SERVER,"HTTP_ACCEPT_LANGUAGE", FILTER_SANITIZE_STRING)); |
|
94 | + $langs = explode(",", filter_input(INPUT_SERVER, "HTTP_ACCEPT_LANGUAGE", FILTER_SANITIZE_STRING)); |
|
95 | 95 | foreach ($langs as $lang) { |
96 | 96 | $result = []; |
97 | 97 | preg_match("/(.*);+.*/", $lang, $result); |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | |
22 | 22 | $cleanToken = FALSE; |
23 | 23 | $tokenStatus = ["status" => \core\ProfileSilverbullet::SB_TOKENSTATUS_INVALID, |
24 | - "cert_status" => [],]; |
|
24 | + "cert_status" => [], ]; |
|
25 | 25 | $profile = NULL; |
26 | 26 | $idp = NULL; |
27 | 27 | $fed = NULL; |
@@ -38,7 +38,7 @@ discard block |
||
38 | 38 | // it can be VALID (exists and not redeemed, EXPIRED, REDEEMED or INVALID (non existent) |
39 | 39 | $tokenStatus = \core\ProfileSilverbullet::tokenStatus($cleanToken); |
40 | 40 | } |
41 | -} elseif (isset($_SERVER['SSL_CLIENT_SAN_Email']) || isset($_SERVER['SSL_CLIENT_SAN_Email_0']) ) { |
|
41 | +} elseif (isset($_SERVER['SSL_CLIENT_SAN_Email']) || isset($_SERVER['SSL_CLIENT_SAN_Email_0'])) { |
|
42 | 42 | // maybe the user authenticated with his client cert? Then pick any of his |
43 | 43 | // tokens to go on |
44 | 44 | $certname = $_SERVER['SSL_CLIENT_SAN_Email'] ?? $_SERVER['SSL_CLIENT_SAN_Email_0']; |
@@ -63,7 +63,7 @@ discard block |
||
63 | 63 | $this->entityOptionTable = "institution_option"; |
64 | 64 | $this->entityIdColumn = "institution_id"; |
65 | 65 | if (!is_numeric($instId)) { |
66 | - throw new Exception("An ".CONFIG_CONFASSISTANT['CONSORTIUM']['nomenclature_inst']." is identified by an integer index!"); |
|
66 | + throw new Exception("An " . CONFIG_CONFASSISTANT['CONSORTIUM']['nomenclature_inst'] . " is identified by an integer index!"); |
|
67 | 67 | } |
68 | 68 | $this->identifier = (int) $instId; |
69 | 69 | |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | $alreadyUsed = $this->databaseHandle->exec("SELECT DISTINCT external_db_id FROM institution WHERE external_db_id = ? AND external_db_syncstate = ?", "si", $identifier, $syncState); |
318 | 318 | |
319 | 319 | if (mysqli_num_rows($alreadyUsed) == 0) { |
320 | - $this->databaseHandle->exec("UPDATE institution SET external_db_id = ?, external_db_syncstate = ? WHERE inst_id = ?", "sii", $identifier, $syncState, $this->identifier ); |
|
320 | + $this->databaseHandle->exec("UPDATE institution SET external_db_id = ?, external_db_syncstate = ? WHERE inst_id = ?", "sii", $identifier, $syncState, $this->identifier); |
|
321 | 321 | } |
322 | 322 | } |
323 | 323 | } |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | } |
95 | 95 | $prepResult = $statementObject->prepare($querystring); |
96 | 96 | if ($prepResult === FALSE) { |
97 | - throw new Exception("DB: Unable to prepare statement! Statement was --> $querystring <--, error was --> ". $statementObject->error ." <--."); |
|
97 | + throw new Exception("DB: Unable to prepare statement! Statement was --> $querystring <--, error was --> " . $statementObject->error . " <--."); |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | // we have a variable number of arguments packed into the ... array |
@@ -106,11 +106,11 @@ discard block |
||
106 | 106 | array_unshift($localArray, $types); |
107 | 107 | $retval = call_user_func_array([$statementObject, "bind_param"], $localArray); |
108 | 108 | if ($retval === FALSE) { |
109 | - throw new Exception("DB: Unuable to bind parameters to prepared statement! Argument array was --> ". var_export($localArray, TRUE) ." <--. Error was --> ". $statementObject->error ." <--"); |
|
109 | + throw new Exception("DB: Unuable to bind parameters to prepared statement! Argument array was --> " . var_export($localArray, TRUE) . " <--. Error was --> " . $statementObject->error . " <--"); |
|
110 | 110 | } |
111 | 111 | $result = $statementObject->execute(); |
112 | 112 | if ($result === FALSE) { |
113 | - throw new Exception("DB: Unuable to execute prepared statement! Error was --> ". $statementObject->error ." <--"); |
|
113 | + throw new Exception("DB: Unuable to execute prepared statement! Error was --> " . $statementObject->error . " <--"); |
|
114 | 114 | } |
115 | 115 | $selectResult = $statementObject->get_result(); |
116 | 116 | if ($selectResult !== FALSE) { |
@@ -15,24 +15,24 @@ discard block |
||
15 | 15 | use web\lib\admin\http\SilverbulletContext; |
16 | 16 | use web\lib\admin\domain\SilverbulletInvitation; |
17 | 17 | |
18 | -if ( !isset( $_SESSION ) ) $_SESSION = array(); |
|
18 | +if (!isset($_SESSION)) $_SESSION = array(); |
|
19 | 19 | |
20 | -class MockInstitutionPageBuilder extends InstitutionPageBuilder{ |
|
20 | +class MockInstitutionPageBuilder extends InstitutionPageBuilder { |
|
21 | 21 | |
22 | 22 | private $profile; |
23 | 23 | |
24 | - public function __construct($profile){ |
|
24 | + public function __construct($profile) { |
|
25 | 25 | parent::__construct(new DefaultHtmlPage("Test Page")); |
26 | 26 | $this->profile = $profile; |
27 | 27 | } |
28 | 28 | |
29 | - public function getProfile(){ |
|
29 | + public function getProfile() { |
|
30 | 30 | return $this->profile; |
31 | 31 | } |
32 | 32 | |
33 | 33 | } |
34 | 34 | |
35 | -class SilverbulletControllerTest extends PHPUnit_Framework_TestCase{ |
|
35 | +class SilverbulletControllerTest extends PHPUnit_Framework_TestCase { |
|
36 | 36 | |
37 | 37 | private $username = 'testusername'; |
38 | 38 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | |
45 | 45 | private $factory; |
46 | 46 | |
47 | - protected function setUp(){ |
|
47 | + protected function setUp() { |
|
48 | 48 | $this->databaseHandle = \core\DBConnection::handle('INST'); |
49 | 49 | |
50 | 50 | $this->profile = new MockProfileSilverbullet($this->databaseHandle); |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | $usersAfter = count(SilverbulletUser::getList($this->profile->identifier)); |
65 | 65 | $this->assertFalse($usersAfter > $usersBefore); |
66 | 66 | |
67 | - $_POST[AddUserCommand::PARAM_EXPIRY] = date('Y-m-d',strtotime("tomorrow")); |
|
67 | + $_POST[AddUserCommand::PARAM_EXPIRY] = date('Y-m-d', strtotime("tomorrow")); |
|
68 | 68 | $this->factory->parseRequest(); |
69 | 69 | |
70 | 70 | // Is not going to work since the $_POST variables can't be modified at runtime for filter_input function |
@@ -73,10 +73,10 @@ discard block |
||
73 | 73 | |
74 | 74 | } |
75 | 75 | |
76 | - private function countActiveUsers($users){ |
|
76 | + private function countActiveUsers($users) { |
|
77 | 77 | $count = 0; |
78 | 78 | foreach ($users as $user) { |
79 | - if(!$user->isDeactivated()){ |
|
79 | + if (!$user->isDeactivated()) { |
|
80 | 80 | $count++; |
81 | 81 | } |
82 | 82 | } |
@@ -154,7 +154,7 @@ discard block |
||
154 | 154 | public function testRevokeGeneratedCertificate() { |
155 | 155 | $serial = '29837498273948'; |
156 | 156 | $cn = 'testCommonName'; |
157 | - $expiry = date('Y-m-d',strtotime("tomorrow")); |
|
157 | + $expiry = date('Y-m-d', strtotime("tomorrow")); |
|
158 | 158 | |
159 | 159 | $this->user->save(); |
160 | 160 | |
@@ -181,9 +181,9 @@ discard block |
||
181 | 181 | |
182 | 182 | } |
183 | 183 | |
184 | - protected function tearDown(){ |
|
184 | + protected function tearDown() { |
|
185 | 185 | $this->user->delete(); |
186 | - $this->databaseHandle->exec("DELETE FROM `".SilverbulletUser::TABLE."` WHERE `".SilverbulletUser::USERNAME."`='".$this->username."'"); |
|
186 | + $this->databaseHandle->exec("DELETE FROM `" . SilverbulletUser::TABLE . "` WHERE `" . SilverbulletUser::USERNAME . "`='" . $this->username . "'"); |
|
187 | 187 | $this->profile->delete(); |
188 | 188 | } |
189 | 189 | } |
@@ -5,7 +5,7 @@ discard block |
||
5 | 5 | use web\lib\admin\http\DefaultContext; |
6 | 6 | use web\lib\admin\http\ValidateEmailAddress; |
7 | 7 | |
8 | -class ValidateEmailAddressTest extends PHPUnit_Framework_TestCase{ |
|
8 | +class ValidateEmailAddressTest extends PHPUnit_Framework_TestCase { |
|
9 | 9 | |
10 | 10 | /** |
11 | 11 | * |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | $this->command = new ValidateEmailAddress(ValidateEmailAddress::COMMAND, new DefaultContext($this->page)); |
25 | 25 | } |
26 | 26 | |
27 | - public function testExecute(){ |
|
27 | + public function testExecute() { |
|
28 | 28 | |
29 | 29 | $this->command->execute(); |
30 | 30 | $response = $this->page->getResponse(); |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | |
37 | 37 | $this->command->execute(); |
38 | 38 | $renderedResponse = $response->__toString(); |
39 | - $this->assertTrue(strpos($renderedResponse, '<email')!==false); |
|
39 | + $this->assertTrue(strpos($renderedResponse, '<email') !== false); |
|
40 | 40 | // Is not going to work since the $_POST variables can't be modified at runtime for filter_input function |
41 | 41 | //$this->assertTrue(strpos($renderedResponse, 'address="'.$_POST[ValidateEmailAddress::PARAM_ADDRESS].'"')!==false); |
42 | 42 | $this->assertFalse(strpos($renderedResponse, 'isValid="true"')); |