Skip to content
This repository has been archived by the owner on Jul 22, 2022. It is now read-only.

Commit

Permalink
patch bug affichage employé par le grand responsable (#857)
Browse files Browse the repository at this point in the history
  • Loading branch information
wouldsmina authored Oct 28, 2019
1 parent 5d433dd commit fa9943b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
14 changes: 14 additions & 0 deletions App/ProtoControllers/Responsable.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,20 @@ public static function isRespDeUtilisateur($resp, $user)
&& \App\ProtoControllers\Groupe::isResponsableGroupe($resp, \App\ProtoControllers\Utilisateur::getGroupesId($user), \includes\SQL::singleton());
}

/**
* Vérifie si un utilisateur est bien le grand responsable d'un employé
*
* @param string $resp
* @param string $user
*
* @return bool
*/
public static function isGrandRespDeUtilisateur($resp, $user)
{
return $resp != $user
&& \App\ProtoControllers\Groupe::isGrandResponsableGroupe($resp, \App\ProtoControllers\Utilisateur::getGroupesId($user), \includes\SQL::singleton());
}

/**
* Vérifie si un utilisateur est responsable par délégation d'un employé
*
Expand Down
3 changes: 2 additions & 1 deletion responsable/Fonctions.php
Original file line number Diff line number Diff line change
Expand Up @@ -888,7 +888,8 @@ public static function traiteUserModule()
};
$userLogin = $entities(getpost_variable('user_login'));

if (!\App\ProtoControllers\Responsable::isRespDeUtilisateur($_SESSION['userlogin'], $userLogin)) {
if (!(\App\ProtoControllers\Responsable::isRespDeUtilisateur($_SESSION['userlogin'], $userLogin)
|| \App\ProtoControllers\Responsable::isGrandRespDeUtilisateur($_SESSION['userlogin']))) {
redirect(ROOT_PATH . 'deconnexion');
exit;
}
Expand Down

0 comments on commit fa9943b

Please sign in to comment.