-
Notifications
You must be signed in to change notification settings - Fork 0
/
lib.php
1442 lines (1260 loc) · 51.6 KB
/
lib.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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* ELIS(TM): Enterprise Learning Intelligence Suite
* Copyright (C) 2008-2015 Remote-Learner.net Inc (http://www.remote-learner.net)
*
* This program 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 3 of the License, or
* (at your option) any later version.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package local_datahub
* @author Remote-Learner.net Inc
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
* @copyright (C) 2008-2015 Remote-Learner.net Inc (http://www.remote-learner.net)
*
*/
defined('MOODLE_INTERNAL') || die();
define('IP_SCHEDULE_TIMELIMIT', 2 * 60); // max schedule run time in secs
define('RLIP_MAXRUNTIME_MIN', 28); // minimum maxruntime in secs
//constant for how many log records to show per page
define('RLIP_LOGS_PER_PAGE', 20);
//database table constant
define('RLIP_LOG_TABLE', 'local_datahub_summary_logs');
define('RLIP_SCHEDULE_TABLE', 'local_datahub_schedule');
//constants for temporary import & export directories (wildcard for plugin)
define('RLIP_EXPORT_TEMPDIR', '/datahub/%s/temp/');
define('RLIP_IMPORT_TEMPDIR', '/datahub/%s/temp/');
//the default log path
define('RLIP_DEFAULT_LOG_PATH', '/datahub/log');
require_once($CFG->dirroot.'/lib/adminlib.php');
require_once($CFG->dirroot.'/local/datahub/lib/rlip_dataplugin.class.php');
require_once($CFG->dirroot.'/local/eliscore/lib.php');
/**
* Settings page that can have child pages
*
* Note: This class must implement parentable_part_of_admin_tree in order for
* children to show up
*/
class rlip_category_settingpage extends admin_settingpage implements parentable_part_of_admin_tree {
/**
* Method that satisfies requirements of parent interface but delegates to
* the admin_settingpage functionality, depsite methods being
* non-equivalent
*
* @param object $setting is the admin_setting object you want to add
* @param string $bogus only defined to satisfy interface.
* @param string $bogus2 only defined to satisfy interface.
* @return bool true if successful, false if not
*/
public function add($setting, $bogus = '', $bogus2 = null) {
// Note: this is only called as is done for admin_settingpage.
return parent::add($setting);
}
}
/**
* External page that can have child pages
*
* Note: This class must implement parentable_part_of_admin_tree in order for
* children to show up
*/
class rlip_category_externalpage extends admin_externalpage implements parentable_part_of_admin_tree {
/**
* Method that satisfies requirements of parent interface but delegates to
* the admin_externalpage functionality, depsite methods being non-equivalent
*
* @param object $external is the admin_external object you want to add
* @param string $bogus only defined to satisfy interface.
* @param string $bogus2 only defined to satisfy interface.
* @return bool true if successful, false if not
*/
public function add($setting, $bogus = '', $bogus2 = null) {
// Note: this is only called as is done for admin_settingpage.
return parent::add($setting);
}
}
/**
* Add extra admintree configuration structure to the main administration menu tree.
*
* @uses $CFG
* @param object &$adminroot Reference to an admin tree object as generated via admin_get_root().
* @return none
*/
function rlip_admintree_setup(&$adminroot) {
global $CFG;
require_once($CFG->dirroot.'/local/datahub/lib/rlip_dataplugin.class.php');
$plugintypes = array('dhimport', 'dhexport');
$displaystring = get_string('plugins', 'local_datahub');
$externcat = new admin_category('rlipmanageplugins', $displaystring);
$adminroot->add('localplugins', $externcat);
$displaystring = get_string('rlipmanageplugins', 'local_datahub');
$url = $CFG->wwwroot.'/local/datahub/plugins.php';
$page = new admin_externalpage('rlipsettingplugins', $displaystring, $url, 'moodle/site:config');
$adminroot->add('rlipmanageplugins', $page);
foreach ($plugintypes as $plugintype) {
//obtain the list of plugins of the current type
if ($plugins = core_component::get_plugin_list($plugintype)) {
ksort($plugins);
foreach ($plugins as $p => $path) {
//NOTE: do not use $plugin here because local/eliscore/lib/setup will
//overwrite this value if included below
$plugsettings = $path.'/settings.php';
if (file_exists($plugsettings)) {
//skip if the plugin is not available
$instance = rlip_dataplugin_factory::factory("{$plugintype}_{$p}");
if (!$instance->is_available()) {
continue;
}
//the plugin has a settings file, so add it to the tree
$name = "rlipsetting{$plugintype}_{$p}";
$displaystring = get_string('pluginname', "{$plugintype}_$p");
$settings = new rlip_category_settingpage($name, $displaystring);
//add the actual settings to the list
include($plugsettings);
$adminroot->add('rlipmanageplugins', $settings);
//perform any customization required by the plugin
$instance->admintree_setup($adminroot, "rlipsetting{$plugintype}_{$p}");
}
}
}
}
//add a link for viewing logs
$displaystring = get_string('logs', 'local_datahub');
$url = $CFG->wwwroot.'/local/datahub/viewlogs.php';
$page = new admin_externalpage('rliplogs', $displaystring, $url,
'moodle/site:config');
$adminroot->add('reports', $page);
}
/**
* Perform page setup for the page that allows you to run tasks manually
*
* @param string $baseurl The base page url
* @param string $plugin_display The display name of the plugin
*/
function rlip_manualrun_page_setup($baseurl, $plugin_display) {
global $PAGE, $SITE;
//set up the basic page info
$PAGE->set_url($baseurl);
$PAGE->set_context(context_system::instance());
$displaystring = get_string('configuretitle', 'dhexport_version1');
$PAGE->set_title("$SITE->shortname: ".$displaystring);
$PAGE->set_heading($SITE->fullname);
//use the default admin layout
$PAGE->set_pagelayout('admin');
//add navigation items
$PAGE->navbar->add(get_string('administrationsite'));
$PAGE->navbar->add(get_string('plugins', 'admin'));
$PAGE->navbar->add(get_string('localplugins'));
$PAGE->navbar->add(get_string('plugins', 'local_datahub'));
$PAGE->navbar->add(get_string('rlipmanageplugins', 'local_datahub'), new moodle_url('/local/datahub/plugins.php'));
$PAGE->navbar->add(get_string('runmanually', 'local_datahub'));
//block css file
$PAGE->requires->css('/local/datahub/styles.css');
}
/**
* Perform the handling of an uploaded file, including moving it to a non-draft
* area
*
* @param object $data The data submitted by the file upload form
* @param string $key The key that represents the field containing the file
* "itemid"
* @return mixed The file record id on success, or false if not selected
*/
function rlip_handle_file_upload($data, $key) {
global $USER, $DB;
$result = false;
//get general file storage object
$fs = get_file_storage();
//obtain the listing of files just uploaded
$usercontext = context_user::instance($USER->id);
$files = $fs->get_area_files($usercontext->id, 'user', 'draft', $data->$key);
$context = context_system::instance();
//set up file parameters
$file_record = array('contextid' => $context->id,
'component' => 'local_datahub',
'filearea' => 'files',
'filepath' => '/manualupload/');
//transfer files to a specific area
foreach ($files as $draftfile) {
//file API seems to always upload a directory record, so ignore that
if (!$draftfile->is_directory()) {
$exists = false;
//maintain the same filename
$draft_filename = $draftfile->get_filename();
$file = $fs->get_file($context->id, 'local_datahub', 'files',
$data->$key, '/manualupload/', $draft_filename);
if ($file) {
//file exists
$exists = true;
$samesize = ($file->get_filesize() == $draftfile->get_filesize());
$sametime = ($file->get_timemodified() == $draftfile->get_timemodified());
//if not the same file, delete it
if ((!$samesize || !$sametime) && $file->delete()) {
$exists = false;
}
}
if (!$exists) {
//create as new file
$file = $fs->create_file_from_storedfile($file_record, $draftfile);
}
//delete the draft file
$draftfile->delete();
//obtain the file record id
$result = $file->get_id();
}
}
return $result;
}
/**
* Displays the error message passed
*
* @param string $error The error message to display
*/
function rlip_print_error($error = NULL) {
global $DB, $OUTPUT;
if (!empty($error)) {
//display error message as passed
echo $OUTPUT->box($error, 'generalbox warning manualstatusbox');
}
}
/**
* Sanitizes time strings and applies a default value if necessary
*
* @param string $time_string A user-entered time string
* @param string $default The field default
* @return string The time string with proper formatting and invalid data
* removed
*/
function rlip_sanitize_time_string($time_string, $default = '') {
//valid time units - hours, minutes, seconds
$valid_units = array('d', 'h', 'm');
$result = '';
//track the current "group", e.g. 2d
$current_group = '';
//iterate through characters
for ($i = 0; $i < strlen($time_string); $i++) {
//retrieve current character
$character = strtolower(substr($time_string, $i, 1));
if ($character >= '0' && $character <= '9') {
//append digit
$current_group .= $character;
} else {
if (in_array($character, $valid_units)) {
//time unit is valid
if ($current_group != '') {
//a number was specified, so append the "group" to the
//result
$current_group .= $character;
$result .= $current_group;
}
}
//looking for new entry
$current_group = '';
}
}
if ($result == '') {
//no valid data, so use the default
return $default;
}
return $result;
}
/**
* Converts a sanitized time string to a numerical offset
*
* @param string $time_string A properly formatted time string
* @return int The equivalent offset, in seconds
*/
function rlip_time_string_to_offset($time_string) {
//valid time units - hours, minutes, seconds - plus time values
$valid_units = array('d' => DAYSECS,
'h' => HOURSECS,
'm' => MINSECS);
$result = 0;
//track the current "group", e.g. 2d
$current_group = '';
//iterate through characters
for ($i = 0; $i < strlen($time_string); $i++) {
//retrieve current character
$character = substr($time_string, $i, 1);
if ($character >= '0' && $character <= '9') {
//append digit
$current_group .= $character;
} else {
//look up the value of the time unit
$multiplier = $valid_units[$character];
//value based on numeric string
$value = (int)$current_group;
//add to result
$result += $multiplier * $value;
$current_group = '';
}
}
return $result;
}
/**
* Get scheduled IP jobs
*
* @param string $plugin The IP plugin type: 'dhimport_version1', 'dhexport_version1', ...
* @param int $userid The desired schedule owner or (default) 0 for all.
* @uses $DB
* @return mixed Either list of scheduled jobs for IP plugin
* or false if none.
*/
function rlip_get_scheduled_jobs($plugin, $userid = 0) {
global $DB;
$taskname = $DB->sql_concat("'ipjob_'", 'ipjob.id');
$params = array('plugin' => $plugin);
$sql = "SELECT ipjob.*, usr.username, usr.firstname, usr.lastname,
usr.timezone, task.lastruntime, task.nextruntime
FROM {local_eliscore_sched_tasks} task
JOIN {".RLIP_SCHEDULE_TABLE."} ipjob
ON task.taskname = {$taskname}
JOIN {user} usr
ON ipjob.userid = usr.id
WHERE ipjob.plugin = :plugin ";
if ($userid) {
$sql .= 'AND ipjob.userid = :userid ';
$params['userid'] = $userid;
}
return $DB->get_recordset_sql($sql, $params);
}
/**
* Add schedule job for IP - now used only for testing.
*
* @param array $data The scheduled job's parameters.
* @return int|bool The local_eliscore_sched_tasks record DB id (> 0) on success, or false on error.
*/
function rlip_schedule_add_job($data) {
global $CFG, $USER;
require_once($CFG->dirroot.'/local/datahub/lib/schedulelib.php');
if (!isset($data['userid'])) {
$data['userid'] = $USER->id;
}
if ($dhschedwkflow = new datahub_scheduling_workflow($data)) {
$dhschedwkflow->set_data($data);
$dhschedwkflow->save();
return $dhschedwkflow->finish();
}
return false;
}
/**
* Delete schedule job for IP
*
* @param int $id The ID of the scheduled job to delete.
* @uses $DB
* @return bool true on success, false on error.
*/
function rlip_schedule_delete_job($id) {
global $DB;
$DB->delete_records(RLIP_SCHEDULE_TABLE, array('id' => $id));
$taskname = 'ipjob_'. $id;
$DB->delete_records('local_eliscore_sched_tasks', array('taskname' => $taskname));
return true;
}
/**
* Get Export filename with optional timestamp in RLIP_EXPORT_TEMPDIR location
*
* @param string $plugin The RLIP plugin
* @param int or string $tz The exporting user's timezone
* @uses $CFG
* @return string The export filename with temp path.
*/
function rlip_get_export_filename($plugin, $tz = 99) {
global $CFG;
$tempexportdir = $CFG->dataroot . sprintf(RLIP_EXPORT_TEMPDIR, $plugin);
$export = basename(get_config($plugin, 'export_file'));
$timestamp = get_config($plugin, 'export_file_timestamp');
if (!empty($timestamp)) {
$timestamp = userdate(time(), get_string('export_file_timestamp',
$plugin), $tz);
if (($extpos = strrpos($export, '.')) !== false) {
$export = substr($export, 0, $extpos) .
"_{$timestamp}" . substr($export, $extpos);
} else {
$export .= "_{$timestamp}.csv";
}
}
if (!file_exists($tempexportdir) && !@mkdir($tempexportdir, 0777, true)) {
error_log("/local/datahub/lib.php::rlip_get_export_filename('{$plugin}', {$tz}) - Error creating directory: '{$tempexportdir}'");
}
return $tempexportdir . $export;
}
/**
* sub-function for running scheduled IP jobs
*
* @param string $prefix mtrace prefix string
* @param string $plugin The plugin name
* @param string $type The plugin type (i.e. dhimport, dhexport)
* @param int $userid the scheduled job's Moodle userid
* @param object $state the scheduled job's past state object
* @uses $CFG
* @uses $DB
* @return object import/export instance to run,
null on error (for unsupported plugin)
*/
function rlip_get_run_instance($prefix, $plugin, $type, $userid, $state) {
global $CFG, $DB;
$instance = null;
$rlipshortname = 'DH';
switch ($type) { // TBD
case 'dhimport':
$baseinstance = rlip_dataplugin_factory::factory($plugin);
$entity_types = $baseinstance->get_import_entities();
$files = array();
$dataroot = rtrim($CFG->dataroot, DIRECTORY_SEPARATOR);
$path = $dataroot . DIRECTORY_SEPARATOR .
trim(get_config($plugin, 'schedule_files_path'),
DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
$temppath = sprintf($dataroot . RLIP_IMPORT_TEMPDIR, $plugin);
if (!file_exists($temppath) && !@mkdir($temppath, 0777, true)) {
mtrace("{$prefix}: Error creating directory '{$temppath}' ... using '{$path}'");
//TBD*** just use main directory???
$temppath = $path;
}
foreach ($entity_types as $entity) {
$entity_filename = get_config($plugin, $entity .'_schedule_file');
if (empty($entity_filename)) {
// TBD: need dummy so we're not testing directories!
$entity_filename = $entity .'.csv';
}
//echo "\n get_config('{$plugin}', '{$entity}_schedule_file') => {$entity_filename}";
if ($state == null && $path !== $temppath &&
file_exists($path . $entity_filename) &&
!@rename($path . $entity_filename,
$temppath . $entity_filename)) {
$message = "{$prefix}: Error moving '".$path.$entity_filename."' to '".$temppath.$entity_filename."'";
mtrace($message);
continue; // Let's skip any unmovable files.
}
$files[$entity] = $temppath.$entity_filename;
}
$importprovider = new rlip_importprovider_csv($entity_types, $files);
$instance = rlip_dataplugin_factory::factory($plugin, $importprovider);
break;
case 'dhexport':
$tz = $DB->get_field('user', 'timezone', array('id' => $userid));
$export = rlip_get_export_filename($plugin,
($tz === false) ? 99 : $tz);
$fileplugin = rlip_fileplugin_factory::factory($export, NULL, false);
$instance = rlip_dataplugin_factory::factory($plugin, NULL, $fileplugin);
break;
default:
mtrace("{$prefix}: {$rlipshortname} plugin '{$plugin}' not supported!");
break;
}
return $instance;
}
/**
* Callback function for local_eliscore_sched_tasks IP jobs
*
* @param string $taskname The task name, in the form ipjob_{id}, where id
* is the IP job's schedule id
* @param int $maxruntime Maximum number of secs allowed to process job
*
* @return boolean true on success, otherwise false
*/
function run_ipjob($taskname, $maxruntime = 0) {
global $CFG, $DB;
$fcnname = "run_ipjob({$taskname}, {$maxruntime})";
$disabledincron = !empty($CFG->forcedatahubcron) || get_config('local_datahub', 'disableincron');
$rlipshortname = 'DH';
if (empty($maxruntime)) {
$maxruntime = IP_SCHEDULE_TIMELIMIT;
}
require_once($CFG->dirroot.'/local/eliscore/lib/tasklib.php');
require_once($CFG->dirroot.'/local/datahub/lib/rlip_dataplugin.class.php');
require_once($CFG->dirroot.'/local/datahub/lib/rlip_fileplugin.class.php');
require_once($CFG->dirroot.'/local/datahub/lib/rlip_importprovider_csv.class.php');
// Get the schedule record
list($prefix, $id) = explode('_', $taskname);
$ipjob = $DB->get_record(RLIP_SCHEDULE_TABLE, array('id' => $id));
if (empty($ipjob)) {
mtrace("{$fcnname}: DB Error retrieving {$rlipshortname} schedule record - aborting!");
return false;
}
$plugin = $ipjob->plugin;
// Import plugin dhimport_version2 uses a regular scheduled task.
if ($plugin === 'dhimport_version2') {
mtrace('Skipping ELIS scheduled task for dhimport_version2 because it uses a regular scheduled task.');
return false;
}
$data = unserialize($ipjob->config);
$state = isset($data['state']) ? $data['state'] : null;
//determine the "ideal" target start time
$targetstarttime = $ipjob->nextruntime;
// Set the next run time & lastruntime
if ($task = $DB->get_record('local_eliscore_sched_tasks', array('taskname' => $taskname))) {
// Check if a job is already in progress.
try {
$like = $DB->sql_like('config', '?');
$inprogress = $DB->get_field_select(RLIP_SCHEDULE_TABLE, 'id', 'plugin = ? AND '.$like, array($plugin, '%s:5:"state";%'));
} catch (dml_multiple_records_exception $e) {
$inprogress = 0; // Multiple in progress so set to != $id and !== false
}
if ($inprogress !== false && $inprogress != $id) {
// Put times back to pre-run state.
$task->nextruntime = $ipjob->nextruntime;
$task->lastruntime = $ipjob->lastruntime;
$DB->update_record('local_eliscore_sched_tasks', $task);
// mtrace("{$fcnname}: Similiar task has not completed yet!");
return false;
} else if (empty($disabledincron)) {
//record last runtime
$lastruntime = (int)($ipjob->lastruntime);
$nextruntime = cron_next_run_time($targetstarttime, (array)$task);
$task->nextruntime = $nextruntime;
//update the next runtime on the ip schedule record
$ipjob->nextruntime = $task->nextruntime;
$DB->update_record(RLIP_SCHEDULE_TABLE, $ipjob);
} else {
// running Datahub cron externally, put times back to pre-run state
$task->nextruntime = $ipjob->nextruntime;
$task->lastruntime = $ipjob->lastruntime;
}
$DB->update_record('local_eliscore_sched_tasks', $task);
} else {
mtrace("{$fcnname}: DB Error retrieving task record!");
//todo: return false?
}
// Must set last & next run times before exiting!
if (!empty($disabledincron)) {
// mtrace("{$fcnname}: Internal {$rlipshortname} cron disabled by settings - aborting job!");
return false; // TBD
}
// Perform the IP scheduled action
list($type, $subtype) = explode('_', $plugin);
$instance = rlip_get_run_instance($fcnname, $plugin, $type, $ipjob->userid, $state);
if ($instance == null) {
return false;
}
$ipjob->lastruntime = $task->lastruntime;
//run the task, specifying the ideal start time, maximum run time & state
if (($newstate = $instance->run($targetstarttime, $lastruntime, $maxruntime, $state)) !== null) {
// Task did not complete - RESET nextruntime back & save new state!
// mtrace("{$fcnname}: {$rlipshortname} scheduled task exceeded time limit of {$maxruntime} secs");
//update next runtime on the scheduled task record
$task->nextruntime = $targetstarttime;
$task->lastruntime = $ipjob->lastruntime = $lastruntime;
$DB->update_record('local_eliscore_sched_tasks', $task);
//update the next runtime on the ip schedule record
$ipjob->nextruntime = $task->nextruntime;
$data['state'] = $newstate;
$ipjob->config = serialize($data);
} else if ($state !== null) {
unset($data['state']);
$ipjob->config = serialize($data);
}
$DB->update_record(RLIP_SCHEDULE_TABLE, $ipjob);
return true;
}
/**
* Obtains the number of log records currently available for viewing
*
* @param string $extrasql Any extra SQL conditions, like filters ...
* @param array $params Any required SQL parameters
* @uses $DB
*/
function rlip_count_logs($extrasql = '', $params = array()) {
global $DB;
if (!empty($extrasql)) {
$extrasql = " WHERE {$extrasql} ";
}
//retrieve count
$sql = "SELECT COUNT(*)
FROM {".RLIP_LOG_TABLE."} log
JOIN {user} user
ON log.userid = user.id
{$extrasql}
ORDER BY log.starttime DESC";
return $DB->count_records_sql($sql, $params);
}
/**
* Obtains a recordset representing the log records to display for the
* specified page
*
* @param string $where Additional SQL condition to add
* @param array $params Parameters needed in additional SQL condition
* @param int $page The page to display, from 0 to n - 1
* @return object The recordset representing the appropriate data
*/
function rlip_get_logs($where = '', $params = array(), $page = 0) {
global $DB;
//where clause
$where_clause = '';
if (!empty($where)) {
$where_clause = "WHERE {$where}";
}
//offset, in records
$offset = $page * RLIP_LOGS_PER_PAGE;
//retrieve data
$sql = "SELECT log.*,
user.firstname,
user.lastname
FROM {".RLIP_LOG_TABLE."} log
JOIN {user} user
ON log.userid = user.id
{$where_clause}
ORDER BY log.starttime DESC";
return $DB->get_recordset_sql($sql, $params, $offset, RLIP_LOGS_PER_PAGE);
}
/**
* Obtains a table object representing the current page of logs
*
* @param object $logs The recordset representing our log data
* @return object The html table object representing our data set
*/
function rlip_get_log_table($logs) {
global $DB;
//used for the display of all time values in this table
$timeformat = get_string('displaytimeformat', 'local_datahub');
$table = new html_table();
//alignment
$table->align = array('left', 'left', 'left', 'left', 'left',
'left', 'left', 'right', 'right', 'left');
//column headers
$table->head = array(get_string('logtasktype', 'local_datahub'),
get_string('logplugin', 'local_datahub'),
get_string('logexecution', 'local_datahub'),
get_string('loguser', 'local_datahub'),
get_string('logscheduledstart', 'local_datahub'),
get_string('logstart', 'local_datahub'),
get_string('logend', 'local_datahub'),
get_string('logfilesuccesses', 'local_datahub'),
get_string('logfilefailures', 'local_datahub'),
get_string('logstatus', 'local_datahub'),
get_string('logentitytype', 'local_datahub'),
get_string('logdownload', 'local_datahub'));
$table->data = array();
$logstr = get_string('log', 'local_datahub');
//fill in table data
foreach ($logs as $log) {
// TODO: cache user records here so we aren't constantly fetching records from the DB?
$user = $DB->get_record('user', array('id' => $log->userid));
if ($log->export == 1) {
//export case
$plugintype = get_string('export', 'local_datahub');
//can't have failures in export files
$filefailures = get_string('na', 'local_datahub');
$entitytype = get_string('na', 'local_datahub');
} else {
$plugintype = get_string('import', 'local_datahub');
//use tracked number of failures for display
$filefailures = $log->filefailures;
$entitytype = $log->entitytype;
}
if ($log->targetstarttime == 0) {
//process was run manually
$executiontype = get_string('manual', 'local_datahub');
$targetstarttime = get_string('na', 'local_datahub');
} else {
//process was run automatically (cron)
$executiontype = get_string('automatic', 'local_datahub');
$targetstarttime = userdate($log->targetstarttime, $timeformat, 99, false);
}
// ELIS-5199 Only display a link to the file if a viable file exists
if (rlip_log_file_exists($log)) {
$link = "<a href=\"download.php?id=$log->id\">$logstr</a>";
} else {
$link = '';
}
// Construct data row
$table->data[] = array(
$plugintype,
get_string('pluginname', $log->plugin),
$executiontype,
datahub_fullname($user),
$targetstarttime,
userdate($log->starttime, $timeformat, 99, false),
userdate($log->endtime, $timeformat, 99, false),
$log->filesuccesses,
$filefailures,
$log->statusmessage,
$entitytype,
$link
);
}
return $table;
}
/**
* Convert a table of logs to html
*
* @param object $table The html table object to convert
* @return string The html representing the table
*/
function rlip_log_table_html($table) {
global $OUTPUT;
if (empty($table->data)) {
//no table data, so instead return message
return $OUTPUT->heading(get_string('nologmessage', 'local_datahub'));
}
//obtain table html
return html_writer::table($table);
}
/**
* Return the properly formatted log file name
* @param string $plugin_type Import or Export
* @param string $plugin The name of the plugin
* @param string $filepath The path of the log to append to the standardized filename
* @param boolean $manual True if this is a manual import
* @param string $timestamp The timestamp used for this import
* @param string $timeformat The format to use
* @param string $timezone The timezone being used
* @return string $logfilename The name of the log file
*/
function rlip_log_file_name($plugin_type, $plugin, $filepath, $entity = '', $manual = false, $timestamp = 0, $format = null, $timezone = 99) {
global $CFG;
//if no timeformat is set, set it to logfile timestamp format
if (empty($format)) {
$format = get_string('logfile_timestamp','local_datahub');
}
//add scheduled/manual to the logfile name
$scheduling = empty($manual) ? strtolower(get_string('scheduled','local_datahub'))
: strtolower(get_string('manual','local_datahub'));
//use timestamp passed or time()
if (empty($timestamp)) {
$timestamp = time();
}
//logfile path is relative to dataroot
if (!empty($filepath)) {
$filepath = rtrim($CFG->dataroot, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR .
trim($filepath, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
} else {
$filepath = rtrim($CFG->dataroot, DIRECTORY_SEPARATOR) . RLIP_DEFAULT_LOG_PATH . DIRECTORY_SEPARATOR;
}
// create directory if it doesn't exist
if (!file_exists($filepath) && !@mkdir($filepath, 0777, true)) {
// TBD: log this error to UI and/or elsewhere
// error_log("/local/datahub/lib.php::rlip_log_file_name('{$plugin_type}', '{$plugin}', '{$filepath}', '{$entity}', {$manual}, {$timestamp}, {$format}, {$timezone}) - Error creating directory: '{$filepath}'");
}
$pluginparts = explode('_', $plugin);
if (empty($pluginparts[1])) {
$pluginparts[1] = 'unknown';
}
//create filename
$filename = $filepath . $plugin_type .'_'. $pluginparts[1] .'_'. $scheduling .'_';
if ($plugin_type == 'import') { //include entity
$filename .= $entity .'_';
}
$filename .= userdate($timestamp, $format, $timezone) .'.log';
//make sure the filename is unique
$count = 0;
$unique_filename = $filename;
while (file_exists($unique_filename)) {
$filename_prefix = explode('.',$filename);
$filename_part = explode('_',$filename_prefix[0]);
$unique_filename = $filename_prefix[0].'_'.$count.'.log';
$count++;
}
return $unique_filename;
}
/**
* Task to create a zip file from today's log files
*
* @param string $taskname local_eliscore_sched_tasks task name (unused).
* @param int $runtime elis_scheduled tasks suggested run time (unused).
* @param int $time day to archive logs - default (0) => yesterday's logs
* (used for testing)
* @uses $CFG
* @return array names of zip files created (used for testing)
*/
function rlip_compress_logs_cron($taskname, $runtime = 0, $time = 0) {
global $CFG;
$zipfiles = array();
require_once($CFG->libdir .'/filestorage/zip_archive.php');
if (empty($time)) {
$time = time() - DAYSECS; //get yesterday's date
}
//the types of plugins we are considering
$plugintypes = array('dhimport' => 'import', 'dhexport' => 'export');
//lookup for the directory paths for plugins
$directories = core_component::get_plugin_types();
//Loop through all plugins...
$timestamp = userdate($time, get_string('logfiledaily_timestamp','local_datahub'), 99);
foreach ($plugintypes as $plugintype => $pluginvalue) {
//base directory
$directory = $directories[$plugintype];
//obtain plugins and iterate through them
$plugins = core_component::get_plugin_list($plugintype);
foreach ($plugins as $name => $path) {
//skip plugins used for testing only / ones that are not available
$instance = rlip_dataplugin_factory::factory("{$plugintype}_{$name}");
if (!$instance->is_available()) {
continue;
}
//get the display name from the plugin-specific language string
$plugin_name = "{$plugintype}_{$name}";
//figure out the location (directory) configured for log file storage
$logfilelocation = get_config($plugin_name, 'logfilelocation');
if (empty($logfilelocation)) {
$logfilelocation = RLIP_DEFAULT_LOG_PATH;
}
$logfilelocation = rtrim($CFG->dataroot, DIRECTORY_SEPARATOR).DIRECTORY_SEPARATOR.
trim($logfilelocation, DIRECTORY_SEPARATOR);
$logfileprefix = "{$pluginvalue}_{$name}";
$logfiledate = $timestamp;
//do a glob of all log files of this plugin name and of the previous day's date
$files = array();
foreach (glob("{$logfilelocation}/{$logfileprefix}_*{$logfiledate}*.log") as $file) {
$files[] = $file;
}
//create a zip file if there are files to archive
if (!empty($files)) {
$zipfile = "{$logfilelocation}/{$logfileprefix}_{$timestamp}.zip";
//create the archive
$zip = new zip_archive();
if (!$zip->open($zipfile)) {
continue;
}
$zipfiles[] = $zipfile;
foreach ($files as $file) {
//add the file
$zip->add_file_from_pathname(basename($file), $file);
}
//close the zip -- done!
$zip->close();
//remove the archived file(s) from the system
foreach ($files as $file) {
@unlink($file);
}
}
}
}
return $zipfiles;
}
/**
* Compress logs for emailing
*
* @param string $plugin The plugin for which we are sending logs
* @param array $logids The list of database record ids pointing to log files
* @param boolean $manual True if manual, false if scheduled
* @return string The name of the appropriate zip file
*/
function rlip_compress_logs_email($plugin, $logids, $manual = false) {
global $CFG, $DB;
require_once($CFG->libdir.'/filestorage/zip_archive.php');
if (empty($logids)) {
// Nothing to compress.
return false;
}
// Set up the archive.
$archive_name = rlip_email_archive_name($plugin, 0, $manual);
$path = $CFG->dataroot.'/'.$archive_name;
$archive = new zip_archive();
$result = $archive->open($path, file_archive::CREATE);
// SQL fragments to get the logs.
list($sql, $params) = $DB->get_in_or_equal($logids);
$select = "id {$sql}";
// Add files from log records, tracking whether a valid log path was found.
$found = false;
if ($records = $DB->get_records_select(RLIP_LOG_TABLE, $select, $params)) {
foreach ($records as $record) {
if ($record->logpath != NULL) {
$archive->add_file_from_pathname(basename($record->logpath), $record->logpath);
// Have at least one file in the zip.
$found = true;
}
}
}
$archive->close();
if (!$found) {
// No logs, so delete the empty archive file and signal that we don't need to send the email.
if (file_exists($path)) {
@unlink($path);
}
return false;