-
Notifications
You must be signed in to change notification settings - Fork 205
/
bulk_network.php
380 lines (318 loc) · 14.1 KB
/
bulk_network.php
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
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
<?php
require_once "db.inc.php";
require_once "facilities.inc.php";
if(!$person->BulkOperations){
header('Location: '.redirect());
exit;
}
// Uncomment these if you need/want to set a title in the header
// $header=__("");
$subheader=__("Bulk Network Importer");
$content = "";
if ( isset( $_FILES['inputfile'] )) {
//
// File name has been specified, so we're uploading a new file. Need to simply make sure
// that it's at least a valid file that PHPExcel can open and that we can move it to
// the /tmp directory. We'll set the filename as a session variable so that we can keep track
// of it more simply as we move from stage to stage.
//
$target_dir = '/tmp/';
$targetFile = $target_dir . basename($_FILES['inputfile']['name']);
try {
$inFileType = \PhpOffice\PhpSpreadsheet\IOFactory::identify($_FILES['inputfile']['tmp_name']);
$objReader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($inFileType);
$objXL = $objReader->load($_FILES['inputfile']['tmp_name']);
} catch (Exception $e) {
die("Error opening file: ".$e->getMessage());
}
move_uploaded_file( $_FILES['inputfile']['tmp_name'], $targetFile );
$_SESSION['inputfile'] = $targetFile;
echo "<meta http-equiv='refresh' content='0; url=" . $_SERVER['SCRIPT_NAME'] . "?stage=headers'>";
exit;
} elseif ( isset( $_REQUEST['stage'] ) && $_REQUEST['stage'] == 'headers' ) {
//
// File has been moved, so now we're ready to map out the columns to fields for processing.
// If you don't want to have to map every time, you can simply make your spreadsheet columns
// appear in the same order as they show up on this page. That way you can just click right
// on to the next stage, which is validation.
//
// Make sure that we can still access the file
$targetFile = $_SESSION['inputfile'];
try {
$inFileType = \PhpOffice\PhpSpreadsheet\IOFactory::identify($targetFile);
$objReader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($inFileType);
$objXL = $objReader->load($targetFile);
} catch (Exception $e) {
die("Error opening file: ".$e->getMessage());
}
// We're good, so now get the top row so that we can map it out to fields
$content = "<h3>" . __("Pick the appropriate column header (line 1) for each field name listed below." ) . "</h3>";
$content .= "<h3>" . __("Mouse over each field for help text.") . "</h3>";
$content .= '<form method="POST">
<input type="hidden" name="stage" value="process">
<div class="table">';
// Find out how many columns are in the spreadsheet so that we can load them as possible values for the fields
// and we don't really care how many rows there are at this point.
$sheet = $objXL->getSheet(0);
$highestColumn = $sheet->getHighestColumn();
$headerList = $sheet->rangeToArray('A1:' . $highestColumn . '1' );
$fieldList = array( "None" );
foreach( $headerList[0] as $fName ) {
$fieldList[] = $fName;
}
$fieldNum = 1;
foreach ( array( "SourceDeviceID"=>"The key value to indicate the existing device the connection originates from.", "SourcePort"=>"The name of the existing port for the origination of the connection.", "TargetDeviceID"=>"The key value to indicate the existing device the connection terminates at.", "TargetPort"=>"The name of the existing port for the termination of the connection.", "MediaType"=>"Optional, but if specified the name must match an existing Media Type in the openDCIM installation.", "ColorCode"=>"Optional, but if specified the name must match an existing Color name in the openDCIM installation.", "Notes"=>"Optional, free form text to add to the Notes field for the connection." ) as $fieldName=>$helpText ) {
$content .= '<div>
<div><span title="' . __($helpText) . '">' . __($fieldName) . '</span>: </div><div><select name="' . $fieldName . '">';
for ( $n = 0; $n < sizeof( $fieldList ); $n++ ) {
if ( $n == $fieldNum )
$selected = "SELECTED";
else
$selected = "";
$content .= "<option value=$n $selected>$fieldList[$n]</option>\n";
}
$content .= '</select>
</div>
</div>';
$fieldNum++;
}
$content .= "<div><div><span title=\"" . __("The type of key field that is being used to match devices in openDCIM. Only one type may be specified per file.") . "\">" . __("KeyField") . "</span></div><div><select name='KeyField'>";
foreach( array( "Label", "Hostname", "AssetTag", "SerialNo", "DeviceID" ) as $option ) {
$content .= "<option val=\"$option\">$option</option>";
}
$content .= "</select></div></div>";
$content .= "<div><div></div><div><input type='submit' value='" . __("Process") . "' name='submit'></div></div>";
$content .= '</form>
</div>';
} elseif ( isset($_REQUEST['stage']) && $_REQUEST['stage'] == 'process' ) {
// This is much simpler than the bulk device import, so there is no Validate stage
// so instead we just ask for what the key value fields are and then try to make matches.
// Any that we can't find a unique match for get printed out as errors.
//
$targetFile = $_SESSION['inputfile'];
try {
$inFileType = \PhpOffice\PhpSpreadsheet\IOFactory::identify($targetFile);
$objReader = \PhpOffice\PhpSpreadsheet\IOFactory::createReader($inFileType);
$objXL = $objReader->load($targetFile);
} catch (Exception $e) {
die("Error opening file: ".$e->getMessage());
}
// Start off with the assumption that we have zero processing errors
$errors = false;
$sheet = $objXL->getSheet(0);
$highestRow = $sheet->getHighestRow();
// Make some quick arrays of the MediaType and ColorCoding tables - they are small and can easily fit in memory
$st = $dbh->prepare( "select * from fac_ColorCoding" );
$st->execute();
$colors = array();
while ( $row = $st->fetch() ) {
$colors[strtoupper($row['Name'])] = $row['ColorID'];
}
$st = $dbh->prepare( "select * from fac_MediaTypes" );
$st->execute();
$media = array();
while ( $row = $st->fetch() ) {
$media[strtoupper($row['MediaType'])] = $row['MediaID'];
}
// Also make sure we start with an empty string to display
$content = "";
$fields = array( "SourceDeviceID", "SourcePort", "TargetDeviceID", "TargetPort", "MediaType", "ColorCode", "Notes" );
for ( $n = 2; $n <= $highestRow; $n++ ) {
$rowError = false;
$devPort = new DevicePorts();
// Load up the $row[] array with the values according to the mapping supplied by the user
foreach( $fields as $fname ) {
$addr = chr( 64 + $_REQUEST[$fname]);
$row[$fname] = sanitize($sheet->getCell( $addr . $n )->getValue());
}
switch( $_REQUEST["KeyField"] ) {
case "Hostname":
$idField = "PrimaryIP";
break;
case "AssetTag":
$idField = "AssetTag";
break;
case "Label":
$idField = "Label";
break;
case "SerialNo":
$idField = "SerialNo";
break;
case "DeviceID":
$idField = "DeviceID";
break;
}
/*
*
* Section for looking up the SourceDeviceID and setting the true DeviceID in the devPort variable
*
*/
$st = $dbh->prepare( "select count(DeviceID) as TotalMatches, DeviceID from fac_Device where ucase(" . $idField . ")=ucase(:SourceDeviceID)" );
$st->execute( array( ":SourceDeviceID"=>$row["SourceDeviceID"] ));
if ( ! $val = $st->fetch() ) {
$info = $dbh->errorInfo();
error_log( "PDO Error: {$info[2]}");
}
if ( $val["TotalMatches"] == 1 ) {
$devPort->DeviceID = $val["DeviceID"];
} else {
$errors = true;
$content .= "<li>Source Device: $idField = " . $row["SourceDeviceID"] . " is not unique or not found. Total = " . $val["TotalMatches"];
}
/*
*
* Section for looking up the TargetDeviceID and setting the true DeviceID in the devPort variable
*
*/
$st = $dbh->prepare( "select count(DeviceID) as TotalMatches, DeviceID from fac_Device where ucase(" . $idField . ")=ucase(:TargetDeviceID)" );
$st->execute( array( ":TargetDeviceID"=>$row["TargetDeviceID"] ));
if ( ! $val = $st->fetch() ) {
$info = $dbh->errorInfo();
error_log( "PDO Error: {$info[2]}");
}
if ( $val["TotalMatches"] == 1 ) {
$devPort->ConnectedDeviceID = $val["DeviceID"];
} else {
$errors = true;
$content .= "<li>Target Device: $idField = " . $row["TargetDeviceID"] . " is not unique or not found. Total = " . $val["TotalMatches"];
}
/*
*
* Section for looking up the SourcePort by name and setting the true PortNumber in the devPort variable
*
*/
// if label specified in the input import file is appended with '|rear' ,
// then the source port is a rear port ( negative port id), so we adapt query
// to find it
if ( strpos($row["SourcePort"],'|rear') !== false ){
$rearPortOpt=" PortNumber < 0";
$sourcePortLabel=explode('|',$row["SourcePort"])[0];
} else {
$rearPortOpt=" PortNumber > 0";
$sourcePortLabel=$row["SourcePort"];
}
$st = $dbh->prepare( "select count(*) as TotalMatches, Label, PortNumber from fac_Ports where DeviceID=:DeviceID and Label=:SourcePort and ".$rearPortOpt." ;" );
$st->execute( array( ":DeviceID"=>$devPort->DeviceID,
":SourcePort"=>$sourcePortLabel
)
);
if ( ! $val = $st->fetch() ) {
$info = $dbh->errorInfo();
error_log( "PDO Error: {$info[2]}");
}
if ( $val["TotalMatches"] == 1 ) {
$devPort->PortNumber = $val["PortNumber"];
$devPort->Label = $val["Label"];
} else {
$errors = true;
$content .= "<li>Source Port: " . $sourcePortLabel . " is not unique or not found. Total = " . $val["TotalMatches"];
}
/*
*
* Section for looking up the TargetPort by name and setting the true PortNumber in the devPort variable
* Limits to positive port numbers so that you can match Patch Panel frontside ports
*
*/
// if label specified in the input import file is appended with '|rear' ,
// then the source port is a rear port ( negative port id), so we adapt query
// to find it
if ( strpos($row["TargetPort"],'|rear') !== false ){
$rearPortOpt=" PortNumber < 0";
$targetPortLabel=explode('|',$row["TargetPort"])[0];
} else {
$rearPortOpt=" PortNumber > 0";
$targetPortLabel=$row["TargetPort"];
}
$st = $dbh->prepare( "select count(*) as TotalMatches, Label, PortNumber from fac_Ports where DeviceID=:DeviceID and Label=:TargetPort and ".$rearPortOpt .";" );
$st->execute( array( ":DeviceID"=>$devPort->ConnectedDeviceID, ":TargetPort"=>$targetPortLabel));
if ( ! $val = $st->fetch() ) {
$info = $dbh->errorInfo();
error_log( "PDO Error: {$info[2]}");
}
if ( $val["TotalMatches"] == 1 ) {
$devPort->ConnectedPort = $val["PortNumber"];
} else {
$errors = true;
$content .= "<li>Target Port: " . $row["TargetDeviceID"] . "::" . $targetPortLabel . " is not unique or not found. Total = " . $val["TotalMatches"];
}
// Do not fail if the Color Code or Media Type are not defined for the site.
if ( $row["MediaType"] != "" ) {
$devPort->MediaID = @$media[strtoupper($row["MediaType"])];
}
if ( $row["ColorCode"] != "" ) {
$devPort->ColorID = @$colors[strtoupper($row["ColorCode"])];
}
$devPort->Notes = $row["Notes"];
if ( ! $rowError ) {
if ( ! $devPort->updatePort() ) {
$errors = true;
}
} else {
$errors = true;
}
if ( $rowError ) {
$content .= "<li><strong>Error making port connection on Row $n of the spreadsheet.</strong>";
}
}
if ( ! $errors ) {
$content = __("All records imported successfully.") . "<ul>" . $content . "</ul>";
} else {
$content = __("At least one error was encountered processing the file. Please see below.") . "<ul>" . $content . "</ul>";
}
} else {
//
// No parameters were passed with the URL, so this is the top level, where
// we need to ask for the user to specify a file to upload.
//
$content = '<form method="POST" ENCTYPE="multipart/form-data">';
$content .= '<div class="table">
<div>
<div>' . __("Select file to upload:") . '
<input type="file" name="inputfile" id="inputfile">
</div>
</div>
<div>
<div>
<input type="submit" value="Upload" name="submit">
</div>
</div>
</div>
</form>
</div>';
}
//
// Render the page with the main section being whatever has been loaded into the
// variable $content - every stage spills out to here other than the file upload
//
?>
<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>openDCIM</title>
<link rel="stylesheet" href="css/inventory.php" type="text/css">
<link rel="stylesheet" href="css/jquery-ui.css" type="text/css">
<!--[if lt IE 9]>
<link rel="stylesheet" href="css/ie.css" type="text/css" />
<![endif]-->
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/jquery-ui.min.js"></script>
</head>
<body>
<?php include( 'header.inc.php' ); ?>
<div class="page index">
<?php
include( 'sidebar.inc.php' );
?>
<div class="main">
<div class="center"><div>
<?php
echo $content;
?>
<!-- CONTENT GOES HERE -->
</div></div>
</div><!-- END div.main -->
</div><!-- END div.page -->
</body>
</html>