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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361
|
<?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();
}
require_once('require/function_telediff.php');
require_once('require/function_computers.php');
$form_name = 'packlist';
//show or not stats on the table
$show_stats = true;
PrintEnTete($l->g(465));
echo open_form($form_name, '', '', 'form-horizontal');
if ($_SESSION['OCS']['profile']->getRestriction('TELEDIFF_ACTIVATE') == 'NO') {
$cant_active = false;
} else {
$cant_active = true;
}
if ($_SESSION['OCS']['profile']->getRestriction('GUI') == 'YES') {
$restrict_computers = computer_list_by_tag('', 'ARRAY');
if ($restrict_computers == "ERROR") {
msg_error($l->g(893));
require_once(FOOTER_HTML);
die();
}
}
$tab_options = $protectedPost;
// tab to switch on deleted packages
$data_on['AVAILABLE_PACKET'] = $l->g(2123);
$data_on['DELETED_PACKET'] = $l->g(2124);
if ($protectedPost['onglet'] != $protectedPost['old_onglet']) {
unset($protectedPost['MODIF']);
}
show_tabs($data_on,$form_name,"onglet",true);
echo '<div class="col col-md-10" >';
if ($protectedPost['onglet'] == "AVAILABLE_PACKET") {
//only for profils who can activate packet
if (!$cant_active) {
if ($protectedPost["SUP_PROF"] != "") {
del_pack($protectedPost["SUP_PROF"]);
$tab_options['CACHE'] = 'RESET';
}
//delete more than one packet
if ($protectedPost['del_check'] != '') {
foreach (explode(",", $protectedPost['del_check']) as $key) {
del_pack($key);
$tab_options['CACHE'] = 'RESET';
}
}
}
if (!$protectedPost['SHOW_SELECT']) {
$protectedPost['SHOW_SELECT'] = 'download';
$tab_options['SHOW_SELECT'] = 'download';
}
?>
<div class="row">
<div class="col col-md-4 col-xs-offset-0 col-md-offset-4">
<div class="form-group">
<!-- <label class="control-label col-sm-4" for="download>"></label> -->
<div class="col-sm-8">
<?php echo show_modif(array('download' => $l->g(990), 'server' => $l->g(991)), 'SHOW_SELECT', 2, $form_name); ?>
</div>
</div>
</div>
</div>
<?php
//only for profils who can activate packet
if (!$cant_active) {
//where packets are created?
if ($protectedPost['SHOW_SELECT'] == 'download') {
$config_document_root = "DOWNLOAD_PACK_DIR";
} else {
$config_document_root = "DOWNLOAD_REP_CREAT";
}
$info_document_root = look_config_default_values($config_document_root);
$document_root = $info_document_root["tvalue"][$config_document_root];
//if no directory in base, take $_SERVER["DOCUMENT_ROOT"]
if (!isset($document_root)) {
$document_root = VARLIB_DIR . '/download';
if ($protectedPost['SHOW_SELECT'] == "server") {
$document_root .= "server/";
}
} else {
//can we have the zip?
$document_root .= "/download";
}
if (is_readable($document_root) && is_dir($document_root)) {
$dir = @opendir($document_root);
while ($f = readdir($dir)) {
if (is_numeric($f)) {
$tab_options['SHOW_ONLY']['ZIP'][$f] = $f;
}
}
if (!$tab_options['SHOW_ONLY']['ZIP']) {
$tab_options['SHOW_ONLY']['ZIP'] = 'NULL';
}
} else {
$tab_options['SHOW_ONLY']['ZIP'] = 'NULL';
}
} else {
$tab_options['SHOW_ONLY']['ZIP'] = 'NULL';
}
//only for profils who can activate packet
if (!$cant_active) {
//javascript for manual activate
echo "<script language='javascript'>
function manualActive()
{
var msg = '';
var lien = '';
if( isNaN(document.getElementById('manualActive').value) || document.getElementById('manualActive').value=='' )
msg = '" . $l->g(473) . "';
if( document.getElementById('manualActive').value.length != 10 )
msg = '" . $l->g(474) . "';
if (msg != ''){
document.getElementById('manualActive').style.backgroundColor = 'RED';
alert (msg);
return false;
}else{
lien='index.php?" . PAG_INDEX . "=" . $pages_refs['ms_tele_popup_active'] . "&head=1&active='+ document.getElementById('manualActive').value;
window.open(lien,\"active\",\"location=0,status=0,scrollbars=0,menubar=0,resizable=0,width=550,height=350\");
}
}
</script>";
}
$list_fields = array($l->g(475) => 'FILEID',
$l->g(593) => 'CAST(from_unixtime(FILEID) AS DATETIME)',
'SHOWACTIVE' => 'NAME',
$l->g(440) => 'PRIORITY',
$l->g(464) => 'FRAGMENTS',
$l->g(462) . " KB" => 'round(SIZE/1024,2)',
$l->g(25) => 'OSNAME',
$l->g(53) => 'COMMENT');
$tab_options['REPLACE_COLUMN_KEY'][$l->g(593)] = 'CREADATE';
$tab_options['REPLACE_COLUMN_KEY'][$l->g(462) . " KB"] = 'WEIGHT';
if ($show_stats) {
$list_fields['NO_NOTIF'] = 'NO_NOTIF';
$list_fields['NOTI'] = 'NOTI';
$list_fields['SUCC'] = 'SUCC';
$list_fields['ERR_'] = 'ERR_';
//can't sort on this cols
$tab_options['NO_TRI']['NOTI'] = 1;
$tab_options['NO_TRI']['NO_NOTIF'] = 1;
$tab_options['NO_TRI']['SUCC'] = 1;
$tab_options['NO_TRI']['ERR_'] = 1;
}
//only for profils who can activate packet
if (!$cant_active) {
$list_fields['ZIP'] = 'FILEID';
$list_fields['ACTIVE'] = 'FILEID';
$list_fields['SUP'] = 'FILEID';
$list_fields['CHECK'] = 'FILEID';
$tab_options['LBL_POPUP']['SUP'] = 'NAME';
}
$list_fields['STAT'] = 'FILEID';
$table_name = "LIST_PACK";
$default_fields = array('Timestamp' => 'Timestamp',
$l->g(593) => $l->g(593),
'SHOWACTIVE' => 'SHOWACTIVE',
'CHECK' => 'CHECK', 'NOTI' => 'NOTI', 'SUCC' => 'SUCC',
'ERR_' => 'ERR_', 'SUP' => 'SUP', 'ACTIVE' => 'ACTIVE', 'STAT' => 'STAT', 'ZIP' => 'ZIP');
$list_col_cant_del = array('SHOWACTIVE' => 'SHOWACTIVE', 'SUP' => 'SUP', 'ACTIVE' => 'ACTIVE', 'STAT' => 'STAT', 'ZIP' => 'ZIP', 'CHECK' => 'CHECK');
$querypack = prepare_sql_tab($list_fields, array('SELECT', 'ZIP', 'STAT', 'ACTIVE', 'SUP', 'CHECK', 'NO_NOTIF', 'NOTI', 'SUCC', 'ERR_'));
$querypack['SQL'] .= " from download_available ";
if ($protectedPost['SHOW_SELECT'] == 'download') {
$querypack['SQL'] .= " where (comment not like '%s' or comment is null or comment = '')";
} else {
$querypack['SQL'] .= " where comment like '%s'";
}
$querypack['SQL'] .= " and DELETED = 0";
array_push($querypack['ARG'], "[PACK REDISTRIBUTION%");
$arg_count = array("[PACK REDISTRIBUTION%");
if ($_SESSION['OCS']['profile']->getRestriction('TELEDIFF_VISIBLE', 'YES') == "YES") {
$querypack['SQL'] .= " and comment not like '%s'";
array_push($querypack['ARG'], "%[VISIBLE=0]%");
array_push($arg_count, "%[VISIBLE=0]%");
}
$tab_options['ARG_SQL'] = $querypack['ARG'];
$tab_options['ARG_SQL_COUNT'] = $arg_count;
$tab_options['LBL'] = array('ZIP' => "Archives",
'STAT' => $l->g(574),
'ACTIVE' => $l->g(431),
'SHOWACTIVE' => $l->g(49),
'NO_NOTIF' => $l->g(432),
'NOTI' => $l->g(1000),
'SUCC' => $l->g(572),
'ERR_' => $l->g(344));
$tab_options['REQUEST']['STAT'] = 'select distinct fileid AS FIRST from devices d,download_enable de where d.IVALUE=de.ID ';
if ($restrict_computers) {
$tab_options['REQUEST']['STAT'] .= 'and d.hardware_id in ';
$temp = mysql2_prepare($tab_options['REQUEST']['STAT'], array(), $restrict_computers);
$tab_options['ARG']['STAT'] = $temp['ARG'];
$tab_options['REQUEST']['STAT'] = $temp['SQL'];
unset($temp);
}
$tab_options['FIELD']['STAT'] = 'FILEID';
$tab_options['REQUEST']['SHOWACTIVE'] = 'select distinct fileid AS FIRST from download_enable';
$tab_options['FIELD']['SHOWACTIVE'] = 'FILEID';
//on force le tri desc pour l'ordre des paquets
if (!$protectedPost['sens_' . $table_name]) {
$protectedPost['sens_' . $table_name] = 'DESC';
}
if ($show_stats) {
$sql_data_fixe = "select count(*) as %s,de.FILEID
from devices d,download_enable de
where d.IVALUE=de.ID and d.name='DOWNLOAD'
and d.tvalue %s '%s' ";
$sql_data_fixe_bis = "select count(*) as %s,de.FILEID
from devices d,download_enable de
where d.IVALUE=de.ID and d.name='DOWNLOAD'
and hardware_id NOT IN (SELECT id FROM hardware WHERE deviceid='_SYSTEMGROUP_' or deviceid='_DOWNLOADGROUP_') and d.tvalue %s ";
$sql_data_fixe_ter = "select count(*) as %s,de.FILEID
from devices d,download_enable de
where d.IVALUE=de.ID and d.name='DOWNLOAD'
and (d.tvalue %s '%s' or d.tvalue %s '%s') ";
$_SESSION['OCS']['ARG_DATA_FIXE'][$table_name]['ERR_'] = array('ERR_', 'LIKE', 'ERR_%', 'LIKE', 'EXIT_CODE%');
$_SESSION['OCS']['ARG_DATA_FIXE'][$table_name]['SUCC'] = array('SUCC', 'LIKE', 'SUCCESS%');
$_SESSION['OCS']['ARG_DATA_FIXE'][$table_name]['NOTI'] = array('NOTI', 'LIKE', 'NOTI%');
$_SESSION['OCS']['ARG_DATA_FIXE'][$table_name]['NO_NOTIF'] = array('NO_NOTIF', 'IS NULL');
if ($restrict_computers) {
$sql_data_fixe .= " and d.hardware_id in ";
$sql_data_fixe_bis .= " and d.hardware_id in ";
$sql_data_fixe_ter .= " and d.hardware_id in ";
$temp = mysql2_prepare($sql_data_fixe, array(), $restrict_computers);
$temp_bis = mysql2_prepare($sql_data_fixe_bis, array(), $restrict_computers);
$temp_ter = mysql2_prepare($sql_data_fixe_ter, array(), $restrict_computers);
}
foreach ($_SESSION['OCS']['ARG_DATA_FIXE'][$table_name] as $key => $value) {
if ($restrict_computers) {
if ($key != 'NO_NOTIF' && $key != 'ERR_') {
$_SESSION['OCS']['ARG_DATA_FIXE'][$table_name][$key] = array_merge($_SESSION['OCS']['ARG_DATA_FIXE'][$table_name][$key], $temp['ARG']);
$_SESSION['OCS']['SQL_DATA_FIXE'][$table_name][$key] = $temp['SQL'] . " group by FILEID";
} elseif ($key == 'NO_NOTIF') {
$_SESSION['OCS']['ARG_DATA_FIXE'][$table_name][$key] = array_merge($_SESSION['OCS']['ARG_DATA_FIXE'][$table_name][$key], $temp_bis['ARG']);
$_SESSION['OCS']['SQL_DATA_FIXE'][$table_name][$key] = $temp_bis['SQL'] . " group by FILEID";
} elseif ($key == 'ERR_') {
$_SESSION['OCS']['ARG_DATA_FIXE'][$table_name][$key] = array_merge($_SESSION['OCS']['ARG_DATA_FIXE'][$table_name][$key], $temp_ter['ARG']);
$_SESSION['OCS']['SQL_DATA_FIXE'][$table_name][$key] = $temp_ter['SQL'] . " group by FILEID";
}
} else {
if ($key != 'NO_NOTIF' && $key != 'ERR_') {
$_SESSION['OCS']['SQL_DATA_FIXE'][$table_name][$key] = $sql_data_fixe . " group by FILEID";
} elseif ($key == 'NO_NOTIF') {
$_SESSION['OCS']['SQL_DATA_FIXE'][$table_name][$key] = $sql_data_fixe_bis . " group by FILEID";
} elseif ($key == 'ERR_') {
$_SESSION['OCS']['SQL_DATA_FIXE'][$table_name][$key] = $sql_data_fixe_ter . " group by FILEID";
}
}
}
}
$tab_options['COLOR']['ERR_'] = 'RED';
$tab_options['COLOR']['SUCC'] = 'GREEN';
$tab_options['COLOR']['NOTI'] = 'GREY';
$tab_options['COLOR']['NO_NOTIF'] = 'BLACK';
$tab_options['FILTRE'] = array('FILEID' => 'Timestamp', 'NAME' => $l->g(49));
$tab_options['TYPE']['ZIP'] = $protectedPost['SHOW_SELECT'];
$tab_options['FIELD_REPLACE_VALUE_ALL_TIME'] = 'FILEID';
$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);
if (!$cant_active){
del_selection($form_name);
}
?>
<div class="row rowMarginTop30">
<div class="col-md-6 col-md-offset-3">
<?php if ($protectedPost['SHOW_SELECT'] == 'download'): ?>
<div class="form-group">
<label class="control-label col-sm-4" for="manualActive"><?php echo $l->g(476); ?></label>
<div class="col-sm-8">
<div class="input-group">
<input type="text" name="manualActive" id="manualActive" size="" maxlength="10" value="<?php echo isset($protectedPost['manualActive']); ?>" class="form-control">
</div>
</div>
</div>
<a href="#" class="btn btn-success" onclick="manualActive()"><?php echo $l->g(13); ?></a>
<?php endif; ?>
</div>
</div>
<?php
//only for profils who can activate packet
}elseif ( $protectedPost['onglet'] == "DELETED_PACKET") {
if (isset($protectedPost['SUP_PROF']) and $protectedPost['SUP_PROF'] != ''){
remove_packet($protectedPost['SUP_PROF']);
$tab_options['CACHE'] = 'RESET';
}
// Show deleted packets
$table_name = $form_name;
$tab_options = $protectedPost;
$tab_options['form_name'] = $form_name;
$tab_options['table_name'] = $table_name;
$list_fields = array(
$l->g(475) => 'FILEID',
$l->g(49) => 'NAME',
$l->g(25) => 'OSNAME',
$l->g(53) => 'COMMENT',
'SUP' => 'FILEID');
$tab_options['LBL_POPUP']['SUP'] = 'NAME';
$tab_options['LBL']['SUP'] = $l->g(122);
$list_col_cant_del = $list_fields;
$default_fields = $list_fields;
$querypack['SQL'] = "SELECT * FROM download_available WHERE DELETED = 1";
$result_exist = ajaxtab_entete_fixe($list_fields, $default_fields, $tab_options, $list_col_cant_del);
}
echo close_form();
echo "</div>";
if (AJAX) {
ob_end_clean();
tab_req($list_fields, $default_fields, $list_col_cant_del, $querypack['SQL'], $tab_options);
}
?>
|