dolibarr  20.0.0-beta
perms.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2009 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005-2013 Regis Houssin <regis.houssin@inodbox.com>
5  * Copyright (C) 2011 Herve Prot <herve.prot@symeos.com>
6  * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 3 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program. If not, see <https://www.gnu.org/licenses/>.
20  */
21 
28 // Load Dolibarr environment
29 require '../main.inc.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
32 
33 // Load translation files required by the page
34 $langs->loadLangs(array('admin', 'users', 'other'));
35 
36 $action = GETPOST('action', 'aZ09');
37 
38 $entity = $conf->entity;
39 
40 if (!$user->admin) {
42 }
43 
44 
45 /*
46  * Actions
47  */
48 
49 if ($action == 'add') {
50  $sql = "UPDATE ".MAIN_DB_PREFIX."rights_def SET bydefault=1";
51  $sql .= " WHERE id = ".GETPOSTINT("pid");
52  $sql .= " AND entity = ".$conf->entity;
53  $db->query($sql);
54 }
55 
56 if ($action == 'remove') {
57  $sql = "UPDATE ".MAIN_DB_PREFIX."rights_def SET bydefault=0";
58  $sql .= " WHERE id = ".GETPOSTINT('pid');
59  $sql .= " AND entity = ".$conf->entity;
60  $db->query($sql);
61 }
62 
63 
64 /*
65  * View
66  */
67 
68 $form = new Form($db);
69 
70 $wikihelp = 'EN:Setup_Security|FR:Paramétrage_Sécurité|ES:Configuración_Seguridad';
71 
72 llxHeader('', $langs->trans("DefaultRights"), $wikihelp);
73 
74 print load_fiche_titre($langs->trans("SecuritySetup"), '', 'title_setup');
75 
76 print '<span class="opacitymedium">'.$langs->trans("DefaultRightsDesc")." ".$langs->trans("OnlyActiveElementsAreShown")."</span><br><br>\n";
77 
78 $db->begin();
79 
80 // Search all modules with permission and reload permissions def.
81 $modules = array();
82 $modulesdir = dolGetModulesDirs();
83 
84 foreach ($modulesdir as $dir) {
85  $handle = @opendir(dol_osencode($dir));
86  if (is_resource($handle)) {
87  while (($file = readdir($handle)) !== false) {
88  if (is_readable($dir.$file) && substr($file, 0, 3) == 'mod' && substr($file, dol_strlen($file) - 10) == '.class.php') {
89  $modName = substr($file, 0, dol_strlen($file) - 10);
90  if ($modName) {
91  include_once $dir.$file;
92  $objMod = new $modName($db);
93 
94  // Load all lang files of module
95  if (isset($objMod->langfiles) && is_array($objMod->langfiles)) {
96  foreach ($objMod->langfiles as $domain) {
97  $langs->load($domain);
98  }
99  }
100  // Load all permissions
101  if ($objMod->rights_class) {
102  $ret = $objMod->insert_permissions(0, $entity);
103  $modules[$objMod->rights_class] = $objMod;
104  //print "modules[".$objMod->rights_class."]=$objMod;";
105  }
106  }
107  }
108  }
109  }
110 }
111 
112 $db->commit();
113 '@phan-var-force DolibarrModules[] $modules';
114 
115 $head = security_prepare_head();
116 
117 print dol_get_fiche_head($head, 'default', '', -1);
118 
119 
120 // Show warning about external users
121 print info_admin(showModulesExludedForExternal($modules)).'<br>'."\n";
122 
123 print "\n";
124 print '<div class="div-table-responsive-no-min">';
125 print '<table class="noborder centpercent">';
126 
127 print '<tr class="liste_titre">';
128 print '<td>'.$langs->trans("Module").'</td>';
129 print '<td class="center">'.$langs->trans("Default").'</td>';
130 print '<td class="center" width="24">&nbsp;</td>';
131 print '<td>'.$langs->trans("Permissions").'</td>';
132 if ($user->admin) {
133  print '<td class="right"></td>';
134 }
135 print '</tr>'."\n";
136 
137 //print "xx".$conf->global->MAIN_USE_ADVANCED_PERMS;
138 $sql = "SELECT r.id, r.libelle as label, r.module, r.perms, r.subperms, r.module_position, r.bydefault";
139 $sql .= " FROM ".MAIN_DB_PREFIX."rights_def as r";
140 $sql .= " WHERE r.libelle NOT LIKE 'tou%'"; // On ignore droits "tous"
141 $sql .= " AND r.entity = ".((int) $entity);
142 if (!getDolGlobalString('MAIN_USE_ADVANCED_PERMS')) {
143  $sql .= " AND r.perms NOT LIKE '%_advance'"; // Hide advanced perms if option is not enabled
144 }
145 $sql .= " ORDER BY r.family_position, r.module_position, r.module, r.id";
146 
147 $result = $db->query($sql);
148 if ($result) {
149  $num = $db->num_rows($result);
150  $i = 0;
151  $oldmod = '';
152 
153  while ($i < $num) {
154  $obj = $db->fetch_object($result);
155 
156  // If line is for a module that does not exist anymore (absent of includes/module), we ignore it
157  if (empty($modules[$obj->module])) {
158  $i++;
159  continue;
160  }
161 
162  $objMod = $modules[$obj->module];
163 
164  // Save field module_position in database if value is wrong
165  if (empty($obj->module_position) || (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $obj->module_position < 100000)) {
166  if (is_object($modules[$obj->module]) && ($modules[$obj->module]->module_position > 0)) {
167  // TODO Define familyposition
168  //$familyposition = $modules[$obj->module]->family_position;
169  $familyposition = 0;
170 
171  $newmoduleposition = $modules[$obj->module]->module_position;
172 
173  // Correct $newmoduleposition position for external modules
174  $objMod = $modules[$obj->module];
175  if (is_object($objMod) && $objMod->isCoreOrExternalModule() == 'external' && $newmoduleposition < 100000) {
176  $newmoduleposition += 100000;
177  }
178 
179  $sqlupdate = 'UPDATE '.MAIN_DB_PREFIX."rights_def SET module_position = ".((int) $newmoduleposition).",";
180  $sqlupdate .= " family_position = ".((int) $familyposition);
181  $sqlupdate .= " WHERE module_position = ".((int) $obj->module_position)." AND module = '".$db->escape($obj->module)."'";
182  $db->query($sqlupdate);
183  }
184  }
185 
186  // Check if permission we found is inside a module definition. If not, we discard it.
187  $found = false;
188  foreach ($modules[$obj->module]->rights as $key => $val) {
189  if ($val[4] == $obj->perms && (empty($val[5]) || $val[5] == $obj->subperms)) {
190  $found = true;
191  break;
192  }
193  }
194  if (!$found) {
195  $i++;
196  continue;
197  }
198 
199  // Break found, it's a new module to catch
200  if (isset($obj->module) && ($oldmod != $obj->module)) {
201  $oldmod = $obj->module;
202 
203  // Break detected, we get objMod
204  $objMod = $modules[$obj->module];
205  $picto = ($objMod->picto ? $objMod->picto : 'generic');
206 
207  // Show break line
208  print '<tr class="oddeven trforbreak">';
209  print '<td class="maxwidthonsmartphone tdoverflowmax200" title="'.dol_escape_htmltag($objMod->getName()).'">';
210  print img_object('', $picto, 'class="pictoobjectwidth paddingright"').' '.$objMod->getName();
211  print '<a name="'.$objMod->getName().'"></a>';
212  print '</td>';
213  print '<td>&nbsp;</td>';
214  print '<td>&nbsp;</td>';
215  print '<td>&nbsp;</td>';
216  // Permission id
217  if ($user->admin) {
218  print '<td class="right"></td>';
219  }
220  print '</tr>'."\n";
221  }
222 
223  print '<!-- '.$obj->module.'->'.$obj->perms.($obj->subperms ? '->'.$obj->subperms : '').' -->'."\n";
224  print '<tr class="oddeven">';
225 
226  // Picto and label of module
227  print '<td class="maxwidthonsmartphone tdoverflowmax200">';
228  //print img_object('', $picto, 'class="pictoobjectwidth"').' '.$objMod->getName();
229  print '</td>';
230 
231  // Tick
232  if ($obj->bydefault == 1) {
233  print '<td class="center">';
234  print '<a class="reposition" href="perms.php?pid='.$obj->id.'&action=remove&token='.newToken().'">';
235  //print img_edit_remove();
236  print img_picto('', 'switch_on');
237  print '</a>';
238  print '</td>';
239  print '<td class="center">';
240  //print img_picto($langs->trans("Active"), 'tick');
241  print '</td>';
242  } else {
243  print '<td class="center">';
244  print '<a class="reposition" href="perms.php?pid='.$obj->id.'&action=add&token='.newToken().'">';
245  //print img_edit_add();
246  print img_picto('', 'switch_off');
247  print '</a>';
248  print '</td>';
249  print '<td class="center">';
250  print '&nbsp;';
251  print '</td>';
252  }
253 
254  // Permission and tick
255  $permlabel = (getDolGlobalString('MAIN_USE_ADVANCED_PERMS') && ($langs->trans("PermissionAdvanced".$obj->id) != "PermissionAdvanced".$obj->id) ? $langs->trans("PermissionAdvanced".$obj->id) : (($langs->trans("Permission".$obj->id) != "Permission".$obj->id) ? $langs->trans("Permission".$obj->id) : $langs->trans($obj->label)));
256  print '<td>';
257  print $permlabel;
258  if ($langs->trans("Permission".$obj->id.'b') != "Permission".$obj->id.'b') {
259  print '<br><span class="opacitymedium">'.$langs->trans("Permission".$obj->id.'b').'</span>';
260  }
261  if ($langs->trans("Permission".$obj->id.'c') != "Permission".$obj->id.'c') {
262  print '<br><span class="opacitymedium">'.$langs->trans("Permission".$obj->id.'c').'</span>';
263  }
264  if (getDolGlobalString('MAIN_USE_ADVANCED_PERMS')) {
265  if (preg_match('/_advance$/', $obj->perms)) {
266  print ' <span class="opacitymedium">('.$langs->trans("AdvancedModeOnly").')</span>';
267  }
268  }
269  print '</td>';
270 
271  // Permission id
272  if ($user->admin) {
273  print '<td class="right">';
274  $htmltext = $langs->trans("ID").': '.$obj->id;
275  $htmltext .= '<br>'.$langs->trans("Permission").': user->hasRight(\''.dol_escape_htmltag($obj->module).'\', \''.dol_escape_htmltag($obj->perms).'\''.($obj->subperms ? ', \''.dol_escape_htmltag($obj->subperms).'\'' : '').')';
276  print $form->textwithpicto('', $htmltext);
277  //print '<span class="opacitymedium">'.$obj->id.'</span>';
278  print '</td>';
279  }
280 
281  print '</tr>'."\n";
282 
283  $i++;
284  }
285 } else {
286  dol_print_error($db);
287 }
288 print '</table>';
289 print '</div>';
290 
291 $parameters = array();
292 $reshook = $hookmanager->executeHooks('insertExtraFooter', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
293 if ($reshook < 0) {
294  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
295 }
296 
297 print dol_get_fiche_end();
298 
299 // End of page
300 llxFooter();
301 $db->close();
if($user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition: card.php:58
security_prepare_head()
Prepare array with list of tabs.
Definition: admin.lib.php:818
showModulesExludedForExternal($modules)
Show array with constants to edit.
Definition: admin.lib.php:1890
if(GETPOSTISSET('MAIN_AGENDA_XCAL_EXPORTKEY')) if(GETPOSTISSET('MAIN_AGENDA_EXPORT_PAST_DELAY')) if(GETPOSTISSET('MAIN_AGENDA_EXPORT_CACHE')) if(GETPOSTISSET('AGENDA_EXPORT_FIX_TZ')) if($actionsave) if(!isset($conf->global->MAIN_AGENDA_EXPORT_PAST_DELAY)) $wikihelp
View.
Definition: agenda_xcal.php:90
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:55
llxFooter()
Empty footer.
Definition: wrapper.php:69
Class to manage generation of HTML components Only common components must be here.
if(isModEnabled('invoice') && $user->hasRight('facture', 'lire')) if((isModEnabled('fournisseur') &&!getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD') && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') && $user->hasRight('don', 'lire')) if(isModEnabled('tax') && $user->hasRight('tax', 'charges', 'lire')) if(isModEnabled('invoice') &&isModEnabled('order') && $user->hasRight("commande", "lire") &&!getDolGlobalString('WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER')) $sql
Social contributions to pay.
Definition: index.php:745
dolGetModulesDirs($subdir='')
Return list of directories that contain modules.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_osencode($str)
Return a string encoded into OS filesystem encoding.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='')
Show information in HTML for admin users or standard users.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.