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
381
382
383
384
385
386
387
388
389
390
391
392
|
<?php
// $Id$
function dwsim_flowsheet_download_user_defined_compound()
{
$proposal_id = arg(3);
$root_path = dwsim_flowsheet_document_path();
$query = db_select('dwsim_flowsheet_proposal');
$query->fields('dwsim_flowsheet_proposal');
$query->condition('id', $proposal_id);
$query->range(0, 1);
$result = $query->execute();
$dwsim_flowsheet_user_compund_data = $result->fetchObject();
$samplecodename = substr($dwsim_flowsheet_user_compund_data->user_defined_compound_filepath, strrpos($dwsim_flowsheet_user_compund_data->user_defined_compound_filepath, '/') + 1);
header('Content-Type: txt/zip');
header('Content-disposition: attachment; filename="' . $samplecodename . '"');
header('Content-Length: ' . filesize($root_path . $dwsim_flowsheet_user_compund_data->directory_name . '/' . $dwsim_flowsheet_user_compund_data->user_defined_compound_filepath));
ob_clean();
readfile($root_path . $dwsim_flowsheet_user_compund_data->directory_name . '/' . $dwsim_flowsheet_user_compund_data->user_defined_compound_filepath);
}
function dwsim_flowsheet_download_abstract() {
$proposal_id = arg(3);
$root_path = dwsim_flowsheet_path();
//var_dump($proposal_id);die;
$query = db_select('dwsim_flowsheet_submitted_abstracts_file');
$query->fields('dwsim_flowsheet_submitted_abstracts_file');
$query->condition('proposal_id', $proposal_id);
$query->condition('filetype', 'A');
$result = $query->execute();
$flowsheet_project_files = $result->fetchObject();
//var_dump($custom_model_project_files);die;
$query1 = db_select('dwsim_flowsheet_proposal');
$query1->fields('dwsim_flowsheet_proposal');
$query1->condition('id', $proposal_id);
$result1 = $query1->execute();
$flowsheet = $result1->fetchObject();
$directory_name = $flowsheet->directory_name;
$samplecodename = $flowsheet_project_files->filename;
ob_clean();
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header("Content-Type: application/pdf");
header('Content-disposition: attachment; filename="' . $samplecodename . '"');
header("Content-Length: " . filesize($root_path . $directory_name . '/' . $samplecodename));
header("Content-Transfer-Encoding: binary");
header("Expires: 0");
header("Pragma: no-cache");
ob_clean();
readfile($root_path . $directory_name . '/' . $samplecodename);
//ob_end_flush();
//ob_clean();
}
function dwsim_flowsheet_download_solution_file()
{
$solution_file_id = arg(3);
$root_path = dwsim_flowsheet_path();
// $solution_files_q = db_query("SELECT * FROM {dwsim_flowsheet_solution_files} WHERE id = %d LIMIT 1", $solution_file_id);
$solution_files_q = db_query("SELECT lmsf.*, lmp.directory_name FROM dwsim_flowsheet_solution_files lmsf JOIN dwsim_flowsheet_solution lms JOIN dwsim_flowsheet_experiment lme JOIN dwsim_flowsheet_proposal lmp WHERE lms.id = lmsf.solution_id AND lme.id = lms.experiment_id AND lmp.id = lme.proposal_id AND lmsf.id = :solution_id LIMIT 1", array(
':solution_id' => $solution_file_id
));
$solution_file_data = $solution_files_q->fetchObject();
header('Content-Type: ' . $solution_file_data->filemime);
//header('Content-Type: application/octet-stram');
header('Content-disposition: attachment; filename="' . str_replace(' ', '_', ($solution_file_data->filename)) . '"');
header('Content-Length: ' . filesize($root_path . $solution_file_data->directory_name . '/' . $solution_file_data->filepath));
readfile($root_path . $solution_file_data->directory_name . '/' . $solution_file_data->filepath);
}
function dwsim_flowsheet_download_dependency_file()
{
$dependency_file_id = arg(3);
$root_path = dwsim_flowsheet_path();
$query = db_select('dwsim_flowsheet_dependency_files');
$query->fields('dwsim_flowsheet_dependency_files');
$query->condition('id', $dependency_file_id);
$query->range(0, 1);
$dependency_files_q = $query->execute();
$dependency_file_data = $dependency_files_q->fetchObject();
header('Content-Type: ' . $dependency_file_data->filemime);
header('Content-disposition: attachment; filename="' . str_replace(' ', '_', ($dependency_file_data->filename)) . '"');
header('Content-Length: ' . filesize($root_path . $dependency_file_data->filepath));
readfile($root_path . $dependency_file_data->filepath);
}
function dwsim_flowsheet_download_solution()
{
$solution_id = arg(3);
$root_path = dwsim_flowsheet_path();
$query = db_select('dwsim_flowsheet_solution');
$query->fields('dwsim_flowsheet_solution');
$query->condition('id', $solution_id);
$solution_q = $query->execute();
$solution_data = $solution_q->fetchObject();
$query = db_select('dwsim_flowsheet_experiment');
$query->fields('dwsim_flowsheet_experiment');
$query->condition('id', $solution_data->experiment_id);
$experiment_q = $query->execute();
$experiment_data = $experiment_q->fetchObject();
$solution_files_q = db_query("SELECT lmsf.*, lmp.directory_name FROM dwsim_flowsheet_solution_files lmsf JOIN dwsim_flowsheet_solution lms JOIN dwsim_flowsheet_experiment lme JOIN dwsim_flowsheet_proposal lmp WHERE lms.id = lmsf.solution_id AND lme.id = lms.experiment_id AND lmp.id = lme.proposal_id AND lmsf.id = :solution_id", array(
':solution_id' => $solution_id
));
$query = db_select('dwsim_flowsheet_solution_dependency');
$query->fields('dwsim_flowsheet_solution_dependency');
$query->condition('solution_id', $solution_id);
$solution_dependency_files_q = $query->execute();
$CODE_PATH = 'CODE' . $solution_data->code_number . '/';
/* zip filename */
$zip_filename = $root_path . 'zip-' . time() . '-' . rand(0, 999999) . '.zip';
/* creating zip archive on the server */
$zip = new ZipArchive;
$zip->open($zip_filename, ZipArchive::CREATE);
while ($solution_files_row = $solution_files_q->fetchObject())
{
$zip->addFile($root_path . $solution_files_row->directory_name . '/' . $solution_files_row->filepath, $CODE_PATH . str_replace(' ', '_', ($solution_files_row->filename)));
}
/* dependency files */
while ($solution_dependency_files_row = $solution_dependency_files_q->fetchObject())
{
$query = db_select('dwsim_flowsheet_dependency_files');
$query->fields('dwsim_flowsheet_dependency_files');
$query->condition('id', $solution_dependency_files_row->dependency_id);
$query->range(0, 1);
$dependency_file_data = $query->execute()->fetchObject();
if ($dependency_file_data)
$zip->addFile($root_path . $dependency_file_data->filepath, $CODE_PATH . 'DEPENDENCIES/' . str_replace(' ', '_', ($dependency_file_data->filename)));
} //$solution_dependency_files_row = $solution_dependency_files_q->fetchObject()
$zip_file_count = $zip->numFiles;
$zip->close();
if ($zip_file_count > 0)
{
/* download zip file */
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename="CODE' . $solution_data->code_number . '.zip"');
header('Content-Length: ' . filesize($zip_filename));
ob_clean();
//flush();
readfile($zip_filename);
unlink($zip_filename);
} //$zip_file_count > 0
else
{
drupal_set_message("There are no files in this solutions to download", 'error');
drupal_goto('lab-migration/lab-migration-run');
}
}
function dwsim_flowsheet_download_experiment()
{
$experiment_id = (int) arg(3);
$root_path = dwsim_flowsheet_path();
/* get solution data */
$query = db_select('dwsim_flowsheet_experiment');
$query->fields('dwsim_flowsheet_experiment');
$query->condition('id', $experiment_id);
$experiment_q = $query->execute();
$experiment_data = $experiment_q->fetchObject();
$EXP_PATH = 'EXP' . $experiment_data->number . '/';
/* zip filename */
$zip_filename = $root_path . 'zip-' . time() . '-' . rand(0, 999999) . '.zip';
/* creating zip archive on the server */
$zip = new ZipArchive;
$zip->open($zip_filename, ZipArchive::CREATE);
$query = db_select('dwsim_flowsheet_solution');
$query->fields('dwsim_flowsheet_solution');
$query->condition('experiment_id', $experiment_id);
$query->condition('approval_status', 1);
$solution_q = $query->execute();
while ($solution_row = $solution_q->fetchObject())
{
$CODE_PATH = 'CODE' . $solution_row->code_number . '/';
$solution_files_q = db_query("SELECT lmsf.*, lmp.directory_name FROM dwsim_flowsheet_solution_files lmsf JOIN dwsim_flowsheet_solution lms JOIN dwsim_flowsheet_experiment lme JOIN dwsim_flowsheet_proposal lmp WHERE lms.id = lmsf.solution_id AND lme.id = lms.experiment_id AND lmp.id = lme.proposal_id AND lmsf.solution_id = :solution_id", array(
':solution_id' => $solution_row->id
));
while ($solution_files_row = $solution_files_q->fetchObject())
{
$zip->addFile($root_path . $solution_files_row->directory_name . '/' . $solution_files_row->filepath, $EXP_PATH . $CODE_PATH . str_replace(' ', '_', ($solution_files_row->filename)));
} //$solution_files_row = $solution_files_q->fetchObject()
/* dependency files */
$query = db_select('dwsim_flowsheet_solution_dependency');
$query->fields('dwsim_flowsheet_solution_dependency');
$query->condition('solution_id', $solution_row->id);
$solution_dependency_files_q = $query->execute();
while ($solution_dependency_files_row = $solution_dependency_files_q->fetchObject())
{
$query = db_select('dwsim_flowsheet_dependency_files');
$query->fields('dwsim_flowsheet_dependency_files');
$query->condition('id', $solution_dependency_files_row->dependency_id);
$query->range(0, 1);
$dependency_file_data = $query->execute()->fetchObject();
if ($dependency_file_data)
$zip->addFile($root_path . $dependency_file_data->filepath, $EXP_PATH . $CODE_PATH . 'DEPENDENCIES/' . str_replace(' ', '_', ($dependency_file_data->filename)));
} //$solution_dependency_files_row = $solution_dependency_files_q->fetchObject()
} //$solution_row = $solution_q->fetchObject()
$zip_file_count = $zip->numFiles;
$zip->close();
if ($zip_file_count > 0)
{
/* download zip file */
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename="EXP' . $experiment_data->number . '.zip"');
header('Content-Length: ' . filesize($zip_filename));
ob_clean();
//flush();
readfile($zip_filename);
unlink($zip_filename);
} //$zip_file_count > 0
else
{
drupal_set_message("There are no solutions in this experiment to download", 'error');
drupal_goto('lab-migration/lab-migration-run');
}
}
function dwsim_flowsheet_download_lab()
{
global $user;
$lab_id = arg(3);
$root_path = dwsim_flowsheet_path();
/* get solution data */
$query = db_select('dwsim_flowsheet_proposal');
$query->fields('dwsim_flowsheet_proposal');
$query->condition('id', $lab_id);
$lab_q = $query->execute();
$lab_data = $lab_q->fetchObject();
$LAB_PATH = $lab_data->lab_title . '/';
/* zip filename */
$zip_filename = $root_path . 'zip-' . time() . '-' . rand(0, 999999) . '.zip';
/* creating zip archive on the server */
$zip = new ZipArchive();
$zip->open($zip_filename, ZipArchive::CREATE);
$query = db_select('dwsim_flowsheet_experiment');
$query->fields('dwsim_flowsheet_experiment');
$query->condition('proposal_id', $lab_id);
$experiment_q = $query->execute();
while ($experiment_row = $experiment_q->fetchObject())
{
$EXP_PATH = 'EXP' . $experiment_row->number . '/';
$query = db_select('dwsim_flowsheet_solution');
$query->fields('dwsim_flowsheet_solution');
$query->condition('experiment_id', $experiment_row->id);
$query->condition('approval_status', 1);
$solution_q = $query->execute();
while ($solution_row = $solution_q->fetchObject())
{
$CODE_PATH = 'CODE' . $solution_row->code_number . '/';
$solution_files_q = db_query("SELECT lmsf.*, lmp.directory_name FROM dwsim_flowsheet_solution_files lmsf JOIN dwsim_flowsheet_solution lms JOIN dwsim_flowsheet_experiment lme JOIN dwsim_flowsheet_proposal lmp WHERE lms.id = lmsf.solution_id AND lme.id = lms.experiment_id AND lmp.id = lme.proposal_id AND lmsf.id = :solution_id", array(
':solution_id' => $solution_row->id
));
$query = db_select('dwsim_flowsheet_solution_dependency');
$query->fields('dwsim_flowsheet_solution_dependency');
$query->condition('solution_id', $solution_row->id);
$solution_dependency_files_q = $query->execute();
while ($solution_files_row = $solution_files_q->fetchObject())
{
$zip->addFile($root_path . $solution_files_row->directory_name . '/' . $solution_files_row->filepath, $EXP_PATH . $CODE_PATH . str_replace(' ', '_', ($solution_files_row->filename)));
//var_dump($zip->numFiles);
} //$solution_files_row = $solution_files_q->fetchObject()
// die;
/* dependency files */
while ($solution_dependency_files_row = $solution_dependency_files_q->fetchObject())
{
$query = db_select('dwsim_flowsheet_dependency_files');
$query->fields('dwsim_flowsheet_dependency_files');
$query->condition('id', $solution_dependency_files_row->dependency_id);
$query->range(0, 1);
$dependency_file_data = $query->execute()->fetchObject();
if ($dependency_file_data)
$zip->addFile($root_path . $dependency_file_data->filepath, $EXP_PATH . $CODE_PATH . 'DEPENDENCIES/' . str_replace(' ', '_', ($dependency_file_data->filename)));
} //$solution_dependency_files_row = $solution_dependency_files_q->fetchObject()
} //$solution_row = $solution_q->fetchObject()
} //$experiment_row = $experiment_q->fetchObject()
$zip_file_count = $zip->numFiles;
$zip->close();
if ($zip_file_count > 0)
{
if ($user->uid)
{
/* download zip file */
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename="' . str_replace(' ', '_', $lab_data->lab_title) . '.zip"');
header('Content-Length: ' . filesize($zip_filename));
ob_clean();
//flush();
readfile($zip_filename);
unlink($zip_filename);
} //$user->uid
else
{
header('Content-Type: application/zip');
header('Content-disposition: attachment; filename="' . str_replace(' ', '_', $lab_data->lab_title) . '.zip"');
header('Content-Length: ' . filesize($zip_filename));
header("Content-Transfer-Encoding: binary");
header('Expires: 0');
header('Pragma: no-cache');
ob_end_flush();
ob_clean();
flush();
readfile($zip_filename);
unlink($zip_filename);
}
} //$zip_file_count > 0
else
{
drupal_set_message("There are no solutions in this Lab to download", 'error');
drupal_goto('lab-migration/lab-migration-run');
}
}
function dwsim_flowsheet_download_proposals()
{
$root_path = dwsim_flowsheet_path();
$result = db_query("SELECT e.contributor_name as contirbutor_name, u.mail as email_id, e.project_title as title, e.contact_no as contact, e.university as university, from_unixtime(creation_date,'%d-%m-%Y') as creation, from_unixtime(approval_date,'%d-%m-%Y') as approval, from_unixtime(actual_completion_date,'%d-%m-%Y') as year, e.approval_status as status FROM dwsim_flowsheet_proposal as e JOIN users as u ON e.uid = u.uid ORDER BY actual_completion_date DESC");
//var_dump($result->rowCount());die();
//$all_proposals_q = $result->execute();
$participants_proposal_id_file = $root_path . "participants-proposals.csv";
$fp = fopen($participants_proposal_id_file, "w");
/* making the first row */
$items = array(
'Contirbutor Name',
'Email ID',
'Flowsheet Title',
'University',
'Contact',
'Date of Creation',
'Date of Approval',
'Date of Completion',
'Status of the proposal'
);
fputcsv($fp, $items);
while($row = $result->fetchObject())
{
$status = '';
switch ($row->status)
{
case 0:
$status = 'Pending';
break;
case 1:
$status = 'Approved';
break;
case 2:
$status = 'Dis-approved';
break;
case 3:
$status = 'Completed';
break;
default:
$status = 'Unknown';
break;
} //$row->status
if ($row->year == 0)
{
$year = "Not Completed";
} //$row->year == 0
else
{
$year = date('d-m-Y', $row->year);
}
$items = array(
$row->contirbutor_name,
$row->email_id,
$row->title,
$row->university,
$row->contact,
$row->creation,
$row->approval,
$row->year,
$status
);
fputcsv($fp, $items);
}
fclose($fp);
if($participants_proposal_id_file){
ob_clean();
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: public");
header("Content-Description: File Transfer");
header('Content-Type: application/csv');
header('Content-disposition: attachment; filename=participants-proposals.csv');
header('Content-Length:' . filesize($participants_proposal_id_file));
header("Content-Transfer-Encoding: binary");
header('Expires: 0');
header('Pragma: no-cache');
readfile($participants_proposal_id_file);
/*ob_end_flush();
ob_clean();
flush();*/
}
}
|