source: sandbox/2.4.1-3/prototype/api/config.php @ 6399

Revision 6399, 2.7 KB checked in by cristiano, 12 years ago (diff)

Ticket #2768 - Verificação de permissão na pasta config REST API

RevLine 
[5341]1<?php
2
[6357]3namespace prototype\api;
4
[5341]5class Config
6{
[6367]7        static $register;
8        static $sessionStarted;
[5341]9 
[6367]10        static function module($config , $module = false)
11        {
12                //Todo: registrar na nova api o currentapp
13                if(!$module)
14                                $module =  $_SESSION['flags']['currentapp'];
[5399]15 
[6367]16                if( !isset( $_SESSION['config'][$module] ) || !isset( $_SESSION['config'][$module][$config] ))
17                                $_SESSION['config'][$module] = parse_ini_file( ROOTPATH."/config/$module.ini", true );
[5341]18       
[6367]19                return isset($_SESSION['config'][$module][$config]) ? $_SESSION['config'][$module][$config] : false;
[5341]20     
[6367]21        }
[5341]22   
[6367]23        static function me($config)
24        {
[5399]25       
[6367]26                return isset($_SESSION['wallet']['user'][$config]) ? $_SESSION['wallet']['user'][$config] : false;
27        }
[5399]28   
[6367]29        static function service( $service , $config )
30        {
31                if( !isset( $_SESSION['wallet'][$service] ) || !isset( $_SESSION['wallet'][$service][$config] ))
32                                $_SESSION['wallet'][$service] = parse_ini_file( ROOTPATH."/config/$service.srv", true );
[5415]33       
[6367]34                return (isset($_SESSION['wallet'][$service][$config])) ? $_SESSION['wallet'][$service][$config] : false;
35        }
[5399]36   
[6367]37        static function get( $concept , $config = false , $module = false )
38        {
39                $load = parse_ini_file( ROOTPATH."/config/$concept.ini", true );
[5437]40       
[6367]41                if($config === false) return $load;
[5437]42       
[6367]43                return (isset($load[$config])) ? $load[$config] : false;
44        }
[5437]45   
[6367]46        static function regSet( $name , $value)
47        {
48                self::$register[$name] = $value;
49        }
50        static function regGet ($name )
51        {
52                return (isset(self::$register[$name]) ? self::$register[$name] : false );
53        }
[5341]54
[6367]55        static function init( )
56        {
57   
58                if( !defined( 'ROOTPATH' ) )
59                                define( 'ROOTPATH', dirname(__FILE__).'/..' );
[5399]60       
[6367]61                if ( isset( $_COOKIE[ 'sessionid' ] ) )
62                {
63                                session_id( $_COOKIE[ 'sessionid' ] );
64                                $GLOBALS['phpgw']->session->sessionid = $_COOKIE[ 'sessionid' ];
65                }
[5399]66               
67        if( !self::$sessionStarted )
[6367]68                                self::$sessionStarted = session_start();
[5399]69               
[6367]70        }
71   
72        public static function writeIniFile($assoc_arr, $path, $has_sections)
73        {
[6399]74                $content = ''; 
[6367]75                self::_writeIniFile($content, $assoc_arr, $has_sections);
[6399]76                if( file_put_contents($path, $content) === false)
[6367]77                {
78                        trigger_error("Permission failure when trying to write in the file: $path ", E_USER_WARNING);
[6399]79                        return false;
80                }
81                return true;
[6367]82        }
83
84        private static function _writeIniFile(&$content, $assoc_arr, $has_sections)
85        {
86                foreach ($assoc_arr as $key => $val)
87                {
88                        if (is_array($val))
89                        {
90                                if($has_sections)
91                                {
92                                        $content .= "[$key]\n";
93                                        self::_writeIniFile(&$content, $val, false);
94                                }
95                                else                           
96                                        foreach($val as $iKey => $iVal)
97                                        {
98                                                if (is_int($iKey))
99                                                        $content .= $key ."[] = $iVal\n";
100                                                else
101                                                        $content .= $key ."[$iKey] = $iVal\n";
102                                        }
103                        }
104                        else
105                                $content .= "$key = $val\n";
106                }
107        }
108
[5341]109}
110
[6367]111        Config::init();
[5399]112       
113
[5341]114?>
Note: See TracBrowser for help on using the repository browser.