libdir.'/uploadlib.php'); require_once($CFG->dirroot.'/enrol/authorize/const.php'); require_once($CFG->dirroot.'/enrol/authorize/localfuncs.php'); require_once($CFG->libdir.'/eventslib.php'); /// Require capabilites require_login(); require_capability('enrol/authorize:uploadcsv', get_context_instance(CONTEXT_USER, $USER->id)); /// Print header $struploadcsv = get_string('uploadcsv', 'enrol_authorize'); $navlinks = array(); $navlinks[] = array('name' => get_string('paymentmanagement', 'enrol_authorize'), 'link' => 'index.php', 'type' => 'misc'); $navlinks[] = array('name' => $struploadcsv, 'link' => "uploadcsv.php", 'type' => 'misc'); $navigation = build_navigation($navlinks); $managebutton = "
"; print_header_simple($struploadcsv, '', $navigation, '', '', false, $managebutton); print_heading_with_help($struploadcsv, 'uploadcsv', 'enrol/authorize'); /// Handle CSV file if (($form = data_submitted()) && confirm_sesskey()) { $um = new upload_manager('csvfile', false, false, null, false, 0); if ($um->preprocess_files()) { $filename = $um->files['csvfile']['tmp_name']; // Fix mac/dos newlines $text = file_get_contents($filename); $text = preg_replace('!\r\n?!', "\n", $text); $fp = fopen($filename, "w"); fwrite($fp, $text); fclose($fp); authorize_process_csv($filename); } } /// Print submit form $maxuploadsize = get_max_upload_file_size(); echo '
'; upload_print_form_fragment(1, array('csvfile'), array(get_string('file'))); echo ''; echo '

'; /// Print footer print_footer(); ?>get_record('enrol_authorize', array('transid'=>$transid)))) { $order->status = ($transstatus == 'Approved Review') ? AN_STATUS_APPROVEDREVIEW : AN_STATUS_REVIEWFAILED; $DB->update_record('enrol_authorize', $order); $updated++; // Updated order status } continue; } if (!empty($reftransid) && is_numeric($reftransid) && 'Settled Successfully' == $transstatus && 'Credit' == $transtype) { if (($order = $DB->get_record('enrol_authorize', array('transid'=>$reftransid)))) { if (AN_METHOD_ECHECK == $order->paymentmethod) { $refund = $DB->get_record('enrol_authorize_refunds', array('transid'=>$transid)); if ($refund) { $refund->status = AN_STATUS_CREDIT; $refund->settletime = $settlementdate; $DB->update_record('enrol_authorize_refunds', $refund); $updated++; } else { $ignored++; $ignoredlines .= $reftransid . ": Not our business(Reference Transaction ID)\n"; } } } else { $ignored++; $ignoredlines .= $reftransid . ": Not our business(Transaction ID)\n"; } continue; } if (! ($transstatus == 'Settled Successfully' && $transtype == 'Authorization w/ Auto Capture')) { $ignored++; $ignoredlines .= $transid . ": Not settled\n"; continue; } // TransactionId must match $order = $DB->get_record('enrol_authorize', array('transid'=>$transid)); if (!$order) { $ignored++; $ignoredlines .= $transid . ": Not our business\n"; continue; } // Authorized/Captured and Settled $order->status = AN_STATUS_AUTHCAPTURE; $order->settletime = $settlementdate; $DB->update_record('enrol_authorize', $order); $updated++; // Updated order status and settlement date if ($order->paymentmethod != AN_METHOD_ECHECK) { $ignored++; $ignoredlines .= $transid . ": The method must be echeck\n"; continue; } // Get course and context $course = $DB->get_record('course', array('id'=>$order->courseid)); if (!$course) { $ignored++; $ignoredlines .= $transid . ": Could not find this course: " . $order->courseid . "\n"; continue; } $coursecontext = get_context_instance(CONTEXT_COURSE, $course->id); if (!$coursecontext) { $ignored++; $ignoredlines .= $transid . ": Could not find course context: " . $order->courseid . "\n"; continue; } // Get user $user = $DB->get_record('user', array('id'=>$order->userid)); if (!$user) { $ignored++; $ignoredlines .= $transid . ": Could not find this user: " . $order->userid . "\n"; continue; } // If user wasn't enrolled, enrol now. Ignore otherwise. Because admin user might submit this file again. if (($role = get_default_course_role($course))) { if (! user_has_role_assignment($user->id, $role->id, $coursecontext->id)) { $timestart = $timeend = 0; if ($course->enrolperiod) { $timestart = time(); $timeend = $timestart + $course->enrolperiod; } if (role_assign($role->id, $user->id, 0, $coursecontext->id, $timestart, $timeend, 0, 'authorize')) { $imported++; if (!empty($CFG->enrol_mailstudents)) { $sendem[] = $order->id; } } else { $ignoredlines .= $transid . ": Error while trying to enrol " . fullname($user) . " in '$course->fullname' \n"; } } } } fclose($handle); /// Send email to admin if (!empty($ignoredlines)) { $admin = get_admin(); $eventdata = new object(); $eventdata->modulename = 'moodle'; $eventdata->userfrom = $admin; $eventdata->userto = $admin; $eventdata->subject = "$SITE->fullname: Authorize.net CSV ERROR LOG"; $eventdata->fullmessage = $ignoredlines; $eventdata->fullmessageformat = FORMAT_PLAIN; $eventdata->fullmessagehtml = ''; $eventdata->smallmessage = ''; events_trigger('message_send', $eventdata); } /// Send welcome messages to users if (!empty($sendem)) { send_welcome_messages($sendem); } /// Show result notice("Done...
Imported: $imported
Updated: $updated
Ignored: $ignored"); } ?>