diff --git a/apps/maarch_entreprise/index.php b/apps/maarch_entreprise/index.php
index eed6ad8045830a35bc81acccc1df04658ca1c692..87c0d24d43213206f0f8c0cf8e3c8a7a99ec7306 100755
--- a/apps/maarch_entreprise/index.php
+++ b/apps/maarch_entreprise/index.php
@@ -360,8 +360,7 @@ if (file_exists($path)) {
             if ($core->is_module_loaded('basket')
                 && isset($_SESSION['abs_user_status'])
                 && $_SESSION['abs_user_status'] == true) {
-                include
-                    'modules/basket/advert_missing.php';
+                include 'modules/basket/advert_missing.php';
             } elseif (empty($_REQUEST['triggerAngular'])) {
                 $core->insert_page();
             }
diff --git a/rest/index.php b/rest/index.php
index 6d094efe6d0c22a7781af1ae780b3771df2da1df..b06648294d7c379bb7f82a30376a7a6de8b15b4d 100755
--- a/rest/index.php
+++ b/rest/index.php
@@ -30,18 +30,7 @@ $app = new \Slim\App(['settings' => ['displayErrorDetails' => true, 'determineRo
 
 //Authentication
 $app->add(function (\Slim\Http\Request $request, \Slim\Http\Response $response, callable $next) {
-    $userId = null;
-    if (!empty($_SERVER['PHP_AUTH_USER']) && !empty($_SERVER['PHP_AUTH_PW'])) {
-        if (\SrcCore\models\AuthenticationModel::authentication(['userId' => $_SERVER['PHP_AUTH_USER'], 'password' => $_SERVER['PHP_AUTH_PW']])) {
-            $userId = $_SERVER['PHP_AUTH_USER'];
-        }
-    } else {
-        $cookie = \SrcCore\models\SecurityModel::getCookieAuth();
-        if (!empty($cookie) && \SrcCore\models\SecurityModel::cookieAuthentication($cookie)) {
-            \SrcCore\models\SecurityModel::setCookieAuth(['userId' => $cookie['userId']]);
-            $userId = $cookie['userId'];
-        }
-    }
+    $userId = \SrcCore\controllers\AuthenticationController::authentication();
 
     if (!empty($userId)) {
         $GLOBALS['userId'] = $userId;
diff --git a/src/core/controllers/AuthenticationController.php b/src/core/controllers/AuthenticationController.php
index eb458d32560d21d0dfeecc8feb249c35dcb68baf..89f4d92b797834cd2d945fcb6398198e271d0d18 100644
--- a/src/core/controllers/AuthenticationController.php
+++ b/src/core/controllers/AuthenticationController.php
@@ -16,11 +16,30 @@ namespace SrcCore\controllers;
 
 use SrcCore\models\AuthenticationModel;
 use SrcCore\models\PasswordModel;
+use SrcCore\models\SecurityModel;
 use SrcCore\models\ValidatorModel;
 use User\models\UserModel;
 
 class AuthenticationController
 {
+    public static function authentication()
+    {
+        $userId = null;
+        if (!empty($_SERVER['PHP_AUTH_USER']) && !empty($_SERVER['PHP_AUTH_PW'])) {
+            if (AuthenticationModel::authentication(['userId' => $_SERVER['PHP_AUTH_USER'], 'password' => $_SERVER['PHP_AUTH_PW']])) {
+                $userId = $_SERVER['PHP_AUTH_USER'];
+            }
+        } else {
+            $cookie = SecurityModel::getCookieAuth();
+            if (!empty($cookie) && SecurityModel::cookieAuthentication($cookie)) {
+                SecurityModel::setCookieAuth(['userId' => $cookie['userId']]);
+                $userId = $cookie['userId'];
+            }
+        }
+
+        return $userId;
+    }
+
     public static function handleFailedAuthentication(array $aArgs)
     {
         ValidatorModel::notEmpty($aArgs, ['userId']);