1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
|
<?php
/*
* Copyright 2005-2016 OCSInventory-NG/OCSInventory-ocsreports contributors.
* See the Contributors file for more details about them.
*
* This file is part of OCSInventory-NG/OCSInventory-ocsreports.
*
* OCSInventory-NG/OCSInventory-ocsreports is free software: you can redistribute
* it and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of the License,
* or (at your option) any later version.
*
* OCSInventory-NG/OCSInventory-ocsreports is distributed in the hope that it
* will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OCSInventory-NG/OCSInventory-ocsreports. if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
if (AJAX) {
parse_str($protectedPost['ocs']['0'], $params);
$protectedPost += $params;
ob_start();
}
$tab_options = $protectedPost;
/*
* Rules for redistribution servers
*/
if ($_SESSION['OCS']["use_redistribution"] == 1) {
require_once('require/function_rules.php');
printEnTete($l->g(673));
echo "<br />";
//only for Super Admin
//DEL RULE
if ($protectedPost['SUP_PROF'] != "") {
delete_rule($protectedPost['SUP_PROF']);
$tab_options['CACHE'] = 'RESET';
}
//ADD new rule
if ($protectedPost['ADD_RULE']) {
add_rule($protectedPost['RULE_NAME'], $protectedPost);
$tab_options['CACHE'] = 'RESET';
}
//modif rule
if ($protectedPost['MODIF_RULE']) {
$name_exist = verify_name($protectedPost['RULE_NAME'], "and rule != " . $protectedPost['OLD_MODIF']);
if ($name_exist == 'NAME_NOT_EXIST') {
delete_rule($protectedPost['OLD_MODIF']);
add_rule($protectedPost['RULE_NAME'], $protectedPost, $protectedPost['OLD_MODIF']);
echo msg_success($l->g(711));
$tab_options['CACHE'] = 'RESET';
} else {
msg_error($l->g(670));
}
}
//form name
$form_name = "rules";
//show all rules
echo open_form($form_name, '', '', 'form-horizontal');
$list_fields = array('ID_RULE' => 'RULE',
'RULE_NAME' => 'RULE_NAME',
'SUP' => 'RULE',
'MODIF' => 'RULE',
);
$table_name = "DOWNLOAD_AFFECT_RULES";
$default_fields = array('ID_RULE' => 'ID_RULE', 'RULE_NAME' => 'RULE_NAME', 'SUP' => 'SUP', 'MODIF' => 'MODIF');
$list_col_cant_del = array('ID_RULE' => 'ID_RULE', 'SUP' => 'SUP', 'MODIF' => 'MODIF');
$sql = prepare_sql_tab($list_fields, array('SUP'));
$sql['SQL'] .= " from download_affect_rules ";
$tab_options['ARG_SQL'] = $sql['ARG'];
$tab_options['form_name'] = $form_name;
$tab_options['table_name'] = $table_name;
$result_exist = ajaxtab_entete_fixe($list_fields, $default_fields, $tab_options, $list_col_cant_del);
//Modif a rule => get this values
if ($protectedPost['MODIF'] != "" && $protectedPost['OLD_MODIF'] != $protectedPost['MODIF']) {
$sql = "select priority,cfield,op,compto,rule_name
from download_affect_rules
where rule='%s'
order by priority";
$arg = $protectedPost['MODIF'];
$res = mysql2_query_secure($sql, $_SESSION['OCS']["readServer"], $arg);
$i = 1;
while ($val = mysqli_fetch_array($res)) {
$protectedPost['PRIORITE_' . $i] = $val['priority'];
$protectedPost['CFIELD_' . $i] = $val['cfield'];
$protectedPost['OP_' . $i] = $val['op'];
$protectedPost['COMPTO_' . $i] = $val['compto'];
$protectedPost['RULE_NAME'] = $val['rule_name'];
$i++;
}
$protectedPost['NUM_RULES'] = $i - 2;
}
?>
<div class="row rowMarginTop30">
<div class="col-md-12">
<?php
//new rule
if ($protectedPost['NEW_RULE'] || $protectedPost['NUM_RULES'] || $protectedPost['MODIF'] != "") {
if ($protectedPost['MODIF'] != "") {
$modif = $protectedPost['MODIF'];
} else {
$modif = $protectedPost['OLD_MODIF'];
}
$numero = $protectedPost['NUM_RULES'] + 1;
formGroup('text', 'RULE_NAME', $l->g(674), '', '', $protectedPost['RULE_NAME']);
$i = 1;
while ($i < $numero + 1) {
if ($i == 1) {
$entete = 'YES';
} else {
$entete = 'NO';
}
fields_conditions_rules($i, $entete);
$i++;
}
?>
</div>
</div>
<div class="row">
<div class="col-md-12">
<a class="btn btn-success" onclick='return pag(<?php echo $numero ?>,"NUM_RULES","rules")'><?php echo $l->g(682); ?></a>
<a class="btn btn-danger" onclick='return pag("RAZ","RAZ","rules");'><?php echo $l->g(113) ?></a>
</div>
</div>
<div class="row rowMarginTop30">
<div class="col-md-12">
<?php
if ($protectedPost['MODIF'] != "" || $protectedPost['OLD_MODIF'] != "") {
echo "<input type='submit' value='" . $l->g(625) . "' name='MODIF_RULE' onclick='return check();' class='btn btn-success'>";
} else {
echo "<input type='submit' value='" . $l->g(683) . "' name='ADD_RULE' onclick='return check();' class='btn btn-success'>";
}
echo "<input type='hidden' id='NUM_RULES' name='NUM_RULES' value=''>";
echo "<input type='hidden' id='RAZ' name='RAZ' value=''>";
echo "<input type='hidden' id='OLD_MODIF' name='OLD_MODIF' value='" . $modif . "'>";
} else {
echo "<input type='submit' class='btn' value='" . $l->g(685) . "' name='NEW_RULE'>";
}
?>
</div>
</div>
<?php
echo close_form();
} else {
msg_info($l->g(1182));
}
if (AJAX) {
ob_end_clean();
tab_req($list_fields, $default_fields, $list_col_cant_del, $sql['SQL'], $tab_options);
}
?>
|