docker.plugin.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <?php
  2. //Déclaration d'un item de menu dans le menu principal
  3. function docker_menu(&$menuItems){
  4. global $_,$myUser;
  5. if(!$myUser->can('docker','read')) return;
  6. $menuItems[] = array(
  7. 'sort'=>3,
  8. 'url'=>'index.php?module=docker',
  9. 'label'=>'Docker',
  10. 'icon'=> 'fab fa-docker',
  11. 'color'=> '#3498db'
  12. );
  13. }
  14. //Cette fonction va generer une page quand on clique sur docker dans menu
  15. function docker_page(){
  16. global $_,$myUser;
  17. if(!isset($_['module']) || $_['module'] !='docker') return;
  18. $page = !isset($_['page']) ? 'list.docker.environment' : $_['page'];
  19. $page = str_replace('..','',$page);
  20. $file = __DIR__.SLASH.'page.'.$page.'.php';
  21. if(!file_exists($file)) throw new Exception("Page ".$page." inexistante");
  22. require_once($file);
  23. }
  24. //Fonction executée lors de l'activation du plugin
  25. function docker_install($id){
  26. if($id != 'fr.core.docker') return;
  27. Entity::install(__DIR__);
  28. global $conf;
  29. $conf->get('docker_ovh_host','https://eu.api.ovh.com');
  30. $conf->get('docker_git_host','http://git.idleman.fr/api/v4');
  31. $conf->get('docker_sophos_host','https://firewall.idleman.fr');
  32. $conf->get('docker_sophos_port','4444');
  33. }
  34. //Fonction executée lors de la désactivation du plugin
  35. function docker_uninstall($id){
  36. if($id != 'fr.core.docker') return;
  37. Entity::uninstall(__DIR__);
  38. }
  39. //Déclaration des sections de droits du plugin
  40. Right::register("docker",array('label'=>"Gestion des droits sur le plugin docker"));
  41. //cette fonction comprends toutes les actions du plugin qui ne nécessitent pas de vue html
  42. function docker_action(){
  43. require_once(__DIR__.SLASH.'action.php');
  44. }
  45. //Déclaration du menu de réglages
  46. function docker_menu_setting(&$settingMenu){
  47. global $_, $myUser;
  48. if(!$myUser->can('docker','configure')) return;
  49. $settingMenu[]= array(
  50. 'sort' =>1,
  51. 'url' => 'setting.php?section=global.docker',
  52. 'icon' => 'fas fa-angle-right',
  53. 'label' => 'Docker'
  54. );
  55. }
  56. //Déclaration des pages de réglages
  57. function docker_content_setting(){
  58. global $_;
  59. if(file_exists(__DIR__.SLASH.'setting.'.$_['section'].'.php'))
  60. require_once(__DIR__.SLASH.'setting.'.$_['section'].'.php');
  61. }
  62. //Déclaration des settings de base
  63. //Types possibles : text,select ( + "values"=> array('1'=>'Val 1'),password,checkbox. Un simple string définit une catégorie.
  64. Configuration::setting('docker',array(
  65. "Utm Sophos",
  66. 'docker_sophos_host' => array("label"=>"Hôte","type"=>"string"),
  67. 'docker_sophos_port' => array("label"=>"Port","type"=>"number"),
  68. 'docker_sophos_login' => array("label"=>"Identifiant","type"=>"string"),
  69. 'docker_sophos_password' => array("label"=>"Mot de passe","type"=>"string"),
  70. //'docker_sophos_vhost_ref' => array("label"=>"Référence du real webserver vers lequel pointer","placeholder"=>'ex : REF_RevBacLindockerw',"type"=>"string"), //REF_RevFroDockeWordpMulti
  71. "Ovh",
  72. 'docker_ovh_host' => array("label"=>"Endpoint ovh",'placeholder'=>'ex : https://eu.api.ovh.com',"type"=>"string"),
  73. 'docker_ovh_application_key' => array("label"=>"Clé publique d'application","type"=>"string"),
  74. 'docker_ovh_application_secret' => array("label"=>"Clé privée d'application","type"=>"password"),
  75. 'docker_ovh_consumer_key' => array("label"=>"Clé consommateur","type"=>"password"),
  76. "GitLab",
  77. 'docker_git_host' => array("label"=>"Hote gitlab","placeholder"=>'ex: http://git.idleman.fr/api/v4',"type"=>"string"),
  78. 'docker_git_token' => array("label"=>"Clé privée d'application","type"=>"password"),
  79. ));
  80. require_once(__DIR__.SLASH.'action.php');
  81. //Déclation des assets
  82. Plugin::addCss("/css/main.css");
  83. Plugin::addJs("/js/main.js");
  84. //Mapping hook / fonctions
  85. Plugin::addHook("install", "docker_install");
  86. Plugin::addHook("uninstall", "docker_uninstall");
  87. Plugin::addHook("menu_main", "docker_menu");
  88. Plugin::addHook("page", "docker_page");
  89. Plugin::addHook("action", "docker_action");
  90. Plugin::addHook("menu_setting", "docker_menu_setting");
  91. Plugin::addHook("content_setting", "docker_content_setting");
  92. ?>