2005-05-13 09:05:39 +00:00
|
|
|
<?php // $Id$
|
|
|
|
|
|
|
|
// Authorize.net
|
|
|
|
define('AN_HOST', 'secure.authorize.net');
|
|
|
|
define('AN_PORT', 443);
|
|
|
|
define('AN_PATH', '/gateway/transact.dll');
|
|
|
|
define('AN_APPROVED', '1');
|
|
|
|
define('AN_DECLINED', '2');
|
|
|
|
define('AN_ERROR', '3');
|
2005-05-16 15:37:11 +00:00
|
|
|
define('AN_DELIM', '|');
|
|
|
|
define('AN_ENCAP', '"');
|
2005-05-13 09:05:39 +00:00
|
|
|
|
|
|
|
require_once("$CFG->dirroot/enrol/enrol.class.php");
|
|
|
|
|
|
|
|
class enrolment_plugin extends enrolment_base {
|
|
|
|
|
2005-07-13 20:26:16 +00:00
|
|
|
var $ccerrormsg;
|
2005-07-16 15:15:41 +00:00
|
|
|
var $coursecost;
|
2005-07-13 20:26:16 +00:00
|
|
|
|
2005-05-13 09:05:39 +00:00
|
|
|
/// Override: print_entry()
|
|
|
|
function print_entry($course) {
|
2005-05-16 22:22:31 +00:00
|
|
|
global $CFG, $USER, $form;
|
|
|
|
|
2005-07-13 20:26:16 +00:00
|
|
|
$free_cost = $this->zero_cost($course);
|
2005-05-16 22:22:31 +00:00
|
|
|
|
2005-07-13 20:26:16 +00:00
|
|
|
if ($free_cost || isguest()) { // No money for guests ;), So parent::print_entry
|
|
|
|
parent::print_entry($course);
|
|
|
|
return;
|
|
|
|
}
|
2005-06-02 17:56:31 +00:00
|
|
|
|
2005-07-13 20:26:16 +00:00
|
|
|
// check payment
|
|
|
|
$this->check_paid();
|
2005-05-16 22:22:31 +00:00
|
|
|
|
2005-07-13 20:26:16 +00:00
|
|
|
// HTTPS support: I want to paid on secure layer.
|
|
|
|
if ((!empty($CFG->loginhttps)) && (!isset($_SERVER['HTTPS']))) {
|
|
|
|
$wwwsroot = str_replace('http://','https://', $CFG->wwwroot);
|
|
|
|
$sdestination = "$wwwsroot/course/enrol.php?id=$course->id";
|
|
|
|
redirect($sdestination);
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
2005-07-18 16:42:30 +00:00
|
|
|
if (!isset($_SERVER['HTTPS'])) {
|
|
|
|
error(get_string("httpsrequired", "enrol_authorize"));
|
|
|
|
}
|
|
|
|
|
2005-07-13 20:26:16 +00:00
|
|
|
$CCTYPES = array(
|
|
|
|
'mcd' => 'Master Card',
|
|
|
|
'vis' => 'Visa',
|
|
|
|
'amx' => 'American Express',
|
|
|
|
'dsc' => 'Discover',
|
|
|
|
'dnc' => 'Diners Club',
|
|
|
|
'jcb' => 'JCB',
|
|
|
|
'swi' => 'Switch',
|
|
|
|
'dlt' => 'Delta',
|
|
|
|
'enr' => 'EnRoute'
|
|
|
|
);
|
|
|
|
|
|
|
|
$formvars = array('password','ccfirstname','cclastname','cc','ccexpiremm','ccexpireyyyy','cctype','cvv','cczip');
|
|
|
|
foreach ($formvars as $var) {
|
|
|
|
if (!isset($form->$var)) {
|
|
|
|
$form->$var = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$teacher = get_teacher($course->id);
|
|
|
|
$strloginto = get_string("loginto", "", $course->shortname);
|
|
|
|
$strcourses = get_string("courses");
|
|
|
|
$userfirstname = empty($form->ccfirstname) ? $USER->firstname : $form->ccfirstname;
|
|
|
|
$userlastname = empty($form->cclastname) ? $USER->lastname : $form->cclastname;
|
2005-07-14 16:17:28 +00:00
|
|
|
$curcost = $this->get_course_cost($course);
|
2005-07-13 20:26:16 +00:00
|
|
|
|
|
|
|
$passwordoption = !empty($course->password);
|
|
|
|
|
|
|
|
print_header($strloginto, $course->fullname, "<a href=\"$CFG->wwwroot/course/\">$strcourses</a> -> $strloginto");
|
|
|
|
print_course($course, "80%");
|
|
|
|
|
|
|
|
if ($passwordoption && !$free_cost) {
|
|
|
|
print_simple_box(get_string('choosemethod', 'enrol_authorize'), 'center');
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($passwordoption || $free_cost) {
|
|
|
|
$password = '';
|
|
|
|
include($CFG->dirroot . '/enrol/internal/enrol.html');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$free_cost) {
|
2005-06-02 17:56:31 +00:00
|
|
|
print_simple_box_start("center");
|
|
|
|
include($CFG->dirroot . '/enrol/authorize/enrol.html');
|
|
|
|
print_simple_box_end();
|
2005-05-16 22:22:31 +00:00
|
|
|
}
|
2005-07-13 20:26:16 +00:00
|
|
|
|
|
|
|
print_footer();
|
|
|
|
|
2005-05-13 09:05:39 +00:00
|
|
|
}
|
|
|
|
|
2005-05-16 15:37:11 +00:00
|
|
|
/// Override: check_entry()
|
2005-05-13 09:05:39 +00:00
|
|
|
function check_entry($form, $course) {
|
2005-05-26 11:31:01 +00:00
|
|
|
global $CFG;
|
2005-07-13 20:26:16 +00:00
|
|
|
|
|
|
|
if ($this->zero_cost($course) || (!empty($form->password)) || isguest()) {
|
|
|
|
parent::check_entry($form, $course);
|
2005-05-16 22:22:31 +00:00
|
|
|
} else {
|
2005-07-13 20:26:16 +00:00
|
|
|
$this->cc_submit($form, $course);
|
2005-05-16 22:22:31 +00:00
|
|
|
}
|
2005-05-13 09:05:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function cc_submit($form, $course)
|
|
|
|
{
|
2005-05-16 22:22:31 +00:00
|
|
|
global $CFG, $USER, $SESSION;
|
|
|
|
require_once($CFG->dirroot . '/enrol/authorize/ccval.php');
|
|
|
|
|
|
|
|
if (empty($form->ccfirstname) || empty($form->cclastname) ||
|
|
|
|
empty($form->cc) || empty($form->cvv) || empty($form->cctype) ||
|
2005-06-02 17:56:31 +00:00
|
|
|
empty($form->ccexpiremm) || empty($form->ccexpireyyyy) || empty($form->cczip)) {
|
2005-07-13 20:26:16 +00:00
|
|
|
$this->ccerrormsg = get_string("allfieldsrequired");
|
2005-06-02 17:56:31 +00:00
|
|
|
return;
|
|
|
|
}
|
2005-05-16 22:22:31 +00:00
|
|
|
|
2005-05-26 07:32:26 +00:00
|
|
|
$exp_date = (($form->ccexpiremm<10) ? strval('0'.$form->ccexpiremm) : strval($form->ccexpiremm)) . ($form->ccexpireyyyy);
|
2005-05-26 13:22:01 +00:00
|
|
|
$valid_cc = CCVal($form->cc, $form->cctype, $exp_date);
|
2005-07-14 16:17:28 +00:00
|
|
|
$curcost = $this->get_course_cost($course);
|
2005-05-26 07:32:26 +00:00
|
|
|
|
2005-05-26 13:22:01 +00:00
|
|
|
if (!$valid_cc) {
|
2005-07-13 20:26:16 +00:00
|
|
|
$this->ccerrormsg = ($valid_cc===0) ? get_string('ccexpired', 'enrol_authorize') : get_string('ccinvalid', 'enrol_authorize');
|
2005-05-26 13:22:01 +00:00
|
|
|
return;
|
2005-05-16 22:22:31 +00:00
|
|
|
}
|
2005-05-26 13:22:01 +00:00
|
|
|
|
2005-05-16 22:22:31 +00:00
|
|
|
$this->check_paid();
|
|
|
|
$order_number = 0; // can be get from db
|
|
|
|
$formdata = array (
|
2005-06-02 17:56:31 +00:00
|
|
|
'x_version' => '3.1',
|
|
|
|
'x_delim_data' => 'True',
|
|
|
|
'x_delim_char' => AN_DELIM,
|
|
|
|
'x_encap_char' => AN_ENCAP,
|
|
|
|
'x_relay_response' => 'False',
|
|
|
|
'x_login' => $CFG->an_login,
|
|
|
|
'x_test_request' => (!empty($CFG->an_test)) ? 'True' : 'False',
|
|
|
|
'x_type' => 'AUTH_CAPTURE',
|
|
|
|
'x_method' => 'CC',
|
|
|
|
'x_first_name' => (empty($form->ccfirstname) ? $USER->firstname : $form->ccfirstname),
|
|
|
|
'x_last_name' => (empty($form->cclastname) ? $USER->lastname : $form->cclastname),
|
|
|
|
'x_address' => $USER->address,
|
|
|
|
'x_city' => $USER->city,
|
|
|
|
'x_zip' => $form->cczip,
|
|
|
|
'x_country' => $USER->country,
|
|
|
|
'x_state' => '',
|
|
|
|
'x_card_num' => $form->cc,
|
|
|
|
'x_card_code' => $form->cvv,
|
2005-07-14 16:17:28 +00:00
|
|
|
'x_currency_code' => $curcost['currency'],
|
|
|
|
'x_amount' => $curcost['cost'],
|
2005-06-02 17:56:31 +00:00
|
|
|
'x_exp_date' => $exp_date,
|
|
|
|
'x_email' => $USER->email,
|
|
|
|
'x_email_customer' => 'False',
|
|
|
|
'x_cust_id' => $USER->id,
|
|
|
|
'x_customer_ip' => $_SERVER["REMOTE_ADDR"],
|
|
|
|
'x_phone' => '',
|
|
|
|
'x_fax' => '',
|
|
|
|
'x_invoice_num' => $order_number,
|
|
|
|
'x_description' => $course->shortname
|
2005-05-16 22:22:31 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
//build the post string
|
|
|
|
$poststring = '';
|
|
|
|
if (!empty($CFG->an_tran_key)) {
|
|
|
|
$poststring .= urlencode("x_tran_key") . "=" . urlencode($CFG->an_tran_key);
|
2005-05-26 13:22:01 +00:00
|
|
|
}
|
2005-06-02 17:56:31 +00:00
|
|
|
else { // MUST be x_tran_key or x_password
|
2005-05-26 13:22:01 +00:00
|
|
|
$poststring .= urlencode("x_password") . "=" . urlencode($CFG->an_password);
|
2005-05-16 22:22:31 +00:00
|
|
|
}
|
|
|
|
foreach($formdata as $key => $val) {
|
|
|
|
$poststring .= "&" . urlencode($key) . "=" . urlencode($val);
|
|
|
|
}
|
|
|
|
//built
|
|
|
|
|
|
|
|
$response = array();
|
2005-06-02 17:56:31 +00:00
|
|
|
$anrefererheader = '';
|
2005-05-16 22:22:31 +00:00
|
|
|
if (isset($CFG->an_referer) && (!empty($CFG->an_referer)) &&
|
2005-06-02 17:56:31 +00:00
|
|
|
($CFG->an_referer != "http://") && ($CFG->an_referer != "https://")) {
|
|
|
|
$anrefererheader = "Referer: " . $CFG->an_referer . "\r\n";
|
2005-05-16 22:22:31 +00:00
|
|
|
}
|
2005-06-02 17:56:31 +00:00
|
|
|
|
2005-05-16 22:22:31 +00:00
|
|
|
$fp = fsockopen("ssl://" . AN_HOST, AN_PORT, $errno, $errstr, 60);
|
|
|
|
if(!$fp) {
|
2005-07-13 20:26:16 +00:00
|
|
|
$this->ccerrormsg = "$errstr ($errno)";
|
2005-05-16 22:22:31 +00:00
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
fputs($fp,
|
2005-06-02 17:56:31 +00:00
|
|
|
"POST " . AN_PATH . " HTTP/1.0\r\n" .
|
|
|
|
"Host: " . AN_HOST . "\r\n" .
|
|
|
|
$anrefererheader .
|
|
|
|
"Content-type: application/x-www-form-urlencoded\r\n" .
|
|
|
|
"Content-length: " . strlen($poststring) . "\r\n" .
|
|
|
|
"Connection: close\r\n\r\n" .
|
|
|
|
$poststring . "\r\n\r\n");
|
2005-05-16 22:22:31 +00:00
|
|
|
$str = '';
|
|
|
|
while(!feof($fp) && !stristr($str, 'content-length')) {
|
2005-06-02 17:56:31 +00:00
|
|
|
$str = fgets($fp, 4096);
|
|
|
|
}
|
2005-05-16 22:22:31 +00:00
|
|
|
// If didnt get content-lenght, something is wrong.
|
|
|
|
if (!stristr($str, 'content-length')) {
|
2005-07-13 20:26:16 +00:00
|
|
|
$this->ccerrormsg = "content-length error";
|
2005-05-16 22:22:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Get length of data to be received.
|
|
|
|
$length = trim(substr($str,strpos($str,'content-length') + 15));
|
|
|
|
// Get buffer (blank data before real data)
|
|
|
|
fgets($fp, 4096);
|
|
|
|
// Get real data
|
|
|
|
$data = fgets($fp, $length);
|
|
|
|
fclose($fp);
|
|
|
|
$response = explode(AN_ENCAP.AN_DELIM.AN_ENCAP, $data);
|
|
|
|
if ($response === false)
|
|
|
|
{
|
2005-07-13 20:26:16 +00:00
|
|
|
$this->ccerrormsg = "response error";
|
2005-05-16 22:22:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$rcount = count($response) - 1;
|
|
|
|
if ($response[0]{0} == AN_ENCAP) {
|
|
|
|
$response[0] = substr($response[0], 1);
|
|
|
|
}
|
|
|
|
if (substr($response[$rcount], -1) == AN_ENCAP) {
|
|
|
|
$response[$rcount] = substr($response[$rcount], 0, -1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($response[0] != AN_APPROVED) {
|
2005-07-13 20:26:16 +00:00
|
|
|
$this->ccerrormsg = isset($response[3]) ? $response[3] : 'unknown error';
|
2005-05-16 22:22:31 +00:00
|
|
|
} else {
|
|
|
|
$SESSION->ccpaid = 1; // security check: don't duplicate payment
|
|
|
|
if ($course->enrolperiod) {
|
|
|
|
$timestart = time();
|
|
|
|
$timeend = $timestart + $course->enrolperiod;
|
|
|
|
} else {
|
|
|
|
$timestart = $timeend = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!enrol_student($USER->id, $course->id, $timestart, $timeend)) {
|
|
|
|
$this->email_cc_error_to_admin("Error while trying to enrol ".fullname($USER)." in '$course->fullname'", $response);
|
|
|
|
} else {
|
|
|
|
// begin: send email
|
|
|
|
$teacher = get_teacher($course->id);
|
|
|
|
if (!empty($CFG->enrol_mailstudents)) {
|
|
|
|
$a->coursename = "$course->fullname";
|
2005-06-02 18:03:08 +00:00
|
|
|
$a->profileurl = "$CFG->wwwroot/user/view.php?id=$USER->id";
|
2005-05-16 22:22:31 +00:00
|
|
|
email_to_user($USER, $teacher, get_string("enrolmentnew", '', $course->shortname),
|
|
|
|
get_string('welcometocoursetext', '', $a));
|
|
|
|
}
|
|
|
|
if (!empty($CFG->enrol_mailteachers)) {
|
|
|
|
$a->course = "$course->fullname";
|
|
|
|
$a->user = fullname($USER);
|
|
|
|
email_to_user($teacher, $USER, get_string("enrolmentnew", '', $course->shortname),
|
|
|
|
get_string('enrolmentnewuser', '', $a));
|
|
|
|
}
|
|
|
|
if (!empty($CFG->enrol_mailadmins)) {
|
|
|
|
$a->course = "$course->fullname";
|
|
|
|
$a->user = fullname($USER);
|
|
|
|
$admins = get_admins();
|
|
|
|
foreach ($admins as $admin) {
|
|
|
|
email_to_user($admin, $USER, get_string("enrolmentnew", '', $course->shortname),
|
|
|
|
get_string('enrolmentnewuser', '', $a));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// end: send email
|
|
|
|
|
|
|
|
// begin: authorize_table
|
2005-05-26 13:22:01 +00:00
|
|
|
$datax->cclastfour = substr($form->cc, -4);
|
2005-05-26 07:32:26 +00:00
|
|
|
$datax->ccexp = $exp_date;
|
2005-05-16 22:22:31 +00:00
|
|
|
$datax->cvv = $form->cvv;
|
|
|
|
$datax->ccname = $formdata['x_first_name'] . " " . $formdata['x_last_name'];
|
|
|
|
$datax->courseid = $course->id;
|
|
|
|
$datax->userid = $USER->id;
|
|
|
|
$datax->avscode = strval($response[5]);
|
|
|
|
$datax->transid = strval($response[6]);
|
|
|
|
if (!insert_record("enrol_authorize", $datax)) { // Insert a transaction record
|
|
|
|
$this->email_cc_error_to_admin("Error while trying to insert valid transaction", $datax);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // end if (!enrol_student)
|
|
|
|
|
|
|
|
if ($SESSION->wantsurl) {
|
|
|
|
$destination = $SESSION->wantsurl;
|
|
|
|
unset($SESSION->wantsurl);
|
|
|
|
} else {
|
|
|
|
$destination = "$CFG->wwwroot/course/view.php?id=$course->id";
|
|
|
|
}
|
|
|
|
redirect($destination);
|
|
|
|
}
|
2005-05-13 09:05:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function zero_cost($course) {
|
2005-07-14 16:17:28 +00:00
|
|
|
$curcost = $this->get_course_cost($course);
|
|
|
|
return (abs($curcost['cost']) < 0.01);
|
2005-05-13 09:05:39 +00:00
|
|
|
}
|
|
|
|
|
2005-05-25 16:27:53 +00:00
|
|
|
function get_course_cost($course) {
|
2005-05-16 22:22:31 +00:00
|
|
|
global $CFG;
|
|
|
|
$cost = (float)0;
|
2005-07-16 15:15:41 +00:00
|
|
|
|
2005-07-22 19:40:11 +00:00
|
|
|
if (isset($this->coursecost))
|
|
|
|
return $this->coursecost;
|
2005-07-16 15:15:41 +00:00
|
|
|
|
|
|
|
if (!empty($course->cost)) {
|
|
|
|
$cost = (float)(((float)$course->cost) < 0) ? $CFG->enrol_cost : $course->cost;
|
2005-07-14 16:17:28 +00:00
|
|
|
}
|
|
|
|
|
2005-07-22 19:40:11 +00:00
|
|
|
$currency = (!empty($course->currency)) ? $course->currency : (empty($CFG->enrol_currency) ? 'USD' : $CFG->enrol_currency);
|
2005-07-14 16:17:28 +00:00
|
|
|
|
2005-05-16 22:22:31 +00:00
|
|
|
$cost = format_float($cost, 2);
|
2005-07-22 19:40:11 +00:00
|
|
|
$this->coursecost = array('cost'=>$cost, 'currency'=>$currency);
|
2005-07-14 16:17:28 +00:00
|
|
|
|
2005-07-22 19:40:11 +00:00
|
|
|
return $this->coursecost;
|
2005-05-13 09:05:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Override the get_access_icons() function
|
|
|
|
function get_access_icons($course) {
|
2005-05-16 22:22:31 +00:00
|
|
|
global $CFG;
|
|
|
|
|
|
|
|
$str = '';
|
2005-07-14 16:17:28 +00:00
|
|
|
$curcost = $this->get_course_cost($course);
|
2005-05-16 22:22:31 +00:00
|
|
|
|
2005-07-14 16:17:28 +00:00
|
|
|
if (abs($curcost['cost']) < 0.01) {
|
2005-05-16 22:22:31 +00:00
|
|
|
$str = parent::get_access_icons($course);
|
|
|
|
} else {
|
|
|
|
$strrequirespayment = get_string("requirespayment");
|
|
|
|
$strcost = get_string("cost");
|
|
|
|
|
2005-05-13 09:27:26 +00:00
|
|
|
$str .= "<p class=\"coursecost\"><font size=-1>$strcost: " .
|
2005-05-16 22:22:31 +00:00
|
|
|
"<a title=\"$strrequirespayment\" href=\"$CFG->wwwroot/course/view.php?id=$course->id\"></a>" .
|
2005-07-14 16:17:28 +00:00
|
|
|
$curcost['currency'] . " " . $curcost['cost'] . '</a></p>';
|
2005-05-16 22:22:31 +00:00
|
|
|
}
|
|
|
|
return $str;
|
2005-05-13 09:05:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function config_form($frm) {
|
2005-05-16 22:22:31 +00:00
|
|
|
global $CFG;
|
|
|
|
|
2005-07-13 20:26:16 +00:00
|
|
|
$vars = array('an_login', 'an_tran_key', 'an_password', 'an_referer', 'an_test',
|
|
|
|
'enrol_cost', 'enrol_currency', 'enrol_mailstudents', 'enrol_mailteachers', 'enrol_mailadmins');
|
2005-05-25 16:27:53 +00:00
|
|
|
|
2005-05-16 22:22:31 +00:00
|
|
|
foreach ($vars as $var) {
|
2005-07-13 20:26:16 +00:00
|
|
|
if (!isset($frm->$var)) {
|
|
|
|
$frm->$var = '';
|
|
|
|
}
|
2005-05-16 22:22:31 +00:00
|
|
|
}
|
|
|
|
|
2005-05-25 16:27:53 +00:00
|
|
|
if (!$this->check_openssl_loaded()) {
|
|
|
|
notify('PHP must be compiled with SSL support (--with-openssl)');
|
|
|
|
}
|
|
|
|
if (data_submitted()) { // something POSTed
|
|
|
|
// Some required fields
|
|
|
|
if (empty($frm->an_login)) {
|
|
|
|
notify("an_login required");
|
|
|
|
}
|
|
|
|
if (empty($frm->an_tran_key) && empty($frm->an_password)) {
|
|
|
|
notify("an_tran_key or an_password required");
|
|
|
|
}
|
2005-07-18 16:42:30 +00:00
|
|
|
if (empty($CFG->loginhttps)) {
|
|
|
|
notify("\$CFG->loginhttps MUST BE ON");
|
|
|
|
}
|
2005-05-25 16:27:53 +00:00
|
|
|
}
|
2005-05-26 07:32:26 +00:00
|
|
|
include($CFG->dirroot.'/enrol/authorize/config.html');
|
2005-05-13 09:05:39 +00:00
|
|
|
}
|
|
|
|
|
2005-05-25 16:27:53 +00:00
|
|
|
function check_openssl_loaded() {
|
|
|
|
return extension_loaded('openssl');
|
2005-05-13 09:05:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function process_config($config) {
|
2005-07-18 16:42:30 +00:00
|
|
|
global $CFG;
|
2005-05-13 09:05:39 +00:00
|
|
|
|
2005-05-25 16:27:53 +00:00
|
|
|
$return = $this->check_openssl_loaded();
|
|
|
|
|
2005-05-16 22:22:31 +00:00
|
|
|
if (!isset($config->an_login)) {
|
|
|
|
$config->an_login = '';
|
|
|
|
}
|
|
|
|
set_config('an_login', $config->an_login);
|
|
|
|
|
|
|
|
if (!isset($config->an_password)) {
|
|
|
|
$config->an_password = '';
|
|
|
|
}
|
|
|
|
set_config('an_password', $config->an_password);
|
|
|
|
|
|
|
|
if (!isset($config->an_tran_key)) {
|
|
|
|
$config->an_tran_key = '';
|
|
|
|
}
|
|
|
|
set_config('an_tran_key', $config->an_tran_key);
|
|
|
|
|
|
|
|
// Some required fields
|
|
|
|
if (empty($config->an_login)) {
|
2005-05-25 16:27:53 +00:00
|
|
|
$return = false;
|
2005-05-16 22:22:31 +00:00
|
|
|
}
|
|
|
|
if (empty($config->an_tran_key) && empty($config->an_password)) {
|
2005-05-25 16:27:53 +00:00
|
|
|
$return = false;
|
2005-05-16 22:22:31 +00:00
|
|
|
}
|
2005-07-18 16:42:30 +00:00
|
|
|
// $CFG->loginhttps must be on.
|
|
|
|
$return = (!empty($CFG->loginhttps));
|
2005-05-16 22:22:31 +00:00
|
|
|
|
|
|
|
if (empty($config->an_referer)) {
|
|
|
|
$config->an_referer = 'http://';
|
|
|
|
}
|
|
|
|
set_config('an_referer', $config->an_referer);
|
|
|
|
|
|
|
|
if (!isset($config->an_test)) {
|
|
|
|
$config->an_test = '';
|
|
|
|
}
|
|
|
|
set_config('an_test', $config->an_test);
|
|
|
|
|
|
|
|
// --------------------------------------
|
|
|
|
if (!isset($config->enrol_cost)) {
|
|
|
|
$config->enrol_cost = '0';
|
|
|
|
}
|
|
|
|
set_config('enrol_cost', $config->enrol_cost);
|
|
|
|
|
|
|
|
if (!isset($config->enrol_currency)) {
|
|
|
|
$config->enrol_currency = 'USD';
|
|
|
|
}
|
|
|
|
set_config('enrol_currency', $config->enrol_currency);
|
|
|
|
|
|
|
|
if (!isset($config->enrol_mailstudents)) {
|
|
|
|
$config->enrol_mailstudents = '';
|
|
|
|
}
|
|
|
|
set_config('enrol_mailstudents', $config->enrol_mailstudents);
|
|
|
|
|
|
|
|
if (!isset($config->enrol_mailteachers)) {
|
|
|
|
$config->enrol_mailteachers = '';
|
|
|
|
}
|
|
|
|
set_config('enrol_mailteachers', $config->enrol_mailteachers);
|
|
|
|
|
|
|
|
if (!isset($config->enrol_mailadmins)) {
|
|
|
|
$config->enrol_mailadmins = '';
|
|
|
|
}
|
|
|
|
set_config('enrol_mailadmins', $config->enrol_mailadmins);
|
|
|
|
|
2005-05-25 16:27:53 +00:00
|
|
|
return $return;
|
2005-05-13 09:05:39 +00:00
|
|
|
}
|
|
|
|
|
2005-05-13 09:27:26 +00:00
|
|
|
function email_cc_error_to_admin($subject, $data) {
|
2005-05-16 22:22:31 +00:00
|
|
|
$admin = get_admin();
|
2005-07-13 20:26:16 +00:00
|
|
|
$site = get_site();
|
2005-05-16 22:22:31 +00:00
|
|
|
|
|
|
|
$message = "$site->fullname: Transaction failed.\n\n$subject\n\n";
|
|
|
|
foreach ($data as $key => $value) {
|
|
|
|
$message .= "$key => $value\n";
|
|
|
|
}
|
|
|
|
email_to_user($admin, $admin, "CC ERROR: ".$subject, $message);
|
2005-05-13 09:27:26 +00:00
|
|
|
}
|
2005-05-13 09:05:39 +00:00
|
|
|
|
2005-05-16 15:37:11 +00:00
|
|
|
function check_paid() {
|
|
|
|
|
2005-05-16 22:22:31 +00:00
|
|
|
global $CFG, $SESSION;
|
2005-05-16 15:37:11 +00:00
|
|
|
|
2005-05-16 22:22:31 +00:00
|
|
|
if (isset($SESSION->ccpaid)) {
|
|
|
|
unset($SESSION->ccpaid);
|
|
|
|
redirect($CFG->wwwroot . '/login/logout.php');
|
|
|
|
exit;
|
|
|
|
}
|
2005-05-16 15:37:11 +00:00
|
|
|
}
|
|
|
|
|
2005-05-13 09:27:26 +00:00
|
|
|
} // end of class definition
|
2005-05-16 22:22:31 +00:00
|
|
|
?>
|