Compare commits
1 Commits
develop
...
de3731a63d
Author | SHA1 | Date | |
---|---|---|---|
de3731a63d |
@@ -26,6 +26,7 @@
|
|||||||
"symfony/translation": "6.4.*",
|
"symfony/translation": "6.4.*",
|
||||||
"symfony/twig-bundle": "6.4.*",
|
"symfony/twig-bundle": "6.4.*",
|
||||||
"symfony/validator": "6.4.*",
|
"symfony/validator": "6.4.*",
|
||||||
|
"symfony/web-profiler-bundle": "6.4.*",
|
||||||
"symfony/webpack-encore-bundle": "^1.16",
|
"symfony/webpack-encore-bundle": "^1.16",
|
||||||
"symfony/yaml": "6.4.*"
|
"symfony/yaml": "6.4.*"
|
||||||
},
|
},
|
||||||
@@ -80,7 +81,6 @@
|
|||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"rector/rector": "^2.1",
|
"rector/rector": "^2.1",
|
||||||
"symfony/debug-bundle": "6.4.*",
|
"symfony/debug-bundle": "6.4.*"
|
||||||
"symfony/web-profiler-bundle": "6.4.*"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
ARG NODE_OPTIONS="--openssl-legacy-provider" \
|
ARG NODE_OPTIONS="--openssl-legacy-provider" \
|
||||||
PHP_PKG_VERSION="8.4.11-r0" \
|
PHP_PKG_VERSION="8.4.5-r0" \
|
||||||
ENCORE_MODE="production" \
|
ENCORE_MODE="production" \
|
||||||
APP_ENV="prod" \
|
APP_ENV="prod" \
|
||||||
BASE_PATH="" \
|
BASE_PATH="" \
|
||||||
@@ -20,4 +20,4 @@ ARG NODE_OPTIONS="--openssl-legacy-provider" \
|
|||||||
BASE_PATH=${BASE_PATH} \
|
BASE_PATH=${BASE_PATH} \
|
||||||
APP_LOCALES=${APP_LOCALES}"
|
APP_LOCALES=${APP_LOCALES}"
|
||||||
|
|
||||||
FROM reg.cadoles.com/cadoles/symfony:alpine-php-8.4-base-2025.9.1-stable.1652.6889275
|
FROM reg.cadoles.com/cadoles/symfony:alpine-php-8.4-base-2025.6.12-stable.1038.48ea3b9
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
ARG NODE_OPTIONS="--openssl-legacy-provider" \
|
ARG NODE_OPTIONS="--openssl-legacy-provider" \
|
||||||
PHP_PKG_VERSION="8.4.11-r0" \
|
PHP_PKG_VERSION="8.4.5-r0" \
|
||||||
ENCORE_MODE="production" \
|
ENCORE_MODE="production" \
|
||||||
APP_ENV="prod" \
|
APP_ENV="prod" \
|
||||||
BASE_PATH="" \
|
BASE_PATH="" \
|
||||||
@@ -20,5 +20,5 @@ ARG NODE_OPTIONS="--openssl-legacy-provider" \
|
|||||||
BASE_PATH=${BASE_PATH} \
|
BASE_PATH=${BASE_PATH} \
|
||||||
APP_LOCALES=${APP_LOCALES}"
|
APP_LOCALES=${APP_LOCALES}"
|
||||||
|
|
||||||
FROM reg.cadoles.com/cadoles/symfony:alpine-php-8.4-standalone-2025.9.1-stable.1652.6889275
|
FROM reg.cadoles.com/cadoles/symfony:alpine-php-8.4-standalone-2025.6.12-stable.1038.48ea3b9
|
||||||
USER www-data
|
USER www-data
|
||||||
|
@@ -60,7 +60,7 @@ class SQLLoginUserAuthenticator extends AbstractLoginFormAuthenticator
|
|||||||
public function authenticate(Request $request): SelfValidatingPassport
|
public function authenticate(Request $request): SelfValidatingPassport
|
||||||
{
|
{
|
||||||
$form = $request->request->all(key: 'login');
|
$form = $request->request->all(key: 'login');
|
||||||
$login = \strtolower($form['login']);
|
$login = $form['login'];
|
||||||
$plaintextPassword = $form['password'];
|
$plaintextPassword = $form['password'];
|
||||||
$session = $request->getSession();
|
$session = $request->getSession();
|
||||||
try {
|
try {
|
||||||
|
@@ -28,6 +28,7 @@ class SQLLoginService extends AbstractController
|
|||||||
public function fetchPasswordAndDatas(string $login): array
|
public function fetchPasswordAndDatas(string $login): array
|
||||||
{
|
{
|
||||||
$dataRequest = $this->sqlLoginRequest->getDatasRequest();
|
$dataRequest = $this->sqlLoginRequest->getDatasRequest();
|
||||||
|
$login = \strtolower($login);
|
||||||
$datas = $this->executeRequestWithLogin($dataRequest, $login);
|
$datas = $this->executeRequestWithLogin($dataRequest, $login);
|
||||||
|
|
||||||
return $datas;
|
return $datas;
|
||||||
|
Reference in New Issue
Block a user