-
Notifications
You must be signed in to change notification settings - Fork 205
/
image_management.php
184 lines (163 loc) · 6.27 KB
/
image_management.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
<?php
require_once('db.inc.php');
require_once('facilities.inc.php');
$subheader=__("OpenDCIM Image File Management");
$timestamp=time();
$salt=md5('unique_salt' . $timestamp);
if(isset($_POST['dir'])){
$array=array();
$path=(in_array($_POST['dir'],array($config->ParameterArray["picturepath"],$config->ParameterArray["drawingpath"])))?$_POST['dir']:'';
if(is_dir($path)){
$dir=scandir($path);
foreach($dir as $i => $f){
if(is_file($path.DIRECTORY_SEPARATOR.$f) && ($f!='.' && $f!='..' && $f!='P_ERROR.png')){
$mimeType=mime_content_type($path.DIRECTORY_SEPARATOR.$f);
if(preg_match('/^image/i', $mimeType)){
$array[$path][]=$f;
}
}
}
}
header('Content-Type: application/json');
echo json_encode($array);
exit;
}
?>
<!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><?php echo __("openDCIM Data Center Inventory");?></title>
<link rel="stylesheet" href="css/inventory.php" type="text/css">
<link rel="stylesheet" href="css/jquery-ui.css" type="text/css">
<link rel="stylesheet" href="css/uploadifive.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>
<script type="text/javascript" src="scripts/jquery.uploadifive.js"></script>
<script type="text/javascript" src="scripts/common.js?v<?php echo filemtime('scripts/common.js');?>"></script>
</head>
<body>
<?php include( 'header.inc.php' ); ?>
<div class="page imagem">
<?php
include( 'sidebar.inc.php' );
?>
<div class="main">
<?php
// Only show the device pictures if they have global write access or site admin.
if($person->SiteAdmin || $person->WriteAccess){
?>
<div class="center"><div>
<div class="heading"><?php print __("Device Pictures");?></div>
<input type="file" name="dev_file_upload" data-thumbdiv="pictures" data-dir="<?php echo $config->ParameterArray["picturepath"]; ?>" id="dev_file_upload" />
<div id="rebuild_image_cache" class="uploadifive-button" style="height: 30px; line-height: 30px; overflow: hidden; width: auto;display: inline-block; cursor: default;"><?php print __("Rebuild Image Cache");?></div>
<script type="text/javascript">
$(function() {
$('#dev_file_upload').uploadifive({
'formData' : {
'timestamp' : '<?php echo $timestamp;?>',
'token' : '<?php echo $salt;?>',
'dir' : 'pictures'
},
'removeCompleted' : true,
'checkScript' : 'scripts/check-exists.php',
'uploadScript' : 'scripts/uploadifive.php',
'onUploadComplete' : function(file, data) {
data=$.parseJSON(data);
if(data.status=='1'){
// something broke, deal with it
var toast=$('<div>').addClass('uploadifive-queue-item complete');
var close=$('<a>').addClass('close').text('X').click(function(){$(this).parent('div').remove();});
var span=$('<span>');
var error=$('<div>').addClass('border').css({'margin-top': '2px', 'padding': '3px'}).text(data.msg);
toast.append(close);
toast.append($('<div>').append(span.clone().addClass('filename').text(file.name)).append(span.clone().addClass('fileinfo').text(' - Error')));
toast.append(error);
$('#uploadifive-'+this[0].id+'-queue').append(toast);
}else{
// fuck yeah, reload the thumbnails
reload($(this).data('dir'),$(this).data('thumbdiv'));
}
}
});
});
$(document).ready(function(){
$('#uploadifive-dev_file_upload')[0].style.display="inline-block";
$('#uploadifive-dev_file_upload-queue').before($('#rebuild_image_cache'));
$('#rebuild_image_cache').on('click', function(){
$('<div>').append($('<iframe>').attr('src','build_image_cache.php').css({'max-width':'600px','max-height':'400px','min-height':'300px','align':'middle'})).attr('title','Rebuild device image cache').dialog({
width: 'auto',
modal: true
});
});
});
</script>
</div><div>
<div class="preview" id="pictures">
</div>
</div></div><!-- END div.center -->
<?php
}
// Only show the site drawings if they have site admin rights.
if($person->SiteAdmin){
?>
<div class="center"><div>
<div class="heading"><?php print __("Infrastructure Drawings");?></div>
<input type="file" name="drawing_file_upload" data-thumbdiv="drawings" data-dir="<?php echo $config->ParameterArray["drawingpath"]; ?>" id="drawing_file_upload" />
</div><div>
<div class="preview" id="drawings">
</div>
<script type="text/javascript">
$(function() {
$('#drawing_file_upload').uploadifive({
'formData' : {
'timestamp' : '<?php echo $timestamp;?>',
'token' : '<?php echo $salt;?>',
'dir' : 'drawings'
},
'removeCompleted' : true,
'checkScript' : 'scripts/check-exists.php',
'uploadScript' : 'scripts/uploadifive.php',
'onUploadComplete' : function(file, data) {
data=$.parseJSON(data);
if(data.status=='1'){
// something broke, deal with it
var toast=$('<div>').addClass('uploadifive-queue-item complete');
var close=$('<a>').addClass('close').text('X').click(function(){$(this).parent('div').remove();});
var span=$('<span>');
var error=$('<div>').addClass('border').css({'margin-top': '2px', 'padding': '3px'}).text(data.msg);
toast.append(close);
toast.append($('<div>').append(span.clone().addClass('filename').text(file.name)).append(span.clone().addClass('fileinfo').text(' - Error')));
toast.append(error);
$('#uploadifive-'+this[0].id+'-queue').append(toast);
}else{
// fuck yeah, reload the thumbnails
reload($(this).data('dir'),$(this).data('thumbdiv'));
}
}
});
});
</script>
</div></div><!-- END div.center -->
<?php echo '<a href="index.php">[ ',__("Return to Main Menu"),' ]</a>'; ?>
<?php } ?>
</div><!-- END div.main -->
</div><!-- END div.page -->
<?php
echo '<div id="delete-confirm" title="'.__("Delete image file?").'" class="hide">
<p><span class="ui-icon ui-icon-alert" style="float:left; margin:0 7px 20px 0;"></span>'.__("This image will be permanently deleted and cannot be recovered. Are you sure?").'</p>
</div>';
?>
<script type="text/javascript">
$('.center input').each(function(){
reload($(this).data('dir'),$(this).data('thumbdiv'));
});
timestamp="<?php echo $timestamp; ?>";
token="<?php echo $salt; ?>";
</script>
</body>
</html>