123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369 |
- <?php
- /*
- @nom: Plugin
- @auteur: Valentin CARRUESCO (valentin.carruesco@sys1.fr)
- @description: Classe de gestion des plugins au travers de l'application
- */
- class Plugin{
- const FOLDER = '/plugins';
- protected $name,$author,$mail,$link,$licence,$path,$description,$version,$state,$type;
- function __construct(){
- }
- public static function includeAll(){
- $pluginFiles = Plugin::getFiles(true);
- if(is_array($pluginFiles)) {
- foreach($pluginFiles as $pluginFile) {
- //Inclusion du coeur de plugin
- include $pluginFile;
- //Gestion des css du plugin en fonction du thème actif
- $cssTheme = glob('../'.dirname($pluginFile).'/*/'.DEFAULT_THEME.'.css');
- $cssDefault = glob('../'.dirname($pluginFile).'/*/default.css');
- if(isset($cssTheme[0])){
- $GLOBALS['hooks']['css_files'][] = Functions::relativePath(str_replace('\\','/',dirname(__FILE__)),str_replace('\\','/',$cssTheme[0]));
- }else if(isset($cssDefault[0])){
- $GLOBALS['hooks']['css_files'][] = Functions::relativePath(str_replace('\\','/',dirname(__FILE__)),str_replace('\\','/',$cssDefault[0]));
- }
- }
- }
- }
- private static function getStates(){
- $stateFile = dirname(dirname(__FILE__)).Plugin::FOLDER.'/plugins.states.json';
- if(!file_exists($stateFile)) touch($stateFile);
- return json_decode(file_get_contents($stateFile),true);
- }
- private static function setStates($states){
- $stateFile = dirname(dirname(__FILE__)).Plugin::FOLDER.'/plugins.states.json';
- file_put_contents($stateFile,json_encode($states));
- }
-
- private static function getObject($pluginFile){
- $plugin = new Plugin();
- $fileLines = file_get_contents($pluginFile);
- if(preg_match("#@author\s(.+)\s\<#", $fileLines, $match))
- $plugin->setAuthor(trim($match[1]));
-
- if(preg_match("#@author\s(.+)\s\<([a-z\@\.A-Z\s\-]+)\>#", $fileLines, $match))
- $plugin->setMail(strtolower($match[2]));
-
- if(preg_match("#@name\s(.+)[\r\n]#", $fileLines, $match))
- $plugin->setName($match[1]);
-
- if(preg_match("#@licence\s(.+)[\r\n]#", $fileLines, $match))
- $plugin->setLicence($match[1]);
-
- if(preg_match("#@version\s(.+)[\r\n]#", $fileLines, $match))
- $plugin->setVersion($match[1]);
-
- if(preg_match("#@link\s(.+)[\r\n]#", $fileLines, $match))
- $plugin->setLink(trim($match[1]));
- if(preg_match("#@type\s(.+)[\r\n]#", $fileLines, $match))
- $plugin->setType(trim($match[1]));
-
- if(preg_match("#@description\s(.+)[\r\n]#", $fileLines, $match))
- $plugin->setDescription(trim($match[1]));
-
- if(Plugin::loadState($pluginFile) || $plugin->getType()=='component'){
- $plugin->setState(1);
- }else{
- $plugin->setState(0);
- }
- $plugin->setPath($pluginFile);
- return $plugin;
- }
- public static function getAll(){
- $pluginFiles = Plugin::getFiles();
- $plugins = array();
- if(is_array($pluginFiles)) {
- foreach($pluginFiles as $pluginFile) {
- $plugin = Plugin::getObject($pluginFile);
- $plugins[]=$plugin;
- }
- }
- usort($plugins, "Plugin::sortPlugin");
- return $plugins;
- }
- public static function getFiles($onlyActivated=false){
- $enabled = $disabled = array();
- $files = glob(dirname(dirname(__FILE__)). Plugin::FOLDER .'/*/*.plugin*.php');
- $plugins = array();
- foreach($files as $file){
- $plugins[] = Plugin::getObject($file);
- }
- usort($plugins, "Plugin::sortPlugin");
- foreach($plugins as $plugin){
- if($plugin->getState() || $plugin->getType() =='component'){
- $enabled [] = $plugin->getPath();
- }else{
- $disabled [] = $plugin->getPath();
- }
- }
- if(!$onlyActivated)$enabled = array_merge($enabled,$disabled);
- return $enabled;
- }
-
- public static function addHook($hookName, $functionName) {
- $GLOBALS['hooks'][$hookName][] = $functionName;
- }
-
- public static function callCss(){
- $return='';
- if(isset($GLOBALS['hooks']['css_files'])) {
- foreach($GLOBALS['hooks']['css_files'] as $css_file) {
- $return .='<link href="'.$css_file.'" rel="stylesheet">'."\n";
- }
- }
- return $return;
- }
-
- public static function addLink($rel, $link) {
- $GLOBALS['hooks']['head_link'][] = array("rel"=>$rel, "link"=>$link);
- }
- public static function callLink(){
- $return='';
- if(isset($GLOBALS['hooks']['head_link'])) {
- foreach($GLOBALS['hooks']['head_link'] as $head_link) {
- $return .='<link href="'.$head_link['link'].'" rel="'.$head_link['rel'].'" />'."\n";
- }
- }
- return $return;
- }
- public static function path(){
- $bt = debug_backtrace();
- return Functions::relativePath(str_replace('\\','/',dirname(dirname(__FILE__))),str_replace('\\','/',dirname($bt[0]['file']))).'/';
- }
- public static function addCss($css,$force = false) {
- $bt = debug_backtrace();
- $module = isset($_GET['module'])?$_GET['module']:'';
- $module = isset($_GET['section']) && $module==''?$_GET['section']:$module;
- $module = isset($_GET['block']) && $module==''?$_GET['block']:$module;
- $path = Functions::relativePath(str_replace('\\','/',dirname(dirname(__FILE__))),str_replace('\\','/',dirname($bt[0]['file']).$css));
- if(strcasecmp(basename(dirname($bt[0]['file'])), $module) == 0 || $force)
- $GLOBALS['hooks']['css_files'][] = $path;
- }
-
- public static function addJs($js,$force = false){
- global $_;
- $bt = debug_backtrace();
-
- $module = isset($_GET['module'])?$_GET['module']:'';
- $module = isset($_GET['section']) && $module==''?$_GET['section']:$module;
- $module = isset($_GET['block']) && $module==''?$_GET['block']:$module;
- $path = Functions::relativePath(str_replace('\\','/',dirname(dirname(__FILE__))),str_replace('\\','/',dirname($bt[0]['file']).$js));
- if(strcasecmp(basename(dirname($bt[0]['file'])), $module) == 0 || $force)
- $GLOBALS['hooks']['js_files'][] = $path;
- }
- public static function callJs(){
- $return='';
- if(isset($GLOBALS['hooks']['js_files'])) {
- foreach($GLOBALS['hooks']['js_files'] as $js_file) {
- $return .='<script type="text/javascript" src="'.$js_file.'"></script>'."\n";
- }
- }
- return $return;
- }
- public static function callHook($hookName, $hookArguments) {
- //echo '<div style="display:inline;background-color:#CC47CB;padding:3px;border:5px solid #9F1A9E;border-radius:5px;color:#ffffff;font-size:15px;">'.$hookName.'</div>';
- if(isset($GLOBALS['hooks'][$hookName])) {
-
- foreach($GLOBALS['hooks'][$hookName] as $functionName) {
- call_user_func_array($functionName, $hookArguments);
- }
- }
- }
- //Définis si un plugin existe et si il est activé ou non
- public static function exist($pluginName){
- $exist = false;
- $file = glob(dirname(dirname(__FILE__)). Plugin::FOLDER .'/'.$pluginName.'/*.plugin*.php');
- if(count($file)!=0){
- $plugin = Plugin::getObject($file[0]);
- if($plugin->getState() || $plugin->getType() =='component'){
- $exist = true;
- }
- }
- return $exist;
- }
-
-
- public static function loadState($plugin){
- $states = Plugin::getStates();
- return (isset($states[$plugin])?$states[$plugin]:false);
- }
- public static function changeState($plugin,$state){
- $states = Plugin::getStates();
- $states[$plugin] = $state;
- Plugin::setStates($states);
- }
- public static function enabled($pluginUid){
- $plugins = Plugin::getAll();
- foreach($plugins as $plugin){
- if($plugin->getUid()==$pluginUid){
- Plugin::changeState($plugin->getPath(),true);
- $install = dirname($plugin->getPath()).'/install';
- if(file_exists($install)) {
- require_once($install);
- }else if (file_exists($install.'.php')){
- require_once($install.'.php');
- }
- }
- }
- }
- public static function disabled($pluginUid){
- $plugins = Plugin::getAll();
- foreach($plugins as $plugin){
- if($plugin->getUid()==$pluginUid){
- Plugin::changeState($plugin->getPath(),false);
- $uninstall = dirname($plugin->getPath()).'/uninstall';
- if(file_exists($uninstall)){
- require_once($uninstall);
- }else if (file_exists($uninstall.'.php')){
- require_once($uninstall.'.php');
- }
- }
- }
-
- }
- function getUid(){
- $pathInfo = explode('/',$this->getPath());
- $count = count($pathInfo);
- $name = $pathInfo[$count-1];
- return $pathInfo[$count -2].'-'.substr($name,0,strpos($name,'.'));
- }
- static function sortPlugin($a, $b){
- if ($a->getName() == $b->getName())
- $result = 0;
- if($a->getName() < $b->getName()){
- $result = -1;
- } else{
- $result = 1;
- }
- if($b->getType() != $a->getType()){
- if($a->getType() == 'component'){
- $result = -1;
- }else{
- $result = 1;
- }
- }
- return $result;
- }
- function getName(){
- return $this->name;
- }
- function setName($name){
- $this->name = $name;
- }
- function setAuthor($author){
- $this->author = $author;
- }
- function getAuthor(){
- return $this->author;
- }
- function getMail(){
- return $this->mail;
- }
- function setMail($mail){
- $this->mail = $mail;
- }
- function getLicence(){
- return $this->licence;
- }
- function setLicence($licence){
- $this->licence = $licence;
- }
- function getPath(){
- return $this->path;
- }
- function setPath($path){
- $this->path = $path;
- }
- function getDescription(){
- return $this->description;
- }
- function setDescription($description){
- $this->description = $description;
- }
- function getLink(){
- return $this->link;
- }
- function setLink($link){
- $this->link = $link;
- }
- function getVersion(){
- return $this->version;
- }
- function setVersion($version){
- $this->version = $version;
- }
- function getState(){
- return $this->state;
- }
- function setState($state){
- $this->state = $state;
- }
- function getType(){
- return $this->type;
- }
- function setType($type){
- $this->type = $type;
- }
- }
- ?>
|