source: trunk/expressoAdmin1_2/inc/class.bosectors.inc.php @ 5133

Revision 5133, 5.4 KB checked in by wmerlotto, 12 years ago (diff)

Ticket #2305 - Enviando alteracoes, desenvolvidas internamente na Prognus, do modulo ExpressoAdmin.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1<?php
2        /************************************************************************************\
3        * Expresso Administração                                                                                                     *
4        * by Joao Alfredo Knopik Junior (joao.alfredo@gmail.com, jakjr@celepar.pr.gov.br)        *
5        * -----------------------------------------------------------------------------------*
6        *  This program is free software; you can redistribute it and/or modify it                       *
7        *  under the terms of the GNU General Public License as published by the                         *
8        *  Free Software Foundation; either version 2 of the License, or (at your                        *
9        *  option) any later version.                                                                                                            *
10        \************************************************************************************/
11
12        class bosectors
13        {
14                var $public_functions = array(
15                        'create_sector' => True,
16                        'save_sector'   => True,
17                        'delete_sector' => True
18                );
19       
20                var $so;
21                var $functions;
22                var $db_functions;
23       
24                function bosectors()
25                {
26                        $this->so = createobject('expressoAdmin1_2.sosectors');
27                        $this->functions = $this->so->functions;
28                        $this->db_functions = $this->so->db_functions;
29                        $this->group = createobject('expressoAdmin1_2.group');
30                        $this->user = createobject('expressoAdmin1_2.user');
31                }
32
33                function create_sector()
34                {
35                        // Verifica o acesso do gerente
36                        if (!$this->functions->check_acl($_SESSION['phpgw_session']['session_lid'], 'create_sectors'))
37                        {
38                                $return['status'] = false;
39                                $return['msg'] = lang('you do not have access to create sectors') . '.';
40                                return $return;
41                        }
42
43                        // Cria array para incluir no LDAP
44                        $dn = 'ou=' . $_POST['sector'] . ',' . $_POST['context'];                       
45                        $sector_info = array();
46                        $sector_info['ou']                              = $_POST['sector']; 
47                        $sector_info['objectClass'][0]  = 'top';
48                        $sector_info['objectClass'][1]  = 'organizationalUnit';
49
50                        $systemName = $GLOBALS['phpgw_info']['server']['system_name'];
51                        if ($systemName != '')
52                                $sector_info['phpgwSystem'] = strtolower($systemName);
53                       
54                        if ($_POST['sector_visible'])
55                        {
56                                $sector_info['objectClass'][2]  = 'phpgwAccount';
57                                $sector_info['phpgwaccountvisible'] = '-1';
58                        }
59                       
60                        // Chama funcao para escrever no OpenLDAP, case de erro, volta com msg de erro.
61                        if (!$this->so->write_ldap($dn, $sector_info))
62                        {
63                                $_POST['error_messages'] = lang('Error in OpenLDAP recording.');
64                                ExecMethod('expressoAdmin1_2.uisectors.add_sector');
65                                return false;
66                        }
67                       
68                        //Escreve no log
69                        $this->db_functions->write_log("created sector", "$dn");
70                       
71                        // Volta para o ListSectors
72                        $url = ($GLOBALS['phpgw']->link('/index.php','menuaction=expressoAdmin1_2.uisectors.list_sectors'));
73                        $GLOBALS['phpgw']->redirect($url);
74                }
75
76        function save_sector()
77                {
78                $context = utf8_encode($_POST['context']);
79
80                        $sector_info = $this->so->get_info($context);
81                       
82                        if (($_POST['sector_visible'] == 'on') && ($sector_info['phpgwaccountvisible'] != '-1'))
83                        {
84                                foreach ($sector_info[0]['objectclass'] as $objectClass)
85                                {
86                                        if ($objectClass == 'phpgwAccount')
87                                                $phpgwAccount = true;
88                                        else
89                                                $phpgwAccount = false;
90                                }
91                               
92                                if (!$phpgwAccount)
93                                {
94                                        $ldap_mod_add['objectClass'][] = 'phpgwAccount';
95                                }
96                               
97                                $ldap_mod_add['phpgwaccountvisible'] = '-1';
98                                $this->so->add_attribute($sector_info[0]['dn'], $ldap_mod_add);
99                        }
100                        else
101                        {
102                                $ldap_mod_del['objectClass'] = 'phpgwAccount';
103                                $ldap_mod_del['phpgwaccountvisible'] = array();
104                                $this->so->remove_attribute($sector_info[0]['dn'], $ldap_mod_del);
105                        }
106                       
107                        // Volta para o ListSectors
108                        ExecMethod('expressoAdmin1_2.uisectors.list_sectors');
109                }
110
111                function delete_sector()
112                {
113
114                        // Verifica o acesso do gerente
115                        if (!$this->functions->check_acl($_SESSION['phpgw_session']['session_lid'], 'delete_sectors'))
116                        {
117                                $return['status'] = false;
118                                $return['msg'] = lang('you do not have access to delete sectors') . '.';
119                                return $return;
120                        }
121
122                        $sector_dn = $_POST['dn'];
123                        $manager_context = $_POST['manager_context'];
124
125                        $sector_dn = utf8_encode($sector_dn);
126
127                        $sector_users = $this->so->get_sector_users($sector_dn);
128
129                        for ($i=0; $i<count($sector_users)-1; $i++)
130                        {
131                                //_debug_array($user);
132                                // Pega o UID e os grupos que o usuario fz parte.
133                                $uid = $sector_users[$i]['uid'][0];
134                                $account_id = $sector_users[$i]['uidnumber'][0];
135                                $dn = $sector_users[$i]['dn'];
136                                $this->user->delete(Array('uid' =>  $uid , 'uidnumber' => $account_id));
137                        }
138
139
140                        $sector_groups = $this->so->get_sector_groups($sector_dn);
141                        for ($i=0; $i<count($sector_groups)-1; $i++)
142                        {
143                                $dn = $sector_groups[$i]['dn'];
144                                $gidnumber = $sector_groups[$i]['gidnumber'][0];
145
146                                //Delete group
147                                $this->group->delete(Array('gidnumber' => $gidnumber, 'cn' => $dn));
148                        }
149                       
150                        if ( (!empty($GLOBALS['phpgw_info']['server']['ldap_master_host'])) &&
151                                 (!empty($GLOBALS['phpgw_info']['server']['ldap_master_root_dn'])) &&
152                                 (!empty($GLOBALS['phpgw_info']['server']['ldap_master_root_pw'])) )
153                        {
154                                $connection = $GLOBALS['phpgw']->common->ldapConnect($GLOBALS['phpgw_info']['server']['ldap_master_host'],
155                                                                                                   $GLOBALS['phpgw_info']['server']['ldap_master_root_dn'],
156                                                                                                   $GLOBALS['phpgw_info']['server']['ldap_master_root_pw']);
157                        }
158                        else
159                        {
160                                $connection = $GLOBALS['phpgw']->common->ldapConnect();
161                        }
162                       
163                        $this->so->delete_sector_ldap_recursively($connection, $sector_dn);
164                        ldap_close($connection);
165                       
166                        // Volta para o ListGroups
167                        $url = ($GLOBALS['phpgw']->link('/index.php','menuaction=expressoAdmin1_2.uisectors.list_sectors'));
168                        $GLOBALS['phpgw']->redirect($url);
169                }
170        }
171?>
Note: See TracBrowser for help on using the repository browser.