965 lines
24 KiB
PHP

<?php
class Scores_Menu
{
protected $menu = null;
protected $siret = null;
protected $id = 0;
protected $lienref = null;
/**
* Définition du menu avec ces groupes et pages
* Groupes
* => label : titre du menu
* => check : nom du controller
* => permission : code de la permission nécessaire pour l'affichage
* activateMenu : Définir controller/action pour activer le menu
* => controller : nom du controller
* => action : nom de l'action
* Pages
* => label : titre de la page
* => title : titre de l'infobulle
* => controller : nom du controller
* => action : nom de l'action
* => permission : code de la permission nécessaire pour l'affichage
* => forceVisible : boolean, affiche le menu en grisé même si l'utilisateur n'a pas la permission
* @var array
*/
protected $defineMenu = array(
array(
'label' => 'RECHERCHES',
'activateMenu' => array(
array('controller'=>'recherche', 'action'=>'liste'),
array('controller'=>'recherche', 'action'=>'list'),
array('controller'=>'recherche', 'action'=>'annonceliste'),
array('controller'=>'recherche', 'action'=>'enquete'),
array('controller'=>'recherche', 'action'=>'refclientliste'),
array('controller'=>'worldcheck', 'action'=>'index'),
array('controller'=>'worldcheck', 'action'=>'matchcontent'),
array('controller'=>'giant', 'action'=>'search'),
array('controller'=>'giant', 'action'=>'identite'),
array('controller'=>'giant', 'action'=>'commandes'),
array('controller'=>'giant', 'action'=>'rapport'),
),
'pages' => array(
array(
'label' => "Rechercher une entreprise",
'title' => "Rechercher une entreprise",
'controller' => 'recherche',
'action' => 'entreprise',
'forceVisible' => true,
),
array(
'label' => "Rechercher par dirigeant",
'controller' => 'recherche',
'action' => 'dirigeant',
'forceVisible' => true,
'permission' => 'SEARCHDIR',
),
array(
'label' => "Recherche Internationale",
'controller' => '',
'action' => '',
'permission' => 'INTERNATIONAL'
),
array( // idClient = 1 && idClient =
'label' => "Rechercher une annonce",
'controller' => 'recherche',
'action' => 'annonce',
'permission' => 'HISTOBODACC',
),
array(
'label' => "Rechercher par actionnaire",
'controller' => 'recherche',
'action' => 'actionnaire',
'forceVisible' => true,
'permission' => 'SEARCHACT',
),
array(
'label' => "Recherche WorldCheck",
'controller' => 'recherche',
'action' => 'worldcheck',
'forceVisible' => false,
'permission' => 'WORLDCHECK',
),
array(
'label' => "Dernière recherche",
'controller' => 'recherche',
'action' => 'last',
),
array(
'label' => "Liste des dernières recherches",
'controller' => 'recherche',
'action' => 'list',
),
array(
'label' => "Centrale IparI",
'controller' => 'recherche',
'action' => 'ipari',
'permission' => 'IPARI',
),
),
),
array(
'label' => 'IDENTITE',
'activateMenu' => array(
array('controller'=>'identite', 'action'=>'contacts'),
),
'pages' => array(
array(
'label' => "Fiche d'identité",
'controller' => 'identite',
'action' => 'fiche',
'forceVisible' => true,
'permission' => 'IDENTITE',
),
array(
'label' => "Fiche Procédure Collective",
'controller' => 'identite',
'action' => 'fichepc',
'permission' => 'IDPROCOL'
),
array(
'label' => "Liste des établissements",
'controller' => 'identite',
'action' => 'etablissements',
'forceVisible' => true,
'permission' => 'ETABLISSEMENTS',
),
array(
'label' => "Liens inter-entreprises",
'controller' => 'identite',
'action' => 'liens',
'forceVisible' => true,
'permission' => 'LIENS',
),
array(
'label' => "Informations Groupe",
'controller' => 'identite',
'action' => 'groupe',
'permission' => 'GROUPE'
),
array(
'label' => "Modifications Insee",
'controller' => 'identite',
'action' => 'evenements',
'forceVisible' => true,
'permission' => 'EVENINSEE',
),
array(
'label' => "Actualités Web",
'title' => "Toute la puissance des réseaux sociaux professionnels pour identifier rapidement un interlocuteur et accéder à ses coordonnées",
'controller' => 'identite',
'action' => 'corporama',
'forceVisible' => true,
),
),
),
array(
'label' => 'DIRIGEANTS',
'activateMenu' => array(
array('controller'=>'dirigeants', 'action'=>'op'),
),
'pages' => array(
array(
'label' => "Liste des dirigeants",
'controller' => 'dirigeant',
'action' => 'liste',
'forceVisible' => true,
'permission' => 'DIRIGEANTS',
),
array(
'label' => "Historique des dirigeants",
'controller' => 'dirigeant',
'action' => 'histo',
'forceVisible' => true,
'permission' => 'DIRIGEANTS',
),
),
),
array(
'label' => 'ELEMENTS FINANCIERS',
'activateMenu' => array(
array('controller'=>'finance', 'action'=>'subvention'),
),
'pages' => array(
array(
'label' => "Synthèse",
'controller' => 'finance',
'action' => 'synthese',
'forceVisible' => true,
'permission' => 'SYNTHESE',
),
array(
'label' => "Bilans, Compte de résultat",
'controller' => 'finance',
'action' => 'bilan',
'forceVisible' => true,
'permission' => 'RATIOS',
),
array(
'label' => "Ratios",
'controller' => 'finance',
'action' => 'ratios',
'forceVisible' => true,
'permission' => 'RATIOS',
),
array(
'label' => "Flux de trésorerie",
'controller' => 'finance',
'action' => 'flux',
'forceVisible' => true,
'permission' => 'FLUX',
),
array(
'label' => "Liasse fiscale",
'controller' => 'finance',
'action' => 'liasse',
'forceVisible' => true,
'permission' => 'LIASSE',
),
array(
'label' => "Bourse & Cotations",
'controller' => 'finance',
'action' => 'bourse',
'forceVisible' => true,
'permission' => 'BOURSE',
),
array(
'label' => "Relations bancaires",
'controller' => 'finance',
'action' => 'banque',
'forceVisible' => true,
'permission' => 'BANQUE',
),
array(
'label' => "Subventions",
'controller' => 'finance',
'action' => 'subventions',
'forceVisible' => true,
),
),
),
array(
'label' => 'ELEMENTS JURIDIQUES',
'pages' => array(
array(
'label' => "Annonces Légales",
'controller' => 'juridique',
'action' => 'annonces',
'forceVisible' => true,
'permission' => 'ANNONCES',
),
array(
'label' => "Information Réglementée",
'controller' => 'juridique',
'action' => 'infosreg',
'forceVisible' => true,
'permission' => 'INFOSREG',
),
array(
'label' => "Compétences Territoriales",
'controller' => 'juridique',
'action' => 'competences',
'forceVisible' => true,
'permission' => 'COMPETENCES',
),
array(
'label' => "Conventions collectives",
'controller' => 'juridique',
'action' => 'conventions',
'forceVisible' => true,
'permission' => 'CONVENTIONS',
),
array(
'label' => "Marques déposées",
'controller' => 'juridique',
'action' => 'marques',
'permission' => 'MARQUES',
),
),
),
array(
'label' => 'BANQUE DE FRANCE',
'permission' => 'BDF',
'activateMenu' => array(
array('controller'=>'bdf', 'action'=>'module'),
),
'pages' => array(
array(
'label' => "27. Panorama",
'controller' => 'bdf',
'action' => 'module27',
),
array(
'label' => "28. Concours Bancaires",
'controller' => 'bdf',
'action' => 'module28',
),
array(
'label' => "29. Impayés",
'controller' => 'bdf',
'action' => 'module29',
),
array(
'label' => "40. Relations Bancaires",
'controller' => 'bdf',
'action' => 'module40',
),
array(
'label' => "51. Dirigeants",
'controller' => 'bdf',
'action' => 'module51',
),
array(
'label' => "Autres",
'controller' => 'bdf',
'action' => 'index',
),
),
),
array(
'label' => 'EVALUATION',
'activateMenu' => array(
array('controller'=>'evaluation', 'action'=> 'scoringcommande'),
array('controller'=>'evaluation', 'action'=> 'aviscredit'),
array('controller'=>'evaluation', 'action'=> 'scoreshisto'),
),
'pages' => array(
array(
'label' => "IndiScore",
'controller' => 'evaluation',
'action' => 'indiscore',
'permission' => array('indiscore', 'indiscorep'),
'pref' => array('demanderef'),
'forceVisible' => true,
),
array(
'label' => "Rapport de synthèse",
'controller' => 'evaluation',
'action' => 'indiscore2',
'permission' => array('INDISCORE2', 'INDISCORE2P'),
),
array(
'label' => "Rapport complet",
'controller' => 'evaluation',
'action' => 'indiscore3',
'permission' => array('INDISCORE3', 'INDISCORE3P'),
'pref' => array('demanderef'),
),
array(
'label' => "Valorisation",
'controller' => 'evaluation',
'action' => 'valorisation',
'permission' => array('VALORISATION'),
),
array(
'label' => "Scoring Credit Safe",
'controller' => 'evaluation',
'action' => 'scoring',
'permission' => 'SCORECSF',
),
array(
'label' => "Enquête commerciale",
'controller' => 'evaluation',
'action' => 'enquetec',
'permission' => 'ENQUETEC',
),
),
),
array(
'label' => 'PIECES OFFICIELLES',
'activateMenu' => array(
array('controller'=> 'pieces', 'action'=>'cmdassociation'),
array('controller'=> 'pieces', 'action'=>'associationactes'),
array('controller'=> 'pieces', 'action'=>'associationbilans'),
array('controller'=> 'pieces', 'action'=>'cmdcourrier'),
array('controller'=> 'pieces', 'action'=>'kbis'),
array('controller'=> 'pieces', 'action'=>'kbispasserelle'),
),
'pages' => array(
array(
'label' => "Commande de Pièces",
'controller' => 'pieces',
'action' => 'commande',
'permission' => array('KBIS', 'PRIVILEGES'),
),
array(
'label' => "Comptes annuels",
'controller' => 'pieces',
'action' => 'bilans',
'forceVisible' => true,
),
array(
'label' => "Actes & Statuts",
'controller' => 'pieces',
'action' => 'actes',
'forceVisible' => true,
),
array(
'label' => "Suivi Privilèges",
'controller' => 'pieces',
'action' => 'privileges',
'permission' => 'SURVPRIV',
),
),
),
array(
'label' => 'OPTIONS',
'pages' => array(
array(
'label' => 'Nouveautés',
'controller' => 'aide',
'action' => 'newliste',
),
array(
'label' => "Mes options",
'controller' => 'user',
'action' => 'index',
'permission' => 'MONPROFIL'
),
array(
'label' => "Mes surveillances",
'controller' => 'surveillance',
'action' => 'liste',
'permission' => 'SURVLISTE'
),
array(
'label' => "Surveillances fichier",
'controller' => 'surveillance',
'action' => 'fichier',
),
array(
'label' => "Mon portefeuille",
'controller' => 'surveillance',
'action' => 'portefeuille',
'permission' => 'PORTEFEUILLE',
),
array(
'label' => "Administration",
'controller' => 'user',
'action' => 'liste',
),
array(
'label' => "Surveillances",
'controller' => '',
'action' => '',
),
array(
'label' => "Se déconnecter",
'controller' => 'user',
'action' => 'logout',
),
),
),
array(
'label' => 'GESTION S&D',
'check' => 'dashboard',
'activateMenu' => array(
array('controller'=>'dashboard', 'action'=>'clients'),
array('controller'=>'dashboard', 'action'=>'client'),
array('controller'=>'dashboard', 'action'=>'users'),
array('controller'=>'dashboard', 'action'=>'user'),
array('controller'=>'dashboard', 'action'=>'commandes'),
array('controller'=>'dashboard', 'action'=>'prestations'),
array('controller'=>'dashboard', 'action'=>'prestation'),
array('controller'=>'dashboard', 'action'=>'services'),
array('controller'=>'dashboard', 'action'=>'service'),
array('controller'=>'dashboard', 'action'=>'tarifs'),
array('controller'=>'dashboard', 'action'=>'tarif'),
),
'pages' => array(
array(
'label' => "Gestion",
'controller' => 'dashboard',
'action' => 'index',
),
array(
'label' => "Saisie / Edition",
'controller' => 'saisie',
'action' => 'fiche',
),
array(
'label' => "Saisie Fiche Etrangère",
'controller' => 'saisie',
'action' => 'lienetranger',
),
),
),
);
/**
* Construit le menu en fonction des paramètres de l'URL
* @param array $parameters
*/
public function __construct($parameters)
{
//Special case, edit foreign company
if (array_key_exists('lienref', $parameters)) {
$this->lienref = $parameters['lienref'];
} else {
//French Company
if (array_key_exists('siret', $parameters)) {
$this->siret = $parameters['siret'];
}
if (array_key_exists('id', $parameters)) {
$this->id = $parameters['id'];
}
if (empty($this->siret) && empty($this->id)) {
$session = new Scores_Session_Entreprise(null);
$this->siret = $session->getSiret();
$this->id = $session->getId();
}
}
//Compute Menu
$this->menu = new Zend_Navigation();
$this->computeMenu();
}
/**
* Retourne le menu généré
*/
public function getMenu()
{
return $this->menu;
}
/**
* Retourne la permission associés à une page
* @param string $controller
* @param string $action
* @return string
*/
public function getPagePermission($controller, $action)
{
$permission = null;
foreach ( $this->defineMenu as $menu )
{
foreach ( $menu['pages'] as $item ) {
if ( $controller == $item['controller']
&& $action == $item['action']
&& array_key_exists('permission', $item) ) {
$permission = $item['permission'];
break;
}
}
}
return $permission;
}
/**
* Retourne la position du groupe à activé
* @param string $controller
* @param string $action
*/
public function getIdMenu($controller, $action)
{
$i = 0;
$stop = false;
foreach($this->defineMenu as $menu){
$perm = true;
if (array_key_exists('permission', $menu)){
$perm = $this->checkPermission($menu['permission']);
}
$visible = true;
if (array_key_exists('check', $menu)){
$visible = $this->checkMenu($menu['check']);
}
foreach($menu['pages'] as $item){
if($controller == $item['controller'] && $action == $item['action']){
$stop = true;
break;
}
}
if (array_key_exists('activateMenu', $menu)){
foreach($menu['activateMenu'] as $item){
if($controller == $item['controller'] && $action == $item['action']){
$stop = true;
break;
}
}
}
if ($stop === true) break;
if ($perm && $visible){
$i++;
}
}
return $i;
}
/**
* Parcours la définition du menu en gérant les permissions et autres
* particularités
*/
protected function computeMenu()
{
foreach($this->defineMenu as $element){
$perm = true;
if (array_key_exists('permission', $element)){
$perm = $this->checkPermission($element['permission']);
}
$visible = true;
if (array_key_exists('check', $element)){
$visible = $this->checkMenu($element['check']);
}
if ($perm && $visible){
$menu = array();
$menu['label'] = $element['label'];
$menu['uri'] = '#';
$menu['class'] = 'header';
if (array_key_exists('pages', $element)){
$menu['pages'] = $this->computePage($element['pages']);
}
$this->menu->addPage($menu);
}
}
}
/**
* Parcours les pages d'un groupe du menu pour vérifier les permissions
* et autres particularités
* @param array $pages
*/
protected function computePage($pages)
{
$computePages = array();
foreach( $pages as $page ) {
$visible = false;
if (array_key_exists('forceVisible', $page)){
$visible = $page['forceVisible'];
}
$perm = true;
if (array_key_exists('permission', $page)){
$perm = $this->checkPermission($page['permission']);
}
$computePage = array();
if ( !$perm && $visible ) {
$computePage['label'] = $page['label'];
$computePage['class'] = 'inactif';
$computePage['uri'] = '#';
} elseif ( $perm ) {
if ( $this->checkParams($page['controller'], $page['action']) ) {
$computePage = $page;
$computePage['params'] = $this->setParams($page['controller'], $page['action']);
if (array_key_exists('pref', $page)){
if ($this->hasPref('demanderef') && in_array('demanderef', $page['pref']) ){ // @todo: Erreur data
$computePage['class'] = 'demanderef';
}
}
} elseif ( $visible ) {
$computePage['label'] = $page['label'];
$computePage['class'] = 'inactif';
$computePage['uri'] = '#';
}
}
if ( array_key_exists('title', $page) ) {
$computePage['title'] = $page['title'];
}
if ( count($computePage)>0 ) {
$computePages[] = $computePage;
}
}
return $computePages;
}
/**
* Vérifie les permissions de l'utilisateur
* @param mixed $perm
*/
protected function checkPermission($perm)
{
$hasPerm = false;
if (is_array($perm)){
$list = $perm;
} else if (is_string($perm)){
$list = (array)$perm;
}
$user = new Scores_Utilisateur();
foreach($list as $permission){
if ($user->checkPerm($permission)){
$hasPerm = true;
break;
}
}
return $hasPerm;
}
/**
* Vérifie préférence utilisateur
* @param string $pref
*/
public function hasPref($pref)
{
$user = new Scores_Utilisateur();
if ($user->checkPref($pref)){
return true;
}
return false;
}
/**
* Permet d'effectuer une vérification pour la visibilité d'un menu (Groupe)
* @param string $controller
*/
protected function checkMenu($controller)
{
switch($controller) {
case 'dashboard':
$user = new Scores_Utilisateur();
if ($user->checkModeEdition() && $user->getIdClient()==1){
return true;
}
return false;
break;
}
}
/**
* Vérifie les paramètres pour un controller et/ou une action
* @param string $controller
* @param string $action
*/
protected function checkParams($controller, $action = '')
{
switch($controller) {
case 'bdf':
return true;
break;
case 'dashboard':
return true;
break;
case 'recherche':
switch($action) {
case 'last':
case 'list':
//Vérifier la présence d'au moins une recherche
$recherches = new Scores_Session_Recherche();
if (count($recherches->liste()>0)){
return true;
}
return false;
break;
case 'annonce':
$user = new Scores_Utilisateur();
if($user->checkPerm('histobodacc')){
return true;
}
return false;
break;
}
return true;
break;
case 'user':
switch($action){
case 'liste':
$user = new Scores_Utilisateur();
if ($user->isAdmin() || $user->isSuperAdmin()){
return true;
}
return false;
break;
}
return true;
break;
case 'surveillance':
switch($action) {
case 'fichier':
$user = new Scores_Utilisateur();
if (substr($user->getLogin(),0,6)=='cnasea'
|| strtolower($user->getLogin())=='omni04'
|| strtolower($user->getLogin())=='bodacca3m'
|| strtolower($user->getLogin())=='bodaccomni'
|| strtolower($user->getLogin())=='bodacccrr'
|| strtolower($user->getLogin())=='cpcambr13'
|| strtolower($user->getLogin())=='cpcambr14'
|| strtolower($user->getLogin())=='frbsurveillance'
|| $user->getIdClient()==32
|| $user->getIdClient()==82 ) {
return true;
} else {
return false;
}
break;
}
return true;
break;
case 'identite':
switch($action) {
case 'fiche':
case 'fichepc':
if ( !empty($this->siret) && intval($this->siret)!=0 ){
return true;
}
if ( !empty($this->id) && intval($this->id)!=0 ){
return true;
}
return false;
break;
case 'groupe':
case 'etablissements':
case 'evenements':
case 'corporama':
if ( !empty($this->siret) && intval($this->siret)!=0 ){
return true;
}
return false;
break;
case 'liens':
if ( !empty($this->lienref) ){
return true;
}
if ( !empty($this->siret) && intval($this->siret)!=0 ){
return true;
}
return false;
break;
}
break;
case 'dirigeant':
if ( !empty($this->siret) && intval($this->siret)!=0 ){
return true;
}
return false;
break;
case 'finance':
if ( !empty($this->siret) && intval($this->siret)!=0 ){
return true;
}
return false;
break;
case 'juridique':
if ( !empty($this->siret) && intval($this->siret)!=0 ){
return true;
}
switch($action){
case 'annonces':
if ( !empty($this->id) && intval($this->id)!=0 ){
return true;
}
break;
}
return false;
break;
case 'evaluation':
switch($action){
case 'indiscore':
$siretSiege = substr($this->siret, 0,9);
if (!empty($siretSiege) && intval($siretSiege)!=0 ){
return true;
}
return false;
break;
}
if ( !empty($this->siret) && intval($this->siret)!=0 ){
return true;
}
return false;
break;
case 'pieces':
if ( !empty($this->siret) && intval($this->siret)!=0 ){
return true;
}
return false;
break;
case 'saisie':
switch($action){
case 'fiche':
if ( !empty($this->id) && intval($this->id)!=0 ){
return true;
}
break;
case 'lienetranger':
return true;
break;
}
return false;
break;
case 'aide':
return true;
break;
}
}
/**
* Définit les paramètres nécessaire pour les liens des pages
* @param string $controller
* @param string $action
*/
protected function setParams($controller, $action)
{
$params = array();
/**
* Réinitialiser la route pour avoir toujours les liens du menu propre
*/
$params['route'] = null;
switch($controller)
{
case 'recherche':
switch($action){
case 'ipari':
if (!empty($this->siret)) { $params['siret'] = $this->siret; }
break;
}
break;
case 'evaluation':
if (!empty($this->siret)) { $params['siret'] = substr($this->siret,0,9); }
if (!empty($this->id)) { $params['id'] = $this->id; }
break;
case 'identite':
switch($action){
case 'liens':
if (!empty($this->lienref)) { $params['lienref'] = $this->lienref; }
if (!empty($this->siret)) { $params['siret'] = $this->siret; }
if (!empty($this->id)) { $params['id'] = $this->id; }
break;
default:
if (!empty($this->siret)) { $params['siret'] = $this->siret; }
if (!empty($this->id)) { $params['id'] = $this->id; }
break;
}
break;
case 'pieces':
case 'finance':
case 'dirigeant':
if (!empty($this->siret)) { $params['siret'] = $this->siret; }
if (!empty($this->id)) { $params['id'] = $this->id; }
break;
case 'juridique':
if (!empty($this->siret)) { $params['siret'] = $this->siret; }
if (!empty($this->id)) { $params['id'] = $this->id; }
break;
case 'saisie':
switch($action){
case 'fiche':
if (!empty($this->siret)) { $params['siret'] = $this->siret; }
if (!empty($this->id)) { $params['id'] = $this->id; }
break;
}
break;
case 'bdf':
if (!empty($this->siret)) {
$params['siret'] = $this->siret;
}
break;
}
return $params;
}
}