From: moodler Date: Thu, 24 Jul 2008 08:38:03 +0000 (+0000) Subject: MDL-10107 - First check-in of Messaging 2.0 code from Luis Rodrigues, GSOC student. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=3b120e464ff936cc806e00b8121e7d0ebd6d7982;p=moodle.git MDL-10107 - First check-in of Messaging 2.0 code from Luis Rodrigues, GSOC student. This new messaging system replaces all the various email_to_user() calls. They are now replaced by events triggers, and the messages are then processed centrally according to user preferences and sent to one or more processors (email, popup, jabber etc...) This code is not finished yet, a lot of work still has to be done on the interface. However, the basic structure is there and should be working. Luis and I will be reviewing and polishing this heavily in the next few weeks. --- diff --git a/admin/handlevirus.php b/admin/handlevirus.php index b81faa4d0f..03e3a056de 100644 --- a/admin/handlevirus.php +++ b/admin/handlevirus.php @@ -6,6 +6,8 @@ * php -d error_log=/path/to/log thisfile.php will override the default error log for php cli, which is stderr, so if you want this script to just print stuff out, use php thisfile.php instead. */ +require_once($CFG->libdir.'/eventslib.php'); + $fd = fopen('php://stdin','r'); if (!$fd) { @@ -59,7 +61,22 @@ function notify_user($user,$subject,$a) { return false; } $body = get_string('virusfoundlater','moodle',$a); + + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = get_admin(); + $eventdata->userto = $user; + $eventdata->subject = $subject; + $eventdata->fullmessage = $body; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + + /* email_to_user($user,get_admin(),$subject,$body); + */ } @@ -69,7 +86,20 @@ function notify_admins($user,$subject,$a) { $body = get_string('virusfoundlateradmin','moodle',$a); foreach ($admins as $admin) { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $admin; + $eventdata->userto = $admin; + $eventdata->subject = $subject; + $eventdata->fullmessage = $body; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($admin,$admin,$subject,$body); + */ } } @@ -81,7 +111,20 @@ function notify_admins_unknown($file,$a) { $subject = get_string('virusfoundsubject','moodle',format_string($site->fullname)); $body = get_string('virusfoundlateradminnolog','moodle',$a); foreach ($admins as $admin) { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $admin; + $eventdata->userto = $admin; + $eventdata->subject = $subject; + $eventdata->fullmessage = $body; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($admin,$admin,$subject,$body); + */ } } diff --git a/backup/backup_scheduled.php b/backup/backup_scheduled.php index 3d6cfcebf7..3db929bab5 100644 --- a/backup/backup_scheduled.php +++ b/backup/backup_scheduled.php @@ -1,5 +1,7 @@ libdir.'/eventslib.php'); //This function is executed via moodle cron //It prepares all the info and execute backups as necessary @@ -195,7 +197,20 @@ function schedule_backup_cron() { $subject = $prefix.get_string("scheduledbackupstatus"); //Send the message + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $admin; + $eventdata->userto = $admin; + $eventdata->subject = $subject; + $eventdata->fullmessage = $message; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($admin,$admin,$subject,$message); + */ } diff --git a/course/pending.php b/course/pending.php index 11de7e4e6a..6e46a2f1c2 100644 --- a/course/pending.php +++ b/course/pending.php @@ -5,6 +5,7 @@ require_once($CFG->libdir.'/pagelib.php'); require_once($CFG->libdir.'/blocklib.php'); require_once('lib.php'); + require_once($CFG->libdir.'/eventslib.php'); require_login(); @@ -52,7 +53,21 @@ $a->name = $course->fullname; $a->url = $CFG->wwwroot.'/course/view.php?id='.$courseid; $a->teacher = $course->teacher; + + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $USER; + $eventdata->userto = $user; + $eventdata->subject = get_string('courseapprovedsubject'); + $eventdata->fullmessage = get_string('courseapprovedemail','moodle',$a); + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($user,$USER,get_string('courseapprovedsubject'),get_string('courseapprovedemail','moodle',$a)); + */ redirect($CFG->wwwroot.'/course/edit.php?id='.$courseid); exit; } @@ -79,7 +94,20 @@ } else { $user = $DB->get_record("user", array("id"=>$reject->requester)); + + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $USER; + $eventdata->userto = $user; + $eventdata->subject = get_string('courserejectsubject'); + $eventdata->fullmessage = get_string('courserejectemail','moodle',$rejectnotice); + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + /* email_to_user($user,$USER,get_string('courserejectsubject'),get_string('courserejectemail','moodle',$rejectnotice)); + */ $DB->delete_records("course_request", array("id"=>$reject->id)); notice(get_string('courserejected'),'pending.php'); } diff --git a/enrol/authorize/enrol.php b/enrol/authorize/enrol.php index f7765d385e..e2c680b381 100755 --- a/enrol/authorize/enrol.php +++ b/enrol/authorize/enrol.php @@ -4,6 +4,7 @@ require_once($CFG->dirroot.'/enrol/enrol.class.php'); require_once($CFG->dirroot.'/enrol/authorize/const.php'); require_once($CFG->dirroot.'/enrol/authorize/localfuncs.php'); require_once($CFG->dirroot.'/enrol/authorize/authorizenet.class.php'); +require_once($CFG->libdir.'/eventslib.php'); /** * Authorize.net Payment Gateway plugin @@ -171,7 +172,7 @@ class enrolment_plugin_authorize $order->currency = $curcost['currency']; $order->id = $DB->insert_record("enrol_authorize", $order); if (!$order->id) { - email_to_admin("Error while trying to insert new data", $order); + message_to_admin("Error while trying to insert new data", $order); return "Insert record error. Admin has been notified!"; } @@ -242,7 +243,20 @@ class enrolment_plugin_authorize $context = get_context_instance(CONTEXT_COURSE, $course->id); if (($paymentmanagers = get_users_by_capability($context, 'enrol/authorize:managepayments'))) { foreach ($paymentmanagers as $paymentmanager) { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $USER; + $eventdata->userto = $paymentmanager; + $eventdata->subject = $emailsubject; + $eventdata->fullmessage = $emailmessage; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($paymentmanager, $USER, $emailsubject, $emailmessage); + */ } } redirect($CFG->wwwroot, get_string("reviewnotify", "enrol_authorize"), '30'); @@ -265,12 +279,26 @@ class enrolment_plugin_authorize $a = new stdClass; $a->course = "$course->fullname"; $a->user = fullname($USER); + + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $USER; + $eventdata->userto = $paymentmanager; + $eventdata->subject = get_string("enrolmentnew", '', format_string($course->shortname)); + $eventdata->fullmessage = get_string('enrolmentnewuser', '', $a); + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user( $paymentmanager, $USER, get_string("enrolmentnew", '', format_string($course->shortname)), get_string('enrolmentnewuser', '', $a) ); + */ } if (!empty($CFG->enrol_mailadmins)) { $a = new stdClass; @@ -278,18 +306,31 @@ class enrolment_plugin_authorize $a->user = fullname($USER); $admins = get_admins(); foreach ($admins as $admin) { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $USER; + $eventdata->userto = $paymentmanager; + $eventdata->subject = get_string("enrolmentnew", '', format_string($course->shortname)); + $eventdata->fullmessage = get_string('enrolmentnewuser', '', $a); + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user( $admin, $USER, get_string("enrolmentnew", '', format_string($course->shortname)), get_string('enrolmentnewuser', '', $a) ); + */ } } } else { - email_to_admin("Error while trying to enrol " . fullname($USER) . " in '$course->fullname'", $order); + message_to_admin("Error while trying to enrol " . fullname($USER) . " in '$course->fullname'", $order); } if ($SESSION->wantsurl) { @@ -308,7 +349,7 @@ class enrolment_plugin_authorize } else { - email_to_admin($message, $order); + message_to_admin($message, $order); return $message; } } @@ -348,7 +389,7 @@ class enrolment_plugin_authorize $order->currency = $curcost['currency']; $order->id = $DB->insert_record("enrol_authorize", $order); if (!$order->id) { - email_to_admin("Error while trying to insert new data", $order); + message_to_admin("Error while trying to insert new data", $order); return "Insert record error. Admin has been notified!"; } @@ -385,7 +426,7 @@ class enrolment_plugin_authorize return NULL; } else { - email_to_admin($message, $order); + message_to_admin($message, $order); return $message; } } @@ -695,10 +736,35 @@ class enrolment_plugin_authorize $adminuser = get_admin(); if (!empty($faults)) { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $adminuser; + $eventdata->userto = $adminuser; + $eventdata->subject = "AUTHORIZE.NET CRON FAULTS"; + $eventdata->fullmessage = $faults; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($adminuser, $adminuser, "AUTHORIZE.NET CRON FAULTS", $faults); + */ } if (!empty($CFG->enrol_mailadmins)) { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $adminuser; + $eventdata->userto = $adminuser; + $eventdata->subject = "AUTHORIZE.NET CRON LOG"; + $eventdata->fullmessage = $this->log; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + /* email_to_user($adminuser, $adminuser, "AUTHORIZE.NET CRON LOG", $this->log); + */ } // Send emails to students about which courses have enrolled. @@ -757,7 +823,20 @@ class enrolment_plugin_authorize $a->url = $CFG->wwwroot.'/enrol/authorize/uploadcsv.php'; $message = get_string('pendingecheckemail', 'enrol_authorize', $a); foreach($csvusers as $csvuser) { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $adminuser; + $eventdata->userto = $csvuser; + $eventdata->subject = $subject; + $eventdata->fullmessage = $message; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* @email_to_user($csvuser, $adminuser, $subject, $message); + */ } mtrace(" users who have 'enrol/authorize:uploadcsv' were mailed"); } @@ -791,7 +870,21 @@ class enrolment_plugin_authorize $a->enrolurl = "$CFG->wwwroot/$CFG->admin/enrol_config.php?enrol=authorize"; $a->url = $CFG->wwwroot.'/enrol/authorize/index.php?status='.AN_STATUS_AUTH; $message = get_string('pendingordersemail', 'enrol_authorize', $a); + + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $adminuser; + $eventdata->userto = $adminuser; + $eventdata->subject = $subject; + $eventdata->fullmessage = $message; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($adminuser, $adminuser, $subject, $message); + */ // Email to payment managers if (empty($CFG->an_emailexpiredteacher)) { @@ -830,7 +923,20 @@ class enrolment_plugin_authorize $a->url = $CFG->wwwroot.'/enrol/authorize/index.php?course='.$lastcourse.'&status='.AN_STATUS_AUTH; $message = get_string('pendingordersemailteacher', 'enrol_authorize', $a); foreach ($paymentmanagers as $paymentmanager) { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $adminuser; + $eventdata->userto = $paymentmanager; + $eventdata->subject = $subject; + $eventdata->fullmessage = $message; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($paymentmanager, $adminuser, $subject, $message); + */ } } } diff --git a/enrol/authorize/localfuncs.php b/enrol/authorize/localfuncs.php index 237c80faa4..adf31ef3ec 100644 --- a/enrol/authorize/localfuncs.php +++ b/enrol/authorize/localfuncs.php @@ -1,5 +1,7 @@ libdir.'/eventslib.php'); + function get_course_cost($course) { global $CFG; @@ -111,7 +113,7 @@ function get_list_of_bank_account_types($getall = false) } } -function email_to_admin($subject, $data) +function message_to_admin($subject, $data) { global $SITE; @@ -120,7 +122,19 @@ function email_to_admin($subject, $data) $message = "$SITE->fullname: Transaction failed.\n\n$subject\n\n"; $message .= print_r($data, true); + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $admin; + $eventdata->userto = $admin; + $eventdata->subject = "$SITE->fullname: Authorize.net ERROR"; + $eventdata->fullmessage = $emailmessage; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + /* email_to_user($admin, $admin, "$SITE->fullname: Authorize.net ERROR", $message); + */ } function send_welcome_messages($orderdata) @@ -177,7 +191,21 @@ function send_welcome_messages($orderdata) $a->profileurl = "$CFG->wwwroot/user/view.php?id=$lastuserid"; $a->paymenturl = "$CFG->wwwroot/enrol/authorize/index.php?user=$lastuserid"; $emailmessage = get_string('welcometocoursesemail', 'enrol_authorize', $a); + + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $sender; + $eventdata->userto = $user; + $eventdata->subject = get_string("enrolmentnew", '', $SITE->shortname); + $eventdata->fullmessage = $emailmessage; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* @email_to_user($user, $sender, get_string("enrolmentnew", '', $SITE->shortname), $emailmessage); + */ } } while ($ei); diff --git a/enrol/authorize/uploadcsv.php b/enrol/authorize/uploadcsv.php index fbbc16285d..5e768e6da3 100644 --- a/enrol/authorize/uploadcsv.php +++ b/enrol/authorize/uploadcsv.php @@ -5,6 +5,7 @@ require_once($CFG->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(); @@ -224,7 +225,21 @@ function authorize_process_csv($filename) /// 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); + + /* email_to_user($admin, $admin, "$SITE->fullname: Authorize.net CSV ERROR LOG", $ignoredlines); + */ } /// Send welcome messages to users diff --git a/enrol/flatfile/enrol.php b/enrol/flatfile/enrol.php index d770a8a06f..9cf5a1fe95 100644 --- a/enrol/flatfile/enrol.php +++ b/enrol/flatfile/enrol.php @@ -5,6 +5,7 @@ // $CFG->enrol_emailteachers: send email to teachers when they are enrolled in a course // $CFG->enrol_emailadmins: email the log from the cron job to the admin +require_once($CFG->libdir.'/eventslib.php'); class enrolment_plugin_flatfile { @@ -216,8 +217,22 @@ function get_access_icons($course) { if (!empty($CFG->enrol_mailstudents)) { $a->coursename = "$course->fullname"; $a->profileurl = "$CFG->wwwroot/user/view.php?id=$user->id&course=$course->id"; + + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $teacher; + $eventdata->userto = $user; + $eventdata->subject = get_string("enrolmentnew", '', $course->shortname); + $eventdata->fullmessage = get_string('welcometocoursetext', '', $a); + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($user, $teacher, get_string("enrolmentnew", '', $course->shortname), get_string('welcometocoursetext', '', $a)); + */ } if (!empty($CFG->enrol_mailteachers) && $teachers) { @@ -227,8 +242,22 @@ function get_access_icons($course) { if (!$u->hidden || has_capability('moodle/role:viewhiddenassigns', $context)) { $a->course = "$course->fullname"; $a->user = fullname($user); + + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $user; + $eventdata->userto = $teacher; + $eventdata->subject = get_string("enrolmentnew", '', $course->shortname); + $eventdata->fullmessage = get_string('enrolmentnewuser', '', $a); + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($teacher, $user, get_string("enrolmentnew", '', $course->shortname), get_string('enrolmentnewuser', '', $a)); + */ } } } @@ -246,12 +275,38 @@ function get_access_icons($course) { } // end of if(file_open) if(! @unlink($filename)) { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = get_admin(); + $eventdata->userto = get_admin(); + $eventdata->subject = get_string("filelockedmailsubject", "enrol_flatfile"); + $eventdata->fullmessage = get_string("filelockedmail", "enrol_flatfile", $filename); + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user(get_admin(), get_admin(), get_string("filelockedmailsubject", "enrol_flatfile"), get_string("filelockedmail", "enrol_flatfile", $filename)); + */ $this->log .= "Error unlinking file $filename\n"; } if (!empty($CFG->enrol_mailadmins)) { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = get_admin(); + $eventdata->userto = get_admin(); + $eventdata->subject = "Flatfile Enrolment Log"; + $eventdata->fullmessage = $this->log; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user(get_admin(), get_admin(), "Flatfile Enrolment Log", $this->log); + */ } } // end of if(file_exists) diff --git a/enrol/imsenterprise/enrol.php b/enrol/imsenterprise/enrol.php index 1c26cfc7dd..9a5ee2cd00 100644 --- a/enrol/imsenterprise/enrol.php +++ b/enrol/imsenterprise/enrol.php @@ -6,6 +6,7 @@ */ require_once("$CFG->libdir/blocklib.php"); require_once($CFG->dirroot.'/group/lib.php'); +require_once($CFG->libdir.'/eventslib.php'); // The following flags are set in the configuration // $CFG->enrol_imsfilelocation: where is the file we are looking for? @@ -380,8 +381,21 @@ function cron() { }else{ $msg .= "Logging is currently not active."; } - + + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = get_admin(); + $eventdata->userto = get_admin(); + $eventdata->subject = "Moodle IMS Enterprise enrolment notification"; + $eventdata->fullmessage = $msg; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user(get_admin(), get_admin(), "Moodle IMS Enterprise enrolment notification", $msg); + */ $this->log_line('Notification email sent to administrator.'); } diff --git a/enrol/manual/enrol.php b/enrol/manual/enrol.php index 5f31330ee0..af7bd3efa6 100644 --- a/enrol/manual/enrol.php +++ b/enrol/manual/enrol.php @@ -23,6 +23,7 @@ /////////////////////////////////////////////////////////////////////////// require_once($CFG->dirroot.'/group/lib.php'); +require_once($CFG->libdir.'/eventslib.php'); /** * enrolment_plugin_manual is the default enrolment plugin @@ -313,8 +314,20 @@ function cron() { $strexpirynotifystudentsemail = get_string('expirynotifystudentsemail', '', $a); $strexpirynotify = get_string('expirynotify'); + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $teacher; + $eventdata->userto = $user; + $eventdata->subject = format_string($SITE->fullname) .' '. $strexpirynotify; + $eventdata->fullmessage = $strexpirynotifystudentsemail; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + /* email_to_user($user, $teacher, format_string($SITE->fullname) .' '. $strexpirynotify, $strexpirynotifystudentsemail); + */ } } } @@ -331,7 +344,20 @@ function cron() { $strexpirynotifyemail = get_string('expirynotifyemail', '', $a); $strexpirynotify = get_string('expirynotify'); + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $admin; + $eventdata->userto = $teacher; + $eventdata->subject = $a->coursename .' '. $strexpirynotify; + $eventdata->fullmessage = $strexpirynotifyemail; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($teacher, $admin, $a->coursename .' '. $strexpirynotify, $strexpirynotifyemail); + */ } } } diff --git a/enrol/paypal/ipn.php b/enrol/paypal/ipn.php index b143b1af43..e71976ea50 100644 --- a/enrol/paypal/ipn.php +++ b/enrol/paypal/ipn.php @@ -15,6 +15,7 @@ require("../../config.php"); require("enrol.php"); + require_once($CFG->libdir.'/eventslib.php'); /// Keep out casual intruders if (empty($_POST) or !empty($_GET)) { @@ -46,17 +47,17 @@ /// get the user and course records if (! $user = $DB->get_record("user", array("id"=>$data->userid))) { - email_paypal_error_to_admin("Not a valid user id", $data); + message_paypal_error_to_admin("Not a valid user id", $data); die; } if (! $course = $DB->get_record("course", array("id"=>$data->courseid))) { - email_paypal_error_to_admin("Not a valid course id", $data); + message_paypal_error_to_admin("Not a valid course id", $data); die; } if (! $context = get_context_instance(CONTEXT_COURSE, $course->id)) { - email_paypal_error_to_admin("Not a valid context id", $data); + message_paypal_error_to_admin("Not a valid context id", $data); die; } @@ -71,7 +72,7 @@ if (!$fp) { /// Could not open a socket to PayPal - FAIL echo "

Error: could not access paypal.com

"; - email_paypal_error_to_admin("Could not access paypal.com to verify payment", $data); + message_paypal_error_to_admin("Could not access paypal.com to verify payment", $data); die; } @@ -93,7 +94,7 @@ if ($data->payment_status != "Completed" and $data->payment_status != "Pending") { role_unassign(0, $data->userid, 0, $context->id); - email_paypal_error_to_admin("Status not completed or pending. User unenrolled from course", $data); + message_paypal_error_to_admin("Status not completed or pending. User unenrolled from course", $data); die; } @@ -101,8 +102,21 @@ // Email user to let them know. Email admin. if ($data->payment_status == "Pending" and $data->pending_reason != "echeck") { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = get_admin(); + $eventdata->userto = $user; + $eventdata->subject = "Moodle: PayPal payment"; + $eventdata->fullmessage = "Your PayPal payment is pending."; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($user, get_admin(), "Moodle: PayPal payment", "Your PayPal payment is pending."); - email_paypal_error_to_admin("Payment pending", $data); + */ + message_paypal_error_to_admin("Payment pending", $data); die; } @@ -119,24 +133,24 @@ if ($existing = $DB->get_record("enrol_paypal", array("txn_id"=>$data->txn_id))) { // Make sure this transaction doesn't exist already - email_paypal_error_to_admin("Transaction $data->txn_id is being repeated!", $data); + message_paypal_error_to_admin("Transaction $data->txn_id is being repeated!", $data); die; } if ($data->business != $CFG->enrol_paypalbusiness) { // Check that the email is the one we want it to be - email_paypal_error_to_admin("Business email is $data->business (not $CFG->enrol_paypalbusiness)", $data); + message_paypal_error_to_admin("Business email is $data->business (not $CFG->enrol_paypalbusiness)", $data); die; } if (!$user = $DB->get_record('user', array('id'=>$data->userid))) { // Check that user exists - email_paypal_error_to_admin("User $data->userid doesn't exist", $data); + message_paypal_error_to_admin("User $data->userid doesn't exist", $data); die; } if (!$course = $DB->get_record('course', array('id'=>$data->courseid))) { // Check that course exists - email_paypal_error_to_admin("Course $data->courseid doesn't exist", $data);; + message_paypal_error_to_admin("Course $data->courseid doesn't exist", $data);; die; } @@ -149,7 +163,7 @@ if ($data->payment_gross < $cost) { $cost = format_float($cost, 2); - email_paypal_error_to_admin("Amount paid is not enough ($data->payment_gross < $cost))", $data); + message_paypal_error_to_admin("Amount paid is not enough ($data->payment_gross < $cost))", $data); die; } @@ -157,11 +171,11 @@ // ALL CLEAR ! if (!$DB->insert_record("enrol_paypal", $data)) { // Insert a transaction record - email_paypal_error_to_admin("Error while trying to insert valid transaction", $data); + message_paypal_error_to_admin("Error while trying to insert valid transaction", $data); } if (!enrol_into_course($course, $user, 'paypal')) { - email_paypal_error_to_admin("Error while trying to enrol ".fullname($user)." in '$course->fullname'", $data); + message_paypal_error_to_admin("Error while trying to enrol ".fullname($user)." in '$course->fullname'", $data); die; } else { $teacher = get_teacher($course->id); @@ -169,24 +183,65 @@ if (!empty($CFG->enrol_mailstudents)) { $a->coursename = $course->fullname; $a->profileurl = "$CFG->wwwroot/user/view.php?id=$user->id"; + + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $teacher; + $eventdata->userto = $user; + $eventdata->subject = get_string("enrolmentnew", '', $course->shortname); + $eventdata->fullmessage = get_string('welcometocoursetext', '', $a); + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* 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); + + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $user; + $eventdata->userto = $teacher; + $eventdata->subject = get_string("enrolmentnew", '', $course->shortname); + $eventdata->fullmessage = get_string('enrolmentnewuser', '', $a); + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* 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) { + foreach ($admins as $admin) { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $user; + $eventdata->userto = $admin; + $eventdata->subject = get_string("enrolmentnew", '', $course->shortname); + $eventdata->fullmessage = get_string('enrolmentnewuser', '', $a); + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($admin, $user, get_string("enrolmentnew", '', $course->shortname), get_string('enrolmentnewuser', '', $a)); + */ } } @@ -195,7 +250,7 @@ } else if (strcmp ($result, "INVALID") == 0) { // ERROR $DB->insert_record("enrol_paypal", $data, false); - email_paypal_error_to_admin("Received an invalid payment notification!! (Fake payment?)", $data); + message_paypal_error_to_admin("Received an invalid payment notification!! (Fake payment?)", $data); } } @@ -207,7 +262,7 @@ /// FUNCTIONS ////////////////////////////////////////////////////////////////// -function email_paypal_error_to_admin($subject, $data) { +function message_paypal_error_to_admin($subject, $data) { $admin = get_admin(); $site = get_site(); @@ -217,8 +272,20 @@ function email_paypal_error_to_admin($subject, $data) { $message .= "$key => $value\n"; } + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $admin; + $eventdata->userto = $admin; + $eventdata->subject = "PAYPAL ERROR: ".$subject; + $eventdata->fullmessage = $message; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + +/* email_to_user($admin, $admin, "PAYPAL ERROR: ".$subject, $message); - +*/ } ?> diff --git a/error/index.php b/error/index.php index 7ed0b45d8f..a2b4b1a409 100644 --- a/error/index.php +++ b/error/index.php @@ -1,6 +1,7 @@ libdir.'/eventslib.php'); if ($form = data_submitted()) { // form submitted, do not check referer (original page unknown)! @@ -20,8 +21,21 @@ $supportuser->lastname = $CFG->supportname ? '' : $admin->lastname; $supportuser->maildisplay = true; - /// Send the email and redirect + /// Send the message and redirect + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $USER; + $eventdata->userto = $supportuser; + $eventdata->subject = 'Error: '. $form->referer .' -> '. $form->requested; + $eventdata->fullmessage = $form->text; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($supportuser, $USER, 'Error: '. $form->referer .' -> '. $form->requested, $form->text); + */ redirect($CFG->wwwroot .'/course/', 'Message sent, thanks', 3); exit; diff --git a/lang/en_utf8/message.php b/lang/en_utf8/message.php index b2e7ec1a98..8bb7c63655 100644 --- a/lang/en_utf8/message.php +++ b/lang/en_utf8/message.php @@ -10,10 +10,8 @@ $string['allmine'] = 'All messages to me or from me'; $string['allstudents'] = 'All messages between students in course'; $string['allusers'] = 'All messages from all users'; $string['backupmessageshelp'] = 'If enabled, then instant messages will be included in SITE automated backups'; -$string['beepnewmessage'] = 'Beep when a new message comes in (may require browser plugin that can play sounds, such as Quicktime)'; $string['blockcontact'] = 'Block contact'; $string['blockedmessages'] = '$a message(s) to/from blocked users'; -$string['blocknoncontacts'] = 'Block all new messages from people who are not on my contact list'; $string['contactlistempty'] = 'Your contact list is currently empty'; $string['contacts'] = 'Contacts'; $string['context'] = 'context'; @@ -38,7 +36,6 @@ $string['messagingdisabled'] = 'Messaging is disabled on this site, emails will $string['mycontacts'] = 'My Contacts'; $string['newsearch'] = 'New search'; $string['newonlymsg'] = 'Show only new'; -$string['noframesjs'] = 'Version without frames and JavaScript'; $string['nomessages'] = 'No messages waiting'; $string['nomessagesfound'] = 'No messages were found'; $string['nosearchresults'] = 'There were no results from your search'; @@ -61,7 +58,6 @@ $string['sendmessageto'] = 'Send message to $a'; $string['sendmessagetopopup'] = "Send message to \$a - new window"; $string['settings'] = 'Settings'; $string['settingssaved'] = 'Your settings have been saved'; -$string['showmessagewindow'] = 'Automatically show Message window when I get new messages (your browser needs to be set so that it doesn\'t block popups on this site)'; $string['strftimedaydatetime'] = '%%A, %%d %%B %%Y, %%I:%%M %%p'; $string['timenosee'] = 'Minutes since I was last seen online'; $string['timesent'] = 'Time Sent'; @@ -71,4 +67,20 @@ $string['userisblockingyou'] = 'This user has blocked you from sending messages $string['userisblockingyounoncontact'] = 'This user is only accepting messages from people listed as contacts, and you are not currently on the list.'; $string['userssearchresults'] = 'Search results: $a users found'; +//luis: used in the message system +$string['editmymessage'] = 'Messaging'; +$string['guestnoeditmessage'] = 'Guest user can not edit messaging options'; +$string['guestnoeditmessageother'] = 'Guest user can not edit other user messaging options'; +$string['loggedin'] = 'Logged In: '; +$string['loggedoff'] = 'Logged Off: '; +$string['general_config'] = 'General Options'; +$string['providers_config'] = 'Message Sources'; +$string['processor_config'] = 'Destinations Configuration'; +$string['showmessagewindow'] = 'Popup window on new message'; +$string['blocknoncontacts'] = 'Block unknown users'; +$string['beepnewmessage'] = 'Beep on new message'; +$string['noframesjs'] = 'No frames and JavaScript'; +$string['providerstag'] = 'Source: '; +$string['processortag'] = 'Destination: '; + ?> diff --git a/lang/en_utf8/role.php b/lang/en_utf8/role.php index 698bd08a95..f2d99f49ef 100644 --- a/lang/en_utf8/role.php +++ b/lang/en_utf8/role.php @@ -189,4 +189,9 @@ $string['course:viewcoursegrades'] = 'View course grades'; $string['user:viewusergrades'] = 'View user grades'; $string['course:managegrades'] = 'Manage grades'; +//LUIS: new message system +$string['user:editmessageprofile'] = 'Edit user messaging profile'; +$string['user:editownmessageprofile'] = 'Edit own user messaging profile'; + + ?> diff --git a/lib/db/access.php b/lib/db/access.php index a4703ec421..677a259afd 100644 --- a/lib/db/access.php +++ b/lib/db/access.php @@ -830,6 +830,29 @@ $moodle_capabilities = array( 'admin' => CAP_ALLOW ) ), + + //capabilities designed for the new message system configuration + 'moodle/user:editmessageprofile' => array( + + 'riskbitmask' => RISK_SPAM, + + 'captype' => 'write', + 'contextlevel' => CONTEXT_USER, + 'legacy' => array( + 'admin' => CAP_ALLOW + ) + ), + + 'moodle/user:editownmessageprofile' => array( + + 'captype' => 'write', + 'contextlevel' => CONTEXT_SYSTEM, + 'legacy' => array( + 'guest' => CAP_PROHIBIT, + 'user' => CAP_ALLOW, + 'admin' => CAP_ALLOW + ) + ), 'moodle/question:managecategory' => array( diff --git a/lib/db/events.php b/lib/db/events.php index 9a5542423c..deecbf448b 100644 --- a/lib/db/events.php +++ b/lib/db/events.php @@ -29,7 +29,54 @@ /* List of handlers */ -$handlers = array (); // no handlers for now in core +$handlers = array ( + + /* + * Messaging Events + */ +/* + * required parameters (object): + * modulename - + * modulefile - + * + */ + 'message_provider_register' => array ( + 'handlerfile' => '/lib/messagelib.php', + 'handlerfunction' => 'message_provider_register_handler', + 'schedule' => 'instant' + ), + +/* + * required parameters (object): + * modulename - + * + */ + + 'message_provider_unregister' => array ( + 'handlerfile' => '/lib/messagelib.php', + 'handlerfunction' => 'message_provider_unregister_handler', + 'schedule' => 'instant' + ), + +/* required parameters (object): + * modulename - + * userfrom + * userto + * subject + * fullmessage - the full message in a given format + * fullmessageformat - the format if the full message (FORMAT_MOODLE, FORMAT_HTML, ..) + * fullmessagehtml - the full version (the message processor will choose with one to use) + * smallmessage - the small version of the message + */ + + 'message_send' => array ( + 'handlerfile' => '/lib/messagelib.php', + 'handlerfunction' => 'message_send_handler', + 'schedule' => 'instant' + ) + +); + diff --git a/lib/db/install.xml b/lib/db/install.xml index 6e22adebd6..78ed9cc9ff 100644 --- a/lib/db/install.xml +++ b/lib/db/install.xml @@ -311,12 +311,14 @@ - - - - - - + + + + + + + + @@ -329,14 +331,15 @@
- - - - - - - - + + + + + + + + + @@ -1708,7 +1711,7 @@
- +
@@ -1722,6 +1725,35 @@
+ + + + + + + + + +
+ + + + + + + + +
+ + + + + + + + + +
@@ -1730,7 +1762,7 @@ - + @@ -1752,5 +1784,10 @@ + + + + + diff --git a/lib/db/upgrade.php b/lib/db/upgrade.php index fbe8ab0be6..2e5746127e 100644 --- a/lib/db/upgrade.php +++ b/lib/db/upgrade.php @@ -191,7 +191,7 @@ function xmldb_main_upgrade($oldversion=0) { $result = $DB->delete_records_select('role_names', $DB->sql_isempty('role_names', 'name', false, false)); upgrade_main_savepoint($result, 2008070300); } - + if ($result && $oldversion < 2008070700) { if (isset($CFG->defaultuserroleid) and isset($CFG->guestroleid) and $CFG->defaultuserroleid == $CFG->guestroleid) { // guest can not be selected in defaultuserroleid! @@ -262,6 +262,91 @@ function xmldb_main_upgrade($oldversion=0) { /// Main savepoint reached upgrade_main_savepoint($result, 2008070701); } + + if ($result && $oldversion < 2008072400) { + /// Create the database tables for message_processors and message_providers + $table = new XMLDBTable('message_providers'); + $table->addFieldInfo('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null, null, null); + $table->addFieldInfo('modulename', XMLDB_TYPE_CHAR, '166', null, XMLDB_NOTNULL, null, null, null, null); + $table->addFieldInfo('modulefile', XMLDB_TYPE_CHAR, '255', null, XMLDB_NOTNULL, null, null, null, null); + $table->addKeyInfo('primary', XMLDB_KEY_PRIMARY, array('id')); + $dbman->create_table($table); + + $table = new XMLDBTable('message_processors'); + $table->addFieldInfo('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null, null, null); + $table->addFieldInfo('name', XMLDB_TYPE_CHAR, '166', null, XMLDB_NOTNULL, null, null, null, null); + $table->addKeyInfo('primary', XMLDB_KEY_PRIMARY, array('id')); + $dbman->create_table($table); + + + $provider = new object(); + $provider->modulename = 'moodle'; + $provider->modulefile = 'index.php'; + $DB->insert_record('message_providers', $provider); + + /// delete old and create new fields + $table = new XMLDBTable('message'); + $field = new XMLDBField('messagetype'); + $dbman->drop_field($table, $field); + + /// fields to rename + $field = new XMLDBField('message'); + $field->setAttributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, null, null, null); + $dbman->rename_field($table, $field, 'fullmessage'); + $field = new XMLDBField('format'); + $field->setAttributes(XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, null, null, null, null, '0', null); + $dbman->rename_field($table, $field, 'fullmessageformat'); + + /// new message fields + $field = new XMLDBField('subject'); + $field->setAttributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, null, null, null); + $dbman->add_field($table, $field); + $field = new XMLDBField('fullmessagehtml'); + $field->setAttributes(XMLDB_TYPE_TEXT, 'medium', null, null, null, null, null, null, null); + $dbman->add_field($table, $field); + $field = new XMLDBField('smallmessage'); + $field->setAttributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, null, null, null); + $dbman->add_field($table, $field); + + + $table = new XMLDBTable('message_read'); + $field = new XMLDBField('messagetype'); + $dbman->drop_field($table, $field); + $field = new XMLDBField('mailed'); + $dbman->drop_field($table, $field); + + /// fields to rename + $field = new XMLDBField('message'); + $field->setAttributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, null, null, null); + $dbman->rename_field($table, $field, 'fullmessage'); + $field = new XMLDBField('format'); + $field->setAttributes(XMLDB_TYPE_INTEGER, '4', XMLDB_UNSIGNED, null, null, null, null, '0', null); + $dbman->rename_field($table, $field, 'fullmessageformat'); + + + /// new message fields + $field = new XMLDBField('subject'); + $field->setAttributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, null, null, null); + $dbman->add_field($table, $field); + $field = new XMLDBField('fullmessagehtml'); + $field->setAttributes(XMLDB_TYPE_TEXT, 'medium', null, null, null, null, null, null, null); + $dbman->add_field($table, $field); + $field = new XMLDBField('smallmessage'); + $field->setAttributes(XMLDB_TYPE_TEXT, 'small', null, null, null, null, null, null, null); + $dbman->add_field($table, $field); + + /// new table + $table = new XMLDBTable('message_working'); + $table->addFieldInfo('id', XMLDB_TYPE_INTEGER, '10', null, XMLDB_NOTNULL, XMLDB_SEQUENCE, null, null, null); + $table->addFieldInfo('unreadmessageid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, null, null); + $table->addFieldInfo('processorid', XMLDB_TYPE_INTEGER, '10', XMLDB_UNSIGNED, XMLDB_NOTNULL, null, null, null, null); + $table->addKeyInfo('primary', XMLDB_KEY_PRIMARY, array('id')); + $dbman->create_table($table); + + + upgrade_main_savepoint($result, 2008072400); + } + /* * TODO: diff --git a/lib/messagelib.php b/lib/messagelib.php new file mode 100644 index 0000000000..c633264d32 --- /dev/null +++ b/lib/messagelib.php @@ -0,0 +1,153 @@ +modulename = $eventdata->modulename; + $provider->modulefile = $eventdata->modulefile; + if (!$DB->insert_record('message_providers', $provider)) { + $return = false; + } + + // everything ok :-) + return $return; +} + +/** + * To be used to ungegister a message provider (curently not used) + * @param object $eventdata the information about the message provider (name and file) + * @return boolean success + */ +function message_provider_unregister_handler($eventdata) { + // everything ok :-) + return true; +} + +/** + * Triggered when a message provider wants to send a message. + * This functions checks the user's processor configuration to send the given type of message, + * then tries to send it. + * @param object $eventdata information about he message (origin, destination, type, content) + * @return boolean success + */ +function message_send_handler($eventdata){ + global $CFG, $DB; + + if (isset($CFG->block_online_users_timetosee)) { + $timetoshowusers = $CFG->block_online_users_timetosee * 60; + } else { + $timetoshowusers = TIMETOSHOWUSERS; + } + +/// Work out if the user is logged in or not + if ((time() - $eventdata->userto->lastaccess) > $timetoshowusers) { + $userstate = 'loggedoff'; + } else { + $userstate = 'loggedin'; + } + +/// Create the message object + $savemessage = new object(); + $savemessage->useridfrom = $eventdata->userfrom->id; + $savemessage->useridto = $eventdata->userto->id; + $savemessage->subject = $eventdata->subject; + $savemessage->fullmessage = $eventdata->fullmessage; + $savemessage->fullmessageformat = $eventdata->fullmessageformat; + $savemessage->fullmessagehtml = $eventdata->fullmessagehtml; + $savemessage->smallmessage = $eventdata->smallmessage; + $savemessage->timecreated = time(); + +/// Find out what processors are defined currently + + // XXX TODO + // Note this currently defaults to email all the time. We need a better solution + // to be able to distinguish between a user who has no settings and one who doesn't want contact + // ... perhaps a "none" setting + + $processor = get_user_preferences('message_provider_'.$eventdata->modulename.'_'.$userstate, 'email', $eventdata->userto->id); + +/// Now process the message + + if (empty($processor)) { // There is no processor so just mark it as read + $savemessage->timeread = time(); + $messageid = $message->id; + unset($message->id); + $DB->insert_record('message_read', $savemessage); + + } else { // Process the message + + /// Store unread message just in case we can not send it + $savemessage->id = $DB->insert_record('message', $savemessage); + + + /// Try to deliver the message to each processor + $processorlist = explode(',', $processor); + foreach ($processorlist as $procname) { + $processorfile = $CFG->dirroot. '/message/output/'.$procname.'/message_output_'.$procname.'.php'; + + if (is_readable($processorfile)) { + include_once( $processorfile ); // defines $module with version etc + $processclass = 'message_output_' . $procname; + + if (class_exists($processclass)) { + $pclass = new $processclass(); + + if (! $pclass->send_message($savemessage)) { + debugging('Error calling message processor '.$procname); + return false; + } + } + } else { + debugging('Error calling message processor '.$procname); + return false; + } + } + } + + return true; +} + +?> diff --git a/lib/uploadlib.php b/lib/uploadlib.php index b902118b66..7fe94c3e2d 100644 --- a/lib/uploadlib.php +++ b/lib/uploadlib.php @@ -9,6 +9,8 @@ * @package moodlecore */ +require_once($CFG->libdir.'/eventslib.php'); + //error_reporting(E_ALL ^ E_NOTICE); /** * This class handles all aspects of fileuploading @@ -642,7 +644,7 @@ function clam_scan_moodle_file(&$file, $course) { $notice .= "\n". clam_handle_infected_file($fullpath); $newreturn = false; } - clam_mail_admins($notice); + clam_message_admins($notice); if ($appendlog) { $file['uploadlog'] .= "\n". get_string('clambroken'); $file['clam'] = 1; @@ -673,7 +675,7 @@ function clam_scan_moodle_file(&$file, $course) { $notice = get_string('virusfound', 'moodle', $info); $notice .= "\n\n". implode("\n", $output); $notice .= "\n\n". clam_handle_infected_file($fullpath); - clam_mail_admins($notice); + clam_message_admins($notice); if ($appendlog) { $info->filename = $file['originalname']; $file['uploadlog'] .= "\n". get_string('virusfounduser', 'moodle', $info); @@ -689,7 +691,7 @@ function clam_scan_moodle_file(&$file, $course) { $notice .= "\n". clam_handle_infected_file($fullpath); $newreturn = false; } - clam_mail_admins($notice); + clam_message_admins($notice); if ($appendlog) { $file['uploadlog'] .= "\n". get_string('clambroken'); $file['clam'] = 1; @@ -703,14 +705,27 @@ function clam_scan_moodle_file(&$file, $course) { * * @param string $notice The body of the email to be sent. */ -function clam_mail_admins($notice) { +function clam_message_admins($notice) { $site = get_site(); $subject = get_string('clamemailsubject', 'moodle', format_string($site->fullname)); $admins = get_admins(); foreach ($admins as $admin) { + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = get_admin(); + $eventdata->userto = $admin; + $eventdata->subject = $subject; + $eventdata->fullmessage = $notice; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + + /* email_to_user($admin, get_admin(), $subject, $notice); + */ } } diff --git a/message/edit.php b/message/edit.php new file mode 100644 index 0000000000..00e88ae7fb --- /dev/null +++ b/message/edit.php @@ -0,0 +1,222 @@ +dirroot.'/message/edit_form.php'); + + +httpsrequired(); + +$userid = optional_param('id', $USER->id, PARAM_INT); // user id +$course = optional_param('course', SITEID, PARAM_INT); // course id (defaults to Site) + +if (!$course = $DB->get_record('course', array('id' => $course))) { + error('Course ID was incorrect'); +} + +if ($course->id != SITEID) { + require_login($course); +} else { + if (!isloggedin()) { + if (empty($SESSION->wantsurl)) { + $SESSION->wantsurl = $CFG->httpswwwroot.'/message/edit.php'; + } + redirect($CFG->httpswwwroot.'/login/index.php'); + } +} + +if (isguestuser()) { + print_error('guestnoeditmessage', 'message'); +} + +if (!$user = $DB->get_record('user', array('id' => $userid))) { + error('User ID was incorrect'); +} + +$systemcontext = get_context_instance(CONTEXT_SYSTEM); +$personalcontext = get_context_instance(CONTEXT_USER, $user->id); + + +// check access control +if ($user->id == $USER->id) { + //editing own message profile + require_capability('moodle/user:editownmessageprofile', $systemcontext); + +} else { + // teachers, parents, etc. + require_capability('moodle/user:editmessageprofile', $personalcontext); + // no editing of guest user account + if (isguestuser($user->id)) { + print_error('guestnoeditmessageother', 'message'); + } + // no editing of primary admin! + $mainadmin = get_admin(); + if ($user->id == $mainadmin->id) { + print_error('adminprimarynoedit'); + } +} + + +//retrieve preferences from db +$preferences = new object(); +$preferences->id = $user->id; + +//get the message general preferences +$preferences->showmessagewindow = get_user_preferences( 'message_showmessagewindow', '', $user->id); +$preferences->blocknoncontacts = get_user_preferences( 'message_blocknoncontacts', '', $user->id); +$preferences->beepnewmessage = get_user_preferences( 'message_beepnewmessage', '', $user->id); +$preferences->noframesjs = get_user_preferences( 'message_noframesjs', '', $user->id); + +//for every message provider get preferences for the form +$providers = $DB->get_records('message_providers'); +foreach ( $providers as $providerid => $provider){ + foreach (array('loggedin', 'loggedoff') as $state){ + $linepref = get_user_preferences('message_provider_'.$provider->modulename.'_'.$state, '', $user->id); + if ($linepref == ''){ + continue; + } + $lineprefarray = explode(',', $linepref); + $preferences->{$provider->modulename.'_'.$state} = array(); + foreach ($lineprefarray as $pref){ + $preferences->{$provider->modulename.'_'.$state}[$provider->modulename.'_'.$state.'_'.$pref] = 1; + } + } +} + +//for every processors put its options on the form (need to get funcion from processor's lib.php) +$processors = $DB->get_records('message_processors'); +foreach ( $processors as $processorid => $processor){ + $processorfile = $CFG->dirroot. '/message/output/'.$processor->name.'/message_output_'.$processor->name.'.php'; + if ( is_readable($processorfile) ) { + include_once( $processorfile ); + $processclass = 'message_output_' . $processor->name; + if ( class_exists($processclass) ){ + $pclass = new $processclass(); + $pclass->load_data($preferences, $user->id); + } else{ + error('Error calling defined processor'); + } + } +} + + +//create form +$userform = new user_edit_form(); +$userform->set_data($preferences); + +if ($messageconf = $userform->get_data()) { + + add_to_log($course->id, 'message', 'update', "edit.php?id=$user->id&course=$course->id", ''); + + $preferences = array(); + + //get the list of normal preferences + $preferences['message_showmessagewindow'] = $messageconf->showmessagewindow?1:0; + $preferences['message_blocknoncontacts'] = $messageconf->blocknoncontacts?1:0; + $preferences['message_beepnewmessage'] = $messageconf->beepnewmessage?1:0; + $preferences['message_noframesjs'] = $messageconf->noframesjs?1:0; + + //get a listing of all the message processors and process the form + $providers = $DB->get_records('message_providers'); + foreach ( $providers as $providerid => $provider){ + foreach (array('loggedin', 'loggedoff') as $state){ + $linepref = ''; + foreach ($messageconf->{$provider->modulename.'_'.$state} as $process=>$one){ + $parray = explode( '_', $process); + if ($linepref == ''){ + $linepref = $parray[2]; + } else { + $linepref .= ','.$parray[2]; + } + } + $preferences[ 'message_provider_'.$provider->modulename.'_'.$state ] = $linepref; + } + } + + //list all the processors options (need to get funcion from processor's lib.php) + $processors = $DB->get_records('message_processors'); + foreach ( $processors as $processorid => $processor){ + $processorfile = $CFG->dirroot. '/message/output/'.$processor->name.'/lib.php'; + if ( is_readable($processorfile) ) { + include_once( $processorfile ); + + $processclass = 'message_output_' . $processor->name; + if ( class_exists($processclass) ){ + $pclass = new $processclass(); + $pclass->process_form($messageconf, $preferences); + } else{ + error('Error calling defined processor'); + } + } + } + + //set the user preferences + if (!set_user_preferences( $preferences, $user->id ) ){ + error('Error updating user message preferences'); + } + + redirect("$CFG->wwwroot/message/edit.php?id=$user->id&course=$course->id"); +} + + +/// Display page header +$streditmymessage = get_string('editmymessage', 'message'); +$strparticipants = get_string('participants'); +$userfullname = fullname($user, true); +if ($course->id != SITEID) { + print_header("$course->shortname: $streditmymessage", "$course->fullname: $streditmessage", + "wwwroot/course/view.php?id=$course->id\">$course->shortname + -> id\">$strparticipants + -> id&course=$course->id\">$userfullname + -> $streditmymessage", ""); +} else { + print_header("$course->shortname: $streditmymessage", $course->fullname, + "wwwroot/user/view.php?id=$user->id&course=$course->id\">$userfullname + -> $streditmymessage", ""); +} +/// Print tabs at the top +$showroles = 1; +$currenttab = 'editmessage'; +require('../user/tabs.php'); + +notify('WARNING: This interface is still under construction!'); + +/// Finally display THE form +$userform->display(); + +/// and proper footer +print_footer($course); + +?> diff --git a/message/edit_form.php b/message/edit_form.php new file mode 100644 index 0000000000..1ffed510d8 --- /dev/null +++ b/message/edit_form.php @@ -0,0 +1,111 @@ +dirroot.'/lib/formslib.php'); + +class user_edit_form extends moodleform { + + // Define the form + function definition () { + global $CFG, $COURSE, $DB; + + $mform =& $this->_form; + $strrequired = get_string('required'); + + /// Add some extra hidden fields + $mform->addElement('hidden', 'id'); //the userid + $mform->addElement('hidden', 'course', $COURSE->id); //courseid + + //get a listing of all the message processors + $processors = $DB->get_records('message_processors'); + + //create the general config section + $mform->addElement('header', 'general_config', get_string('general_config', 'message') ); + $mform->addElement('checkbox', 'showmessagewindow', get_string('showmessagewindow', 'message') ); + $mform->addElement('checkbox', 'blocknoncontacts', get_string('blocknoncontacts', 'message') ); + $mform->addElement('checkbox', 'beepnewmessage', get_string('beepnewmessage', 'message') ); + $mform->addElement('checkbox', 'noframesjs', get_string('noframesjs', 'message') ); + + + //create the providers config section + $mform->addElement('header', 'providers_config', get_string('providers_config', 'message') ); + $providers = $DB->get_records('message_providers'); + foreach ( $providers as $providerid => $provider){ + if ( $provider->modulename == 'moodle'){ + $p = 'Moodle'; + } else { + $p = get_string('modulename', $provider->modulename); + } + $mform->addElement('static', 'label'.$provider->modulename, get_string('providerstag', 'message').$p, ''); + + $test = array(); + foreach ( $processors as $processorid => $processor){ + $test[] = &$mform->createElement('checkbox', $provider->modulename.'_loggedin_'.$processor->name, $processor->name, $processor->name); + } + $mform->addGroup($test, $provider->modulename.'_loggedin', get_string('loggedin', 'message')); + + $test = array(); + foreach ( $processors as $processorid => $processor){ + $test[] = &$mform->createElement('checkbox', $provider->modulename.'_loggedoff_'.$processor->name, $processor->name, $processor->name); + } + $mform->addGroup($test, $provider->modulename.'_loggedoff', get_string('loggedoff', 'message')); + } + + //create the processors config section (need to get config items from processor's lib.php + $mform->addElement('header', 'processors_config', get_string('processor_config', 'message') ); + foreach ( $processors as $processorid => $processor){ + $processorfile = $CFG->dirroot. '/message/output/'.$processor->name.'/lib.php'; + if ( is_readable($processorfile) ) { + include_once( $processorfile ); + $processfunc = $processor->name .'_config_form'; + if ( function_exists($processfunc) ){ + $processfunc($mform); + } + } + } + + $this->add_action_buttons(false, get_string('updatemyprofile')); + } + + function definition_after_data() { + return true; + } + + function validation ($messageconf) { + return true; + } + +} + +?> diff --git a/message/lib.php b/message/lib.php index 421848f1fd..f1b710f5a9 100644 --- a/message/lib.php +++ b/message/lib.php @@ -1,6 +1,8 @@ libdir.'/eventslib.php'); + define ('MESSAGE_SHORTLENGTH', 300); define ('MESSAGE_WINDOW', true); // We are in a message window (so don't pop up a new one!) @@ -951,6 +953,18 @@ function message_post_message($userfrom, $userto, $message, $format, $messagetyp if (!empty($userto->lang)) { $USER->lang = $userto->lang; } + + $eventdata = new object(); + $eventdata->modulename = 'moodle'; + $eventdata->userfrom = $userfrom; + $eventdata->userto = $userto; + $eventdata->subject = "MESSAGE"; + $eventdata->fullmessage = $message; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + events_trigger('message_send', $eventdata); + /// Save the new message in the database @@ -963,9 +977,9 @@ function message_post_message($userfrom, $userto, $message, $format, $messagetyp $savemessage->messagetype = 'direct'; if ($CFG->messaging) { - if (!$savemessage->id = $DB->insert_record('message', $savemessage)) { - return false; - } + //if (!$savemessage->id = $DB->insert_record('message', $savemessage)) { + // return false; + //} $emailforced = false; } else { // $CFG->messaging is not on, we need to force sending of emails $emailforced = true; diff --git a/message/output/email/db/upgrade.php b/message/output/email/db/upgrade.php new file mode 100644 index 0000000000..3b8c0da0c5 --- /dev/null +++ b/message/output/email/db/upgrade.php @@ -0,0 +1,52 @@ +name = 'email'; + if (! $DB->record_exists('message_processors', array('name' => $processor->name)) ){ + $result = $result && $DB->insert_record('message_processors', $processor); + } + } + + return $result; +} + +?> diff --git a/message/output/email/lib.php b/message/output/email/lib.php new file mode 100644 index 0000000000..31c25c77c5 --- /dev/null +++ b/message/output/email/lib.php @@ -0,0 +1,48 @@ +name = 'email'; + if (!$DB->insert_record('message_processors', $provider)) { + $return = false; + } + return $result; +} diff --git a/message/output/email/message_output_email.php b/message/output/email/message_output_email.php new file mode 100644 index 0000000000..91abaa78ff --- /dev/null +++ b/message/output/email/message_output_email.php @@ -0,0 +1,109 @@ +dirroot.'/message/output/lib.php'); + +class message_output_email extends message_output { + /** + * Processes the message (sends by email). + * @param object $message the message to be sent + */ + function send_message($message) { + global $DB; + + //send an email + //if fails saved as read message + + //first try to get preference + $usertoemail = get_user_preferences( 'message_processor_email_email', '', $message->useridto); + //if fails use user profile default + if ( $usertoemail == NULL){ + $userto = $DB->get_record('user', array('id' => $message->useridto)); + $usertoemail = $userto->email; + } + $userfrom = $DB->get_record('user', array('id' => $message->useridfrom)); + if ( email_to_user($usertoemail, $userfrom->email, + $message->subject, $message->fullmessage, + $message->fullmessagehtml) + ){ + /// Move the entry to the other table + $message->timeread = time(); + $messageid = $message->id; + unset($message->id); + + //if there is no more processor that want to process this can move message + if ( $DB->count_records('message_working', array('unreadmessageid' => $messageid)) == 0){ + if ($DB->insert_record('message_read', $message)) { + $DB->delete_records('message', array('id' => $messageid)); + } + } + }else{ + //delete what we've processed and check if can move message + if ( $DB->count_records('message_working', array('unreadmessageid' => $messageid)) == 0){ + if ($DB->insert_record('message_read', $message)) { + $DB->delete_records('message', array('id' => $messageid)); + } + } + } + return true; + } + + /** + * Creates necessary fields in the messaging config form. + * @param object $mform preferences form class + */ + function config_form(&$mform){ + $mform->addElement('static', 'email_labelemail', get_string('processortag', 'message').'Email ', ''); + $mform->addElement('text', 'email_email', get_string('email')); + $mform->setAdvanced('email_labelemail'); + $mform->setAdvanced('email_email'); + } + + /** + * Parses the form submited data and saves it into preferences array. + * @param object $mform preferences form class + * @param array $preferences preferences array + */ + function process_form(&$form, &$preferences){ + $preferences['message_processor_email_email'] = $form->email_email; + } + + /** + * Loads the config data from database to put on the form (initial load) + * @param array $preferences preferences array + * @param int $userid the user id + */ + function load_data(&$preferences, $userid){ + $preferences->email_email = get_user_preferences( 'message_processor_email_email', '', $userid); + } +} diff --git a/message/output/email/version.php b/message/output/email/version.php new file mode 100755 index 0000000000..b598954010 --- /dev/null +++ b/message/output/email/version.php @@ -0,0 +1,39 @@ +version = 2008072401; +$plugin->requires = 2008072401; + +?> diff --git a/message/output/jabber/jabberclass/LICENSE b/message/output/jabber/jabberclass/LICENSE new file mode 100644 index 0000000000..cbee875ba6 --- /dev/null +++ b/message/output/jabber/jabberclass/LICENSE @@ -0,0 +1,504 @@ + GNU LESSER GENERAL PUBLIC LICENSE + Version 2.1, February 1999 + + Copyright (C) 1991, 1999 Free Software Foundation, Inc. + 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + +[This is the first released version of the Lesser GPL. It also counts + as the successor of the GNU Library Public License, version 2, hence + the version number 2.1.] + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +Licenses are intended to guarantee your freedom to share and change +free software--to make sure the software is free for all its users. + + This license, the Lesser General Public License, applies to some +specially designated software packages--typically libraries--of the +Free Software Foundation and other authors who decide to use it. You +can use it too, but we suggest you first think carefully about whether +this license or the ordinary General Public License is the better +strategy to use in any particular case, based on the explanations below. + + When we speak of free software, we are referring to freedom of use, +not price. Our General Public Licenses are designed to make sure that +you have the freedom to distribute copies of free software (and charge +for this service if you wish); that you receive source code or can get +it if you want it; that you can change the software and use pieces of +it in new free programs; and that you are informed that you can do +these things. + + To protect your rights, we need to make restrictions that forbid +distributors to deny you these rights or to ask you to surrender these +rights. These restrictions translate to certain responsibilities for +you if you distribute copies of the library or if you modify it. + + For example, if you distribute copies of the library, whether gratis +or for a fee, you must give the recipients all the rights that we gave +you. You must make sure that they, too, receive or can get the source +code. If you link other code with the library, you must provide +complete object files to the recipients, so that they can relink them +with the library after making changes to the library and recompiling +it. And you must show them these terms so they know their rights. + + We protect your rights with a two-step method: (1) we copyright the +library, and (2) we offer you this license, which gives you legal +permission to copy, distribute and/or modify the library. + + To protect each distributor, we want to make it very clear that +there is no warranty for the free library. Also, if the library is +modified by someone else and passed on, the recipients should know +that what they have is not the original version, so that the original +author's reputation will not be affected by problems that might be +introduced by others. + + Finally, software patents pose a constant threat to the existence of +any free program. We wish to make sure that a company cannot +effectively restrict the users of a free program by obtaining a +restrictive license from a patent holder. Therefore, we insist that +any patent license obtained for a version of the library must be +consistent with the full freedom of use specified in this license. + + Most GNU software, including some libraries, is covered by the +ordinary GNU General Public License. This license, the GNU Lesser +General Public License, applies to certain designated libraries, and +is quite different from the ordinary General Public License. We use +this license for certain libraries in order to permit linking those +libraries into non-free programs. + + When a program is linked with a library, whether statically or using +a shared library, the combination of the two is legally speaking a +combined work, a derivative of the original library. The ordinary +General Public License therefore permits such linking only if the +entire combination fits its criteria of freedom. The Lesser General +Public License permits more lax criteria for linking other code with +the library. + + We call this license the "Lesser" General Public License because it +does Less to protect the user's freedom than the ordinary General +Public License. It also provides other free software developers Less +of an advantage over competing non-free programs. These disadvantages +are the reason we use the ordinary General Public License for many +libraries. However, the Lesser license provides advantages in certain +special circumstances. + + For example, on rare occasions, there may be a special need to +encourage the widest possible use of a certain library, so that it becomes +a de-facto standard. To achieve this, non-free programs must be +allowed to use the library. A more frequent case is that a free +library does the same job as widely used non-free libraries. In this +case, there is little to gain by limiting the free library to free +software only, so we use the Lesser General Public License. + + In other cases, permission to use a particular library in non-free +programs enables a greater number of people to use a large body of +free software. For example, permission to use the GNU C Library in +non-free programs enables many more people to use the whole GNU +operating system, as well as its variant, the GNU/Linux operating +system. + + Although the Lesser General Public License is Less protective of the +users' freedom, it does ensure that the user of a program that is +linked with the Library has the freedom and the wherewithal to run +that program using a modified version of the Library. + + The precise terms and conditions for copying, distribution and +modification follow. Pay close attention to the difference between a +"work based on the library" and a "work that uses the library". The +former contains code derived from the library, whereas the latter must +be combined with the library in order to run. + + GNU LESSER GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License Agreement applies to any software library or other +program which contains a notice placed by the copyright holder or +other authorized party saying it may be distributed under the terms of +this Lesser General Public License (also called "this License"). +Each licensee is addressed as "you". + + A "library" means a collection of software functions and/or data +prepared so as to be conveniently linked with application programs +(which use some of those functions and data) to form executables. + + The "Library", below, refers to any such software library or work +which has been distributed under these terms. A "work based on the +Library" means either the Library or any derivative work under +copyright law: that is to say, a work containing the Library or a +portion of it, either verbatim or with modifications and/or translated +straightforwardly into another language. (Hereinafter, translation is +included without limitation in the term "modification".) + + "Source code" for a work means the preferred form of the work for +making modifications to it. For a library, complete source code means +all the source code for all modules it contains, plus any associated +interface definition files, plus the scripts used to control compilation +and installation of the library. + + Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running a program using the Library is not restricted, and output from +such a program is covered only if its contents constitute a work based +on the Library (independent of the use of the Library in a tool for +writing it). Whether that is true depends on what the Library does +and what the program that uses the Library does. + + 1. You may copy and distribute verbatim copies of the Library's +complete source code as you receive it, in any medium, provided that +you conspicuously and appropriately publish on each copy an +appropriate copyright notice and disclaimer of warranty; keep intact +all the notices that refer to this License and to the absence of any +warranty; and distribute a copy of this License along with the +Library. + + You may charge a fee for the physical act of transferring a copy, +and you may at your option offer warranty protection in exchange for a +fee. + + 2. You may modify your copy or copies of the Library or any portion +of it, thus forming a work based on the Library, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) The modified work must itself be a software library. + + b) You must cause the files modified to carry prominent notices + stating that you changed the files and the date of any change. + + c) You must cause the whole of the work to be licensed at no + charge to all third parties under the terms of this License. + + d) If a facility in the modified Library refers to a function or a + table of data to be supplied by an application program that uses + the facility, other than as an argument passed when the facility + is invoked, then you must make a good faith effort to ensure that, + in the event an application does not supply such function or + table, the facility still operates, and performs whatever part of + its purpose remains meaningful. + + (For example, a function in a library to compute square roots has + a purpose that is entirely well-defined independent of the + application. Therefore, Subsection 2d requires that any + application-supplied function or table used by this function must + be optional: if the application does not supply it, the square + root function must still compute square roots.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Library, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Library, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote +it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Library. + +In addition, mere aggregation of another work not based on the Library +with the Library (or with a work based on the Library) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may opt to apply the terms of the ordinary GNU General Public +License instead of this License to a given copy of the Library. To do +this, you must alter all the notices that refer to this License, so +that they refer to the ordinary GNU General Public License, version 2, +instead of to this License. (If a newer version than version 2 of the +ordinary GNU General Public License has appeared, then you can specify +that version instead if you wish.) Do not make any other change in +these notices. + + Once this change is made in a given copy, it is irreversible for +that copy, so the ordinary GNU General Public License applies to all +subsequent copies and derivative works made from that copy. + + This option is useful when you wish to copy part of the code of +the Library into a program that is not a library. + + 4. You may copy and distribute the Library (or a portion or +derivative of it, under Section 2) in object code or executable form +under the terms of Sections 1 and 2 above provided that you accompany +it with the complete corresponding machine-readable source code, which +must be distributed under the terms of Sections 1 and 2 above on a +medium customarily used for software interchange. + + If distribution of object code is made by offering access to copy +from a designated place, then offering equivalent access to copy the +source code from the same place satisfies the requirement to +distribute the source code, even though third parties are not +compelled to copy the source along with the object code. + + 5. A program that contains no derivative of any portion of the +Library, but is designed to work with the Library by being compiled or +linked with it, is called a "work that uses the Library". Such a +work, in isolation, is not a derivative work of the Library, and +therefore falls outside the scope of this License. + + However, linking a "work that uses the Library" with the Library +creates an executable that is a derivative of the Library (because it +contains portions of the Library), rather than a "work that uses the +library". The executable is therefore covered by this License. +Section 6 states terms for distribution of such executables. + + When a "work that uses the Library" uses material from a header file +that is part of the Library, the object code for the work may be a +derivative work of the Library even though the source code is not. +Whether this is true is especially significant if the work can be +linked without the Library, or if the work is itself a library. The +threshold for this to be true is not precisely defined by law. + + If such an object file uses only numerical parameters, data +structure layouts and accessors, and small macros and small inline +functions (ten lines or less in length), then the use of the object +file is unrestricted, regardless of whether it is legally a derivative +work. (Executables containing this object code plus portions of the +Library will still fall under Section 6.) + + Otherwise, if the work is a derivative of the Library, you may +distribute the object code for the work under the terms of Section 6. +Any executables containing that work also fall under Section 6, +whether or not they are linked directly with the Library itself. + + 6. As an exception to the Sections above, you may also combine or +link a "work that uses the Library" with the Library to produce a +work containing portions of the Library, and distribute that work +under terms of your choice, provided that the terms permit +modification of the work for the customer's own use and reverse +engineering for debugging such modifications. + + You must give prominent notice with each copy of the work that the +Library is used in it and that the Library and its use are covered by +this License. You must supply a copy of this License. If the work +during execution displays copyright notices, you must include the +copyright notice for the Library among them, as well as a reference +directing the user to the copy of this License. Also, you must do one +of these things: + + a) Accompany the work with the complete corresponding + machine-readable source code for the Library including whatever + changes were used in the work (which must be distributed under + Sections 1 and 2 above); and, if the work is an executable linked + with the Library, with the complete machine-readable "work that + uses the Library", as object code and/or source code, so that the + user can modify the Library and then relink to produce a modified + executable containing the modified Library. (It is understood + that the user who changes the contents of definitions files in the + Library will not necessarily be able to recompile the application + to use the modified definitions.) + + b) Use a suitable shared library mechanism for linking with the + Library. A suitable mechanism is one that (1) uses at run time a + copy of the library already present on the user's computer system, + rather than copying library functions into the executable, and (2) + will operate properly with a modified version of the library, if + the user installs one, as long as the modified version is + interface-compatible with the version that the work was made with. + + c) Accompany the work with a written offer, valid for at + least three years, to give the same user the materials + specified in Subsection 6a, above, for a charge no more + than the cost of performing this distribution. + + d) If distribution of the work is made by offering access to copy + from a designated place, offer equivalent access to copy the above + specified materials from the same place. + + e) Verify that the user has already received a copy of these + materials or that you have already sent this user a copy. + + For an executable, the required form of the "work that uses the +Library" must include any data and utility programs needed for +reproducing the executable from it. However, as a special exception, +the materials to be distributed need not include anything that is +normally distributed (in either source or binary form) with the major +components (compiler, kernel, and so on) of the operating system on +which the executable runs, unless that component itself accompanies +the executable. + + It may happen that this requirement contradicts the license +restrictions of other proprietary libraries that do not normally +accompany the operating system. Such a contradiction means you cannot +use both them and the Library together in an executable that you +distribute. + + 7. You may place library facilities that are a work based on the +Library side-by-side in a single library together with other library +facilities not covered by this License, and distribute such a combined +library, provided that the separate distribution of the work based on +the Library and of the other library facilities is otherwise +permitted, and provided that you do these two things: + + a) Accompany the combined library with a copy of the same work + based on the Library, uncombined with any other library + facilities. This must be distributed under the terms of the + Sections above. + + b) Give prominent notice with the combined library of the fact + that part of it is a work based on the Library, and explaining + where to find the accompanying uncombined form of the same work. + + 8. You may not copy, modify, sublicense, link with, or distribute +the Library except as expressly provided under this License. Any +attempt otherwise to copy, modify, sublicense, link with, or +distribute the Library is void, and will automatically terminate your +rights under this License. However, parties who have received copies, +or rights, from you under this License will not have their licenses +terminated so long as such parties remain in full compliance. + + 9. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Library or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Library (or any work based on the +Library), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Library or works based on it. + + 10. Each time you redistribute the Library (or any work based on the +Library), the recipient automatically receives a license from the +original licensor to copy, distribute, link with or modify the Library +subject to these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties with +this License. + + 11. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Library at all. For example, if a patent +license would not permit royalty-free redistribution of the Library by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Library. + +If any portion of this section is held invalid or unenforceable under any +particular circumstance, the balance of the section is intended to apply, +and the section as a whole is intended to apply in other circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 12. If the distribution and/or use of the Library is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Library under this License may add +an explicit geographical distribution limitation excluding those countries, +so that distribution is permitted only in or among countries not thus +excluded. In such case, this License incorporates the limitation as if +written in the body of this License. + + 13. The Free Software Foundation may publish revised and/or new +versions of the Lesser General Public License from time to time. +Such new versions will be similar in spirit to the present version, +but may differ in detail to address new problems or concerns. + +Each version is given a distinguishing version number. If the Library +specifies a version number of this License which applies to it and +"any later version", you have the option of following the terms and +conditions either of that version or of any later version published by +the Free Software Foundation. If the Library does not specify a +license version number, you may choose any version ever published by +the Free Software Foundation. + + 14. If you wish to incorporate parts of the Library into other free +programs whose distribution conditions are incompatible with these, +write to the author to ask for permission. For software which is +copyrighted by the Free Software Foundation, write to the Free +Software Foundation; we sometimes make exceptions for this. Our +decision will be guided by the two goals of preserving the free status +of all derivatives of our free software and of promoting the sharing +and reuse of software generally. + + NO WARRANTY + + 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO +WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. +EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR +OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY +KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE +LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME +THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN +WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY +AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU +FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR +CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE +LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING +RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A +FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF +SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH +DAMAGES. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Libraries + + If you develop a new library, and you want it to be of the greatest +possible use to the public, we recommend making it free software that +everyone can redistribute and change. You can do so by permitting +redistribution under these terms (or, alternatively, under the terms of the +ordinary General Public License). + + To apply these terms, attach the following notices to the library. It is +safest to attach them to the start of each source file to most effectively +convey the exclusion of warranty; and each file should have at least the +"copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +Also add information on how to contact you by electronic and paper mail. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the library, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the + library `Frob' (a library for tweaking knobs) written by James Random Hacker. + + , 1 April 1990 + Ty Coon, President of Vice + +That's all there is to it! + + diff --git a/message/output/jabber/jabberclass/README b/message/output/jabber/jabberclass/README new file mode 100644 index 0000000000..91d2caa45e --- /dev/null +++ b/message/output/jabber/jabberclass/README @@ -0,0 +1,59 @@ +Jabber Client Library +Version 0.9rc1 +Copyright 2002-2007, Centova Technologies Inc. +http://www.centova.com + +Portions Copyright 2002, Carlo Zottmann +============================================================================ + +This file was contributed (in part or whole) by a third party, and is +released under the GNU LGPL. Please see the CREDITS and LICENSE sections +below for details. + +**************************************************************************** + +DETAILS + +This is an event-driven Jabber client class implementation. This library +allows PHP scripts to connect to and communicate with Jabber servers. + + +CREDITS & COPYRIGHTS + +This class was originally based on Class.Jabber.PHP v0.4 (Copyright 2002, +Carlo "Gossip" Zottmann). + +The code for this class has since been nearly completely rewritten by Steve +Blinch for Centova Technologies Inc. All such modified code is Copyright +2002-2007, Centova Technologies Inc. + +The original Class.Jabber.PHP was released under the GNU General Public +License (GPL); however, we have received written permission from the +original author and copyright holder, Carlo Zottmann, to relicense our +version of this class and release it under the GNU Lesser General Public +License (LGPL). + +LICENSE + +class_Jabber.php - Jabber Client Library +Copyright (C) 2002-2007, Centova Technologies Inc. +Copyright (C) 2002, Carlo Zottmann + + +This library is free software; you can redistribute it and/or modify it +under the terms of the GNU Lesser General Public License as published by the +Free Software Foundation; either version 2.1 of the License, or (at your +option) any later version. + +This library 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 Lesser General Public License +for more details. + +You should have received a copy of the GNU Lesser General Public License +along with this library; if not, write to the Free Software Foundation, +Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + + +JABBER is a registered trademark of Jabber Inc. + diff --git a/message/output/jabber/jabberclass/class_ConnectionSocket.php b/message/output/jabber/jabberclass/class_ConnectionSocket.php new file mode 100644 index 0000000000..1213478791 --- /dev/null +++ b/message/output/jabber/jabberclass/class_ConnectionSocket.php @@ -0,0 +1,86 @@ +socket = @fsockopen($hostname, $port, $errno, $errstr, $timeout)) { + socket_set_blocking($this->socket, 0); + socket_set_timeout($this->socket, 31536000); + + return true; + } else { + $this->error = "{$errstr} (#{$errno})"; + return false; + } + } + + function socket_close() { + return fclose($this->socket); + } + + function socket_write($data) { + return fwrite($this->socket, $data); + } + + function socket_read($byte_count) + { + set_magic_quotes_runtime(0); + $buffer = fread($this->socket, $byte_count); + set_magic_quotes_runtime(get_magic_quotes_runtime()); + + return $buffer; + } + +} +?> \ No newline at end of file diff --git a/message/output/jabber/jabberclass/class_Jabber.php b/message/output/jabber/jabberclass/class_Jabber.php new file mode 100644 index 0000000000..bf4d7bd72d --- /dev/null +++ b/message/output/jabber/jabberclass/class_Jabber.php @@ -0,0 +1,2062 @@ +_call_handler("authenticated"); +$this->_call_handler("authfailure",-1,"No authentication method available",""); +$this->_call_handler("deregistered",$this->jid); +$this->_call_handler("deregfailure",-2,"Unrecognized response from server"); +$this->_call_handler("error",$code,$msg,$xmlns,$packet); +$this->_call_handler("heartbeat"); +$this->_call_handler("message_chat",$from,$to,$body,$subject,$thread,$id,$extended,$packet); +$this->_call_handler("message_groupchat",$packet); +$this->_call_handler("message_headline",$from,$to,$body,$subject,$extended,$packet); +$this->_call_handler("message_normal",$from,$to,$body,$subject,$thread,$id,$extended,$packet); +$this->_call_handler("msgevent_composing_start",$from); +$this->_call_handler("msgevent_composing_stop",$from); +$this->_call_handler("msgevent_delivered",$from); +$this->_call_handler("msgevent_displayed",$from); +$this->_call_handler("msgevent_offline",$from); +$this->_call_handler("passwordchanged"); +$this->_call_handler("passwordfailure",-2,"Unrecognized response from server"); +$this->_call_handler("regfailure",-1,"Username already registered",""); +$this->_call_handler("registered",$this->jid); +$this->_call_handler("rosteradded"); +$this->_call_handler("rosteraddfailure",-2,"Unrecognized response from server"); +$this->_call_handler("rosterremoved"); +$this->_call_handler("rosterremovefailure",-2,"Unrecognized response from server"); +$this->_call_handler("rosterupdate",$jid,$is_new); +$this->_call_handler("servicefields",&$fields,$packet_id,$reg_key,$reg_instructions,&$reg_x); +$this->_call_handler("servicefieldsfailure",-2,"Unrecognized response from server"); +$this->_call_handler("serviceregfailure",-2,"Unrecognized response from server"); +$this->_call_handler("serviceregistered",$jid); +$this->_call_handler('servicederegfailure",-2,"Unrecognized response from server"); +$this->_call_handler('servicederegistered"); +$this->_call_handler("serviceupdate",$jid,$is_new); +$this->_call_handler("terminated"); +$this->_call_handler('connected'); +$this->_call_handler('disconnected'); // called when the connection to the Jabber server is lost unexpectedly +$this->_call_handler('probe',$packet); +$this->_call_handler('stream_error',$packet); +$this->_call_handler('subscribe',$packet); +$this->_call_handler('subscribed',$packet); +$this->_call_handler('unsubscribe',$packet); +$this->_call_handler('unsubscribed',$packet); +$this->_call_handler("privatedata",$packetid,$namespace,$values); +$this->_call_handler('debug_log',$msg); +$this->_call_handler("contactupdated",$packetid); +$this->_call_handler("contactupdatefailure",-2,"Unrecognized response from server"); + +*/ + +require_once(dirname(__FILE__)."/class_ConnectionSocket.php"); +require_once(dirname(__FILE__)."/class_XMLParser.php"); + +// Version string +define("CLASS_JABBER_VERSION","0.9rc1"); + +// Default connection timeout +define("DEFAULT_CONNECT_TIMEOUT",15); + +// Default Jabber resource +define("DEFAULT_RESOURCE","JabberClass"); + +// Minimum/Maximum callback frequencies +define("MIN_CALLBACK_FREQ",1); // more than once per second is dangerous +define("MAX_CALLBACK_FREQ",10); // less than once every 10 seconds will be very, very slow + +// Make sure we have SHA1 support, one way or another, such that we can +// perform encrypted logins. +if (!function_exists('sha1')) { // PHP v4.3.0+ supports sha1 internally + + if (function_exists('mhash')) { // is the Mhash extension installed? + + // implement the sha1() function using mhash + function sha1($str) { + return bin2hex(mhash(MHASH_SHA1, $str)); + } + + } else { + + // implement the sha1() function in native PHP using the SHA1Library class; + // this is slow, but it's better than plaintext. + require_once(dirname(__FILE__)."/class_SHA1Library.php"); + } + +} + +// Jabber communication class +class Jabber { + var $jid = ""; + var $use_msg_composing = true; + var $use_msg_delivered = false; + var $use_msg_displayed = false; + var $use_msg_offline = false; + + var $_server_host = ""; + var $_server_ip = ""; + var $_server_port = 5222; + var $_connect_timeout = DEFAULT_CONNECT_TIMEOUT; + var $_username = ""; + var $_password = ""; + var $_resource = ""; + + var $_iq_version_name = "class_Jabber.php - http://www.centova.com - Copyright 2003-2007, Centova Technologies Inc."; + var $_iq_version_version= CLASS_JABBER_VERSION; + //var $_iq_version_os = $_SERVER['SERVER_SOFTWARE']; + + var $_connector = "ConnectionSocket"; + var $_authenticated = false; + + var $_packet_queue = array(); + var $_last_ping_time = 0; + + var $_iq_handlers = array(); + var $_event_handlers = array(); + + var $execute_loop = true; + + // DEBUGGING ONLY - causes the log file to be closed/flushed after each write + var $_log_flush = true; + + // if true, roster updates generate only one "rosterupdate" event, + // regardless of how many contacts were actually updated/added; + // useful for the initial roster download + var $roster_single_update = false; + + // if true, service updates generate only one "serviceupdate" event, + // regardless of how many services were actually updated/added; + // useful for retrieving a service list + var $service_single_update = false; + + // if true, contacts without "@"'s in their name will be assumed + // to be services and will not be listed in the roster; if the + // corresponding JID is found in the $this->services array, its + // "status" and "show" elements will be updated to reflect the + // presence/availability of the service (and the "serviceupdate" + // event will be fired) + var $handle_services_internally = false; + + // If true, the server software name and version will automatically be queried + // and stored in $this->server_software and $this->server_version at login + var $auto_server_identify = true; + + var $server_software = ""; + var $server_version = ""; + var $server_os = ""; + + var $protocol_version = false; // set this to an XMPP protocol revision to include it in the tag + + // Constructor + function Jabber($enable_logging = false) { + $this->_use_log = $enable_logging; + $this->_unique_counter = 0; + $this->_log_open(); + + $this->xml = &new XMLParser(); + } + + // ==== General Methods ================================================================== + + // set a handler method for a specific Jabber event; valid handler names + // are listed at the top of this script + function set_handler($handler_name,&$handler_object,$method_name) { + $this->_event_handlers[$handler_name] = array(&$handler_object,$method_name); + } + + function set_handler_object(&$handler_object,$handlers) { + foreach ($handlers as $handler_name=>$method_name) { + $this->set_handler( + $handler_name, + $handler_object, + $method_name + ); + } + } + + // same as above, but accepts a plain ol' function instead of a method + function set_handler_function($handler_name,$method_name) { + $this->_event_handlers[$handler_name] = $method_name; + } + + // calls the specified handler with the specified parameters; accepts: + // + // $handler_name - the name of the handler (as defined with ::set_handler()) + // to call + // (optional) other parameters - the parameters to pass to the handler method + function _call_handler() { + + $numargs = func_num_args(); + if ($numargs<1) return false; + + $arg_list = func_get_args(); + $handler_name = array_shift($arg_list); + + if (($handler_name!="debug_log") && ($handler_name!="heartbeat")) $this->_log("Calling handler: $handler_name"); + + + if ($this->_event_handlers[$handler_name]) { + + // ---- REMOVE THIS AFTER BENCHMARKING! ---- + if (defined('JX_HANDLER_BENCHMARK')) $GLOBALS["jxeh"]->t_start('event.'.$handler_name); + // ---- REMOVE THIS AFTER BENCHMARKING! ---- + + call_user_func_array(&$this->_event_handlers[$handler_name],$arg_list); + + // ---- REMOVE THIS AFTER BENCHMARKING! ---- + if (defined('JX_HANDLER_BENCHMARK')) $GLOBALS["jxeh"]->t_end('event.'.$handler_name); + // ---- REMOVE THIS AFTER BENCHMARKING! ---- + + } + } + + // posix platforms support usleep(), to sleep for a specific number of + // microseonds; we use that when possible, as it allows for a more responsive + // interface + function posix_sleep() { + $micro_seconds = 250000; + usleep($micro_seconds); + + return round($micro_seconds/1000000,2); + } + + // Windows doesn't support usleep(), so we have to sleep for minimum 1-second + // intervals.. this makes the interface a bit more sluggish, but allows for + // Win32 compatibility + function win32_sleep() { + $secs = 1; + sleep($secs); + + return $secs; + } + + + // returns a unique ID to be sent with packets + function _unique_id($prefix) { + $this->_unique_counter++; + return $prefix."_" . md5(time() . $_SERVER['REMOTE_ADDR'] . $this->_unique_counter); + } + + // public method for creating a log entry + function log($msg,$level=1) { + $this->_log($msg,$level); + } + + // private method for creating a log entry + function _log($msg,$level = 1) { + if ($this->_use_log) { + if ($this->_log_flush) $this->_log_file = @fopen(dirname(__FILE__)."/log/logfile.txt","a"); + + if ($this->_log_file) { + fwrite($this->_log_file,"$msg\n"); + if ($this->_log_flush) fclose($this->_log_file); + } + + $this->_call_handler("debug_log",$msg,$level); + } + } + + // debug method for creating a log entry (for ease of commenting-out :) ) + function dlog($msg,$level=1) { + $this->_log($msg,$level); + } + + + function _log_open() { + if ($this->_use_log) { + $this->_log_file = @fopen(dirname(__FILE__)."/log/logfile.txt","w"); + if ($this->_log_file && $this->_log_flush) { + fclose($this->_log_file); + } + } + } + + function _log_close() { + if ($this->_use_log && $this->_log_file && !$this->_log_flush) { + fclose($this->_log_file); + } + } + + // splits a JID into its three components; returns an array + // of (username,domain,resource) + function _split_jid($jid) { + preg_match("/(([^\@]+)\@)?([^\/]+)(\/(.*))?$/",$jid,$matches); + return array($matches[2],$matches[3],$matches[5]); + } + + function _bare_jid($jid) { + list($u_username,$u_domain,$u_resource) = $this->_split_jid($jid); + return ($u_username?$u_username."@":"").$u_domain; + } + + + + // ==== Core Jabber Methods ============================================================== + + // Connects to the specified Jabber server. + // + // Returns true if the socket was opened, otherwise false. + // A "connected" event is also fired when the server responds to our packet. + // + // $server_host - Hostname of your Jabber server (portion after the "@" in your JID) + // $server_port - Port for your Jabber server + // $connect_timeout - Maximum number of seconds to wait for a connection + // $alternate_ip - If $server_host does not resolve to your Jabber server's IP, + // specify the correct IP to connect to here + // + // + function connect($server_host,$server_port=5222,$connect_timeout=null,$alternate_ip=false) { + + if (is_null($connect_timeout)) $connect_timeout = DEFAULT_CONNECT_TIMEOUT; + $connector = $this->_connector; + + $this->_connection = &new $connector(); + $this->_server_host = $server_host; + $this->_server_port = $server_port; + $this->_server_ip = $alternate_ip ? $alternate_ip : $server_host; + $this->_connect_timeout = $connect_timeout; + + $this->roster = array(); + $this->services = array(); + + $this->_is_win32 = (substr(strtolower(php_uname()),0,3)=="win"); + $this->_sleep_func = $this->_is_win32 ? "win32_sleep" : "posix_sleep"; + + return $this->_connect_socket(); + } + + function _connect_socket() { + $this->log('connecting: '.$this->_server_ip.' '.$this->_server_port.' '.$this->_connect_timeout); + if ($this->_connection->socket_open($this->_server_ip,$this->_server_port,$this->_connect_timeout)) { + $this->_send("\n"); + + $xmpp_version = ($this->protocol_version) ? " version='{$this->protocol_version}'" : ''; + + $this->_send("\n"); + return true; + } else { + $this->error = $this->_connection->error; + return false; + } + } + + // disconnect from the server + function disconnect() { + + $this->_send(""); + + $this->_log_close(); + return $this->_connection->socket_close(); + } + + + // logs in to the server + function login($username,$password,$resource=NULL) { + if (!$username || !$password) return false; + + // setup handler to automatically respond to the request + $auth_id = $this->_unique_id("auth"); + $this->_set_iq_handler("_on_authentication_methods",$auth_id,"result"); + $this->_set_iq_handler("_on_authentication_result",$auth_id,"error"); + + // prepare our shiny new JID + $this->_username = $username; + $this->_password = $password; + $this->_resource = !is_null($resource) ? $resource : DEFAULT_RESOURCE; + $this->jid = "{$this->_username}@{$this->_server_host}/{$this->_resource}"; + + // request available authentication methods + $payload = "{$this->_username}"; + $packet = $this->_send_iq(NULL, 'get', $auth_id, "jabber:iq:auth", $payload); + + return true; + } + + // browse the services (transports) available on the server + function browse() { + $browse_id = $this->_unique_id("browse"); + $this->_set_iq_handler("_on_browse_result",$browse_id); + + return $this->_send_iq($this->_server_host, 'get', $browse_id, "jabber:iq:browse"); + } + + // retrieve the user's roster from the jabber server + function get_roster() { + $roster_id = $this->_unique_id("roster"); + $this->_set_iq_handler("_on_roster_result",$roster_id); + + return $this->_send_iq(NULL, 'get', $roster_id, "jabber:iq:roster"); + } + + // sets a user's presence (when simply used to set your availability, it's more convenient + // to call this way, as usually only the first 2 fields are necessary) + function set_presence($show = NULL, $status = NULL, $to = NULL, $priority = NULL) { + return $this->send_presence(NULL,$to,$show,$status,$priority); + } + + // sends presence to another contact/entity + function send_presence($type = NULL, $to = NULL, $show = NULL, $status = NULL, $priority = NULL) { + $xml = "\n" : " />\n"; + + $xml .= ($status) ? " $status\n" : ''; + $xml .= ($show) ? " $show\n" : ''; + $xml .= ($priority) ? " $priority\n" : ''; + + $xml .= ($status || $show || $priority) ? "\n" : ''; + + if ($this->_send($xml)) { + return true; + } else { + $this->_log("ERROR: send_presence() #1"); + return false; + } + + } + + // indicate (to another contact) that the user is composing a message + function composing($to,$id,$start=true) { + $payload = "".($start?"$id":"").""; + return $this->message($to,"normal",NULL,NULL,NULL,NULL,$payload); + } + + function xmlentities($string, $quote_style=ENT_QUOTES) { + return htmlspecialchars($string,$quote_style); + + $trans = get_html_translation_table(HTML_ENTITIES, $quote_style); + foreach ($trans as $key => $value) + $trans[$key] = '&#'.ord($key).';'; + return strtr($string, $trans); + } + + function message($to, $type = "normal", $id = NULL, $body = NULL, $thread = NULL, $subject = NULL, $payload = NULL, $raw = false) { + if ($to && ($body || $subject || $payload)) { + if (!$id) $id = $this->_unique_id("msg"); + +// $body = htmlspecialchars($body); +// $subject = htmlspecialchars($subject); + + if (!$raw) { + $body = $this->xmlentities($body); + $subject = $this->xmlentities($subject); + $thread = $this->xmlentities($thread); + } + + //$body = str_replace("ç","ç",$body); + + $xml = "\n"; + + if ($subject) $xml .= "$subject\n"; + if ($thread) $xml .= "$thread\n"; + if ($body) $xml .= "$body\n"; + + if ($body || $subject) { + $jabber_x_event = ""; + if ($this->use_msg_composing) $jabber_x_event .= ""; + if ($this->use_msg_delivered) $jabber_x_event .= ""; + if ($this->use_msg_displayed) $jabber_x_event .= ""; + if ($this->use_msg_offline) $jabber_x_event .= ""; + if ($jabber_x_event) $xml .= "$jabber_x_event"; + } + + $xml .= $payload; + $xml .= "\n"; + + if ($this->_send($xml)) { + return true; + } else { + $this->_log("ERROR: message() #1"); + return false; + } + } else { + $this->_log("ERROR: message() #2"); + return false; + } + } + + // create a new Jabber account + function register($username, $password, $reg_email = NULL, $reg_name = NULL) { + if (!$username || !$password) return false; + + $reg_id = $this->_unique_id("reg"); + $this->_set_iq_handler("_on_register_get_result",$reg_id); + + $this->_username = $this->xmlentities($username); + $this->_password = $this->xmlentities($password); + $this->_reg_email = $this->xmlentities($reg_email); + $this->_reg_name = $this->xmlentities($reg_name); + + return $this->_send_iq($this->_server_host, 'get', $reg_id, 'jabber:iq:register'); + } + + // cancels an existing Jabber account, removing it from the server (careful!) + // + // Note: on jabberd 1.4.2 this always seems to return 503 Service Unavailable for me; + // not sure if this is a problem with this method, a problem with my server, or a + // problem with jabberd 1.4.2. + function deregister() { + $dereg_id = $this->_unique_id("dereg"); + $this->_set_iq_handler("_on_deregister_result",$dereg_id); + + $payload = ""; + return $this->_send_iq($this->_server_host, 'set', $dereg_id, "jabber:iq:register", $payload, $this->jid); + } + + + // changes the user's password + function change_password($newpassword) { + if (!$newpassword) return false; + + $chg_id = $this->_unique_id("chg"); + $this->_set_iq_handler("_on_chgpassword_result",$chg_id); + + $newpassword = $this->xmlentities($newpassword); + + $payload = "{$this->_username}$newpassword"; + return $this->_send_iq($this->_server_host, 'set', $chg_id, "jabber:iq:register", $payload); + } + + // subscribes to an entity's presence ($request_message specifies the "reason for requesting subscription" message) + function subscribe($to,$request_message=NULL) { + return $this->send_presence("subscribe", $to, NULL, $request_message); + } + + // unsubscribes from an entity's presence + function unsubscribe($to) { + return $this->send_presence("unsubscribe", $to); + } + + // accepts a subscription request from an entity + function subscription_request_accept($to) { + return $this->send_presence("subscribed", $to); + } + + // denies a subscription request from an entity + function subscription_request_deny($to) { + return $this->send_presence("unsubscribed", $to); + } + + // get the registration fields for a service/transport + function query_service_fields($transport) + { + $reg_id = $this->_unique_id("reg"); + $this->_set_iq_handler("_on_servicefields_result",$reg_id); + + if ($this->_send_iq($transport, 'get', $reg_id, "jabber:iq:register", NULL, $this->jid)) { + return $reg_id; + } else { + return false; + } + } + + + // register with a service/transport + function register_service($transport,$reg_id,$reg_key = NULL,$fields) + { + if (!$transport || !$reg_id || !$fields) return false; + + $this->_set_iq_handler("_on_serviceregister_result",$reg_id); + + + $payload = ($reg_key) ? "$reg_key\n" : ''; + foreach ($fields as $element => $value) { + $payload .= "<$element>".$this->xmlentities($value)."\n"; + } + + return $this->_send_iq($transport, 'set', $reg_id, "jabber:iq:register", $payload); + } + + function deregister_service($transport,$reg_id,$reg_key = NULL) { + if (!$transport || !$reg_id) return false; + + $this->_set_iq_handler("_on_servicedereg_initial_result",$reg_id); + + $payload = ""; + return $this->_send_iq($transport, 'set', $reg_id, "jabber:iq:register", $payload); + } + + // adds a contact to the roster + function roster_add($jid, $name = NULL, $group = NULL) { + if (!$jid) return false; + $add_id = $this->_unique_id("add"); + + $this->_set_iq_handler("_on_rosteradd_result",$add_id); + + $payload = "". $this->xmlentities($group). "\n\n"; + + if ($this->_send_iq(NULL, 'set', $add_id, "jabber:iq:roster", $payload)) { + return $add_id; + } else { + return false; + } + } + + function roster_remove($jid) { + if (!$jid) return false; + $rem_id = $this->_unique_id("remove"); + + $this->_set_iq_handler("_on_rosterremove_result",$rem_id); + + $payload = ""; + + if ($this->_send_iq(NULL, 'set', $rem_id, "jabber:iq:roster", $payload)) { + return $rem_id; + } else { + return false; + } + } + + // updates a roster contact's name and/or group + function roster_update($jid,$name = NULL,$group = NULL) { + if (!$jid) return false; + $update_id = $this->_unique_id("update"); + + $this->_set_iq_handler("_on_rosterupdate_result",$update_id); + + $payload = "". $this->xmlentities($group) . "\n\n"; + + if ($this->_send_iq(NULL, 'set', $update_id, "jabber:iq:roster", $payload)) { + return $add_id; + } else { + return false; + } + } + + // adds a contact to the roster and subscribes to his presence in one step; + // simply a time saver. + function add_contact($jid,$name = NULL,$group = NULL) { + if ($this->roster_add($jid,$name,$group)) { + return $this->subscribe($jid); + } else { + return false; + } + } + + // alias for roster_remove() + function remove_contact($jid) { + return $this->roster_remove($jid); + } + + function set_private_data($namespace,$rootelement,$values) { + if ((!$namespace) || (!$rootelement) || (!$values)) return false; + + $data_id = $this->_unique_id("privdata"); + +// $this->_set_iq_handler("_on_xxx_result",$data_id); // we don't really need the result from this... do we? + + $payload = "<$rootelement xmlns='$namespace'>"; + foreach ($values as $key=>$value) { + $payload .= "<$key>$value"; + } + $payload .= ""; + + if ($this->_send_iq(NULL, 'set', $data_id, "jabber:iq:private", $payload)) { + return $data_id; + } else { + return false; + } + } + + function get_private_data($namespace,$rootelement) { + if ((!$namespace) || (!$rootelement)) return false; + + $data_id = $this->_unique_id("privdata"); + $this->_set_iq_handler("_on_private_data",$data_id); + + $payload = "<$rootelement xmlns='$namespace' />"; + + if ($this->_send_iq(NULL, 'get', $data_id, "jabber:iq:private", $payload)) { + return $data_id; + } else { + return false; + } + } + + function adjust_callback_frequency($factor) { + if ($this->active_cbk_freq<0) return; + + $this->dlog("Setting callback frequency factor to $factor"); + + $this->active_cbk_freq = $this->initial_cbk_freq*$factor; + + $this->dlog("Setting active frequency to {$this->active_cbk_freq}"); + + if ($this->active_cbk_freqactive_cbk_freq = MIN_CALLBACK_FREQ; + if ($this->active_cbk_freq>MAX_CALLBACK_FREQ) $this->active_cbk_freq = MAX_CALLBACK_FREQ; + } + + + // begin execution loop... sort of a ghetto-multithreading type thing, I guess... :) + function execute($callback_freq = -1,$seconds = -1) + { + $sleepfunc = $this->_sleep_func; + $this->active_cbk_freq = $this->initial_cbk_freq = $callback_freq; + + $count = 0; + $cb_count = 0; + + // set terminated to true in any event handler to cause this method to exit immediately + $this->terminated = false; + + while (($count != $seconds) && (!$this->terminated)) { + + // check to see if there are any packets waiting + if ($this->_receive()) { + + while (count($this->_packet_queue)) { + $packet = $this->_get_next_packet(); + + // if a packet was available (should always be) + if ($packet) { + // check the packet type, and dispatch the appropriate handler + if (!empty($packet['iq'])) { + $this->_handle_iq($packet); + } elseif (!empty($packet['message'])) { + $this->_handle_message($packet); + } elseif (!empty($packet['presence'])) { + $this->_handle_presence($packet); + } elseif (!empty($packet['stream:stream'])) { + $this->_handle_stream($packet); + } elseif (!empty($packet['stream:features'])) { + $this->_handle_stream_features($packet); + } elseif (!empty($packet['stream:error'])) { + $this->_handle_stream_error($packet); + } else { + $this->_log("Unknown packet type!"); + $x = $this->dump($packet); + $this->_log($x); + } + } + } + } + + + $sleeptime = $this->$sleepfunc(); + + $count += $sleeptime; + $cb_count += $sleeptime; + + if ($this->_last_ping_time != date("H:i")) { + if (!$this->_send(" ",true)) { + // Lost connection to Jabber server! + $this->_call_handler('disconnected'); + $this->terminated = true; + } + $this->_last_ping_time = date("H:i"); + } + + if (($this->active_cbk_freq>0) && ($cb_count>=$this->active_cbk_freq) && ($this->_authenticated)) { + + $this->dlog("Heartbeat - cbcount:{$cb_count} / active_cbk_freq:{$this->active_cbk_freq}"); + + $this->_call_handler("heartbeat"); + $cb_count = 0; + } + + if (!$this->execute_loop) break; + } + + if ($this->execute_loop) $this->_call_handler("terminated"); + + return TRUE; + } + + + + + + + + + // ==== Event Handlers (Raw Packets) ===================================================== + + // Sets a handler for a particular IQ packet ID (and optionally packet type). + // Assumes that $method is the name of a method of $this + function _set_iq_handler($method,$id,$type=NULL) { + if (is_null($type)) $type = "_all"; + $this->_iq_handlers[$id][$type] = array(&$this,$method); + } + + + function _node($packet,$path,$checkset = false) { + $cursor = &$packet; + + $pathlength = count($path); + for ($i=0; $i<$pathlength; $i++) { + $last = ($i==$pathlength-1); + + $element = $path[$i]; + + if (!is_array($cursor) || !isset($cursor[$element])) return ($checkset ? false : NULL); + + if ($last) { + if ($checkset) { + return isset($cursor[$element]); + } else { + return $cursor[$element]; + } + } else { + $cursor = &$cursor[$element]; + } + + } + + return ($checkset ? false : NULL); + } + + function _nodeset($packet,$path) { + return $this->_node($packet,$path,true); + } + + // handle IQ packets + function _handle_iq(&$packet) { + $iq_id = $this->_node($packet,array('iq','@','id')); + + $iq_type = $this->_node($packet,array('iq','@','type')); + + // see if we already have a handler setup for this ID number; the vast majority of IQ + // packets are handled by their ID number, since they are usually in response to a + // request we submitted + if ($this->_iq_handlers[$iq_id]) { + + // OK, is there a handler for this specific packet type as well? + if ($this->_iq_handlers[$iq_id][$iq_type]) { + // yup - try the handler for our packet type + $iqt = $iq_type; + } else { + // nope - try the catch-all handler + $iqt = "_all"; + } + + $this->dlog("Handling $iq_id [$iqt]"); + $handler_method = $this->_iq_handlers[$iq_id][$iqt]; + unset($this->_iq_handlers[$iq_id][$iqt]); + + if ($handler_method) { + call_user_func($handler_method,&$packet); + } else { + $this->_log("Don't know what to do with packet: ".$this->dump($packet)); + } + } else { + // this packet didn't have an ID number (or the ID number wasn't recognized), so + // see if we can salvage it. + switch($iq_type) { + case "get": + if (!$this->_node($packet,array('iq','#','query'))) return; + + $xmlns = $this->_node($packet,array('iq','#','query',0,'@','xmlns')); + switch($xmlns) { + case "jabber:iq:version": + // handle version inquiry/response + $this->_handle_version_packet($packet); + break; + case "jabber:iq:time": + // handle time inquiry/response + $this->_handle_time_packet($packet); + break; + default: + // unknown XML namespace; borkie borkie! + break; + } + break; + + case "set": // handle packets + if (!$this->_node($packet,array('iq','#','query'))) return; + + $xmlns = $this->_node($packet,array('iq','#','query',0,'@','xmlns')); + switch($xmlns) { + case "jabber:iq:roster": + $this->_on_roster_result($packet); + break; + default: + // unknown XML namespace; borkie borkie! + break; + } + break; + + default: + // don't know what to do with other types of IQ packets! + break; + + } + } + } + + function varset($v) { + return is_string($v) ? strlen($v)>0 : !empty($v); + } + + // handle Message packets + function _handle_message(&$packet) { + // events that we recognize + $events = array("composing","offine","delivered","displayed"); + + // grab the message details + $type = $this->_node($packet,array('message','@','type')); + if (!$type) $type = "chat"; + + $from = $this->_node($packet,array('message','@','from')); + $to = $this->_node($packet,array('message','@','to')); + $id = $this->_node($packet,array('message','@','id')); + + list($f_username,$f_domain,$f_resource) = $this->_split_jid($from); + $from_jid = ($f_username?"{$f_username}@":"").$f_domain; + + $body = $this->_node($packet,array('message','#','body',0,'#')); + $subject = $this->_node($packet,array('message','#','subject',0,'#')); + $thread = $this->_node($packet,array('message','#','thread',0,'#')); + + // handle extended message info (to a certain extent, anyway)... + // if any of the tags in $events are passed under an x element in the + // jabber:x:event namespace, $extended[tagname] is set to TRUE + $extended = false; + $extended_id = NULL; + $x = $this->_node($packet,array('message','#','x')); + + if (is_array($x)) { + foreach ($x as $key=>$element) { + if ($this->_node($element,array('@','xmlns'))=="jabber:x:event") { + if ( !isset($element['#']) || !is_array($element['#']) ) continue; + + foreach ($element['#'] as $tag=>$element_content) { + if (in_array($tag,$events)) { + $extended[$tag] = true; + } + if ($tag=="id") { + $extended_id = $this->_node($element_content,array('0','#')); + if (!$extended) $extended = array(); + } + } + } + } + } + + // if a message contains an x tag in the jabber:x:event namespace, + // and doesn't contain a body or subject, then it's an event notification + if (!$this->varset($body) && !$this->varset($subject) && is_array($extended)) { + + // is this a composing event (which needs special handling)? + if (isset($extended['composing'])) { + $this->_call_handler("msgevent_composing_start",$from); + $this->roster[$from_jid]["composing"] = true; + } else { + if ($this->roster[$from_jid]["composing"]) { + $this->_call_handler("msgevent_composing_stop",$from); + $this->roster[$from_jid]["composing"] = false; + } + } + + foreach ($extended as $event=>$value) { + $this->_call_handler("msgevent_$event",$from); + } + + // don't process the rest of the message event, as it's not really a message + return; + } + + + // process the message + switch($type) { + case "error": + $this->_handle_error(&$packet); + break; + case "groupchat": + $this->_call_handler("message_groupchat",$packet); + break; + case "headline": + $this->_call_handler("message_headline",$from,$to,$body,$subject,$x,$packet); + break; + case "chat": + case "normal": + default: + if ($this->roster[$from_jid]["composing"]) $this->roster[$from_jid]["composing"] = false; + if (($type!="chat") && ($type!="normal")) $type = "normal"; + $this->_call_handler("message_$type",$from,$to,$body,$subject,$thread,$id,$extended,$packet); + break; + + } + } + + // handle Presence packets + function _handle_presence(&$packet) { + + $type = $this->_node($packet,array('presence','@','type')); + if (!$type) $type = "available"; + + $from = $this->_node($packet,array('presence','@','from')); + + list($f_username,$f_domain,$f_resource) = $this->_split_jid($from); + $from_jid = ($f_username?"{$f_username}@":"").$f_domain; + + $is_service = (!strlen($f_username)); + + $exists = ($is_service && $this->handle_services_internally) ? isset($this->services[$from_jid]) : isset($this->roster[$from_jid]); + // $this->dlog("TRACE::_handle_presence() called with from=$from, exists=[$exists]"); + + $nothing = false; + $rosteritem = &$nothing; + + /* + // Merak doesn't send roster items for gateway contacts for some reason - it just throws + // presence packets at you all willy-nilly... so we simulate a roster update if a non-roster + // presence packet is received and we've identified the server as Merak + + // This doesn't work, as internally Merak records the contacts as having no subscription, + // but doesn't send any subscription requests to the client. Craptacular. + if (!$exists && $this->is_merak && !$is_service) { + $this->roster[$from_jid] = array( + "username" => $f_username, + "domain" => $f_domain, + "resource" => $f_resource, + "jid" => $from_jid, + "transport" => $this->get_transport($f_domain) + ); + $exists = true; + } + */ + + if ($exists) { + if ($is_service && $this->handle_services_internally) { + // $this->dlog("SVC: rosteritem=service[{$from_jid}]"); + $use_services_array = true; + $rosteritem = &$this->services[$from_jid]; + } else { + // $this->dlog("SVC: rosteritem=roster[{$from_jid}]"); + $use_services_array = false; + $rosteritem = &$this->roster[$from_jid]; + + unset($rosteritem['customnickname']); + } + } else { + // Ignore roster updates for JIDs not in our roster, except + // for subscription requests... + + if ($type=="available") { + // ... but make note of the presence of non-roster items here, in case + // the roster item is sent AFTER the presence packet... then we can apply the + // presence when the roster item is received + $show = $this->_show($this->_node($packet,array('presence','#','show',0,'#'))); + $this->presence_cache[$from_jid] = array( + "status"=>$this->_node($packet,array('presence','#','status',0,'#')), + "show"=>$show ? $show : "on" + ); + // $this->dlog("TRACE::_handle_presence(): Caching presence for [$from_jid]; type=available, status=[".$this->presence_cache[$from_jid]["status"]."], show=[".$this->presence_cache[$from_jid]["show"]."]"); + + return; + } + + if ($type!="subscribe") { + // $this->dlog("TRACE::_handle_presence(): type!=subscribe; exiting _handle_presence()"); + return; + } + // $this->dlog("TRACE::_handle_presence(): type=subscribe; passing through"); + } + $call_update = false; + + /* + ob_start(); + echo "\n----PRESENCE----\n"; + echo "[$type]\n"; + var_dump($packet); + echo "----END PRESENCE----\n\n"; + $y = ob_get_contents(); + $this->dlog($y); + ob_end_clean(); + */ + + switch($type) { + case "error": + $this->_handle_error(&$packet); + break; + case "probe": + $this->_call_handler('probe',$packet); + break; + case "subscribe": + // note: $rosteritem is not set here + $this->_call_handler('subscribe',$packet); + break; + case "subscribed": + $this->_call_handler('subscribed',$packet); + break; + case "unsubscribe": + $this->_call_handler('unsubscribe',$packet); + break; + case "unsubscribed": + $this->_call_handler('unsubscribed',$packet); + break; + case "unavailable": + // $this->dlog("NOTE: Setting rosteritem[status] for ".($use_services_array?"service":"roster item")." $from_jid to off (unavailable)"); + $rosteritem["show"] = "off"; + $call_update = true; + break; + case "available": + $rosteritem["status"] = $this->_node($packet,array('presence','#','status',0,'#')); + $show = $this->_show($this->_node($packet,array('presence','#','show',0,'#'))); + $rosteritem["show"] = $show ? $show : "on"; // away, chat, xa, dnd, or "" = online + + if ($this->_node($packet,array('presence','#','x',0,'@','xmlns'))=='vcard-temp:x:update') { + $rosteritem['customnickname'] = $this->_node($packet,array('presence','#','x',0,'#','nickname',0,'#')); + } + + // $this->dlog("NOTE: Setting rosteritem[status] for ".($use_services_array?"service":"roster item")." $from_jid to ".$rosteritem["status"]); + $call_update = true; + break; + default: + $this->_log("Unknown presence type: $type"); + break; + } + if ($call_update) { + if ($use_services_array) { + // $this->dlog("TRACE::_handle_presence(): calling serviceupdate for $from"); + $this->_call_handler("serviceupdate",$from,false); + } else { + // $this->dlog("TRACE::_handle_presence(): calling rosterupdate for $from"); + $this->_call_handler("rosterupdate",$from,false); + } + } + } + + // handle Stream packets + function _handle_stream(&$packet) { + $ss = $this->_node($packet,array('stream:stream','@')); + if (is_array($ss)) { + if ($ss['from'] == $this->_server_host + && $ss['xmlns'] == "jabber:client" + && $ss["xmlns:stream"] == "http://etherx.jabber.org/streams") + { + $this->_stream_id = $this->_node($packet,array("stream:stream",'@','id')); + $this->_call_handler('connected'); + return; + } + } + + $this->_log("Unrecognized stream packet"); + var_dump($packet); + } + + // handle Stream features packets + function _handle_stream_features(&$packet) { + $this->features = &$packet; + } + + // handle stream error + function _handle_stream_error(&$packet) { + $this->_call_handler('stream_error',$packet); + } + + + + // ==== Event Handlers (Event Specific) ================================================== + + // receives a list of authentication methods and sends an authentication + // request with the most appropriate one + function _on_authentication_methods(&$packet) { + $auth_id = $this->_node($packet,array('iq','@','id')); + $auth_request_sent = true; + + // check for auth method availability in descending order (best to worst) + + // Note: As noted in JEP-0078 (http://www.jabber.org/jeps/jep-0078.html), the so-called + // "zero-knowledge" authentication is no stronger than digest authentication, and is not + // even documented in JEP-0078 anymore. As such, it is not supported here. + // + // SASL authentication is not yet supported (for unrelated reasons). + + // digest + if ($this->_nodeset($packet,array('iq','#','query',0,'#','digest'))) { + $this->_sendauth_digest($auth_id); + + // plain text + } elseif ($this->_node($packet,array('iq','#','query',0,'#','password'))) { + $this->_sendauth_plaintext($auth_id); + + // no auth methods + } else { + $auth_request_sent = false; + $this->_call_handler("authfailure",-1,"No authentication method available",""); + $this->_log("ERROR: _on_authentication_methods() #2 - No auth method available!"); + } + + if ($auth_request_sent) { + $this->_set_iq_handler("_on_authentication_result",$auth_id); + } + + } + + // receives the results of an authentication attempt + function _on_authentication_result(&$packet) { + $auth_id = $this->_node($packet,array('iq','@','id')); + $result_type = $this->_node($packet,array('iq','@','type')); + + if ($result_type=="result") { + if ($this->auto_server_identify) $this->request_version($this->_server_host); + + $this->_call_handler("authenticated"); + $this->_authenticated = true; + } elseif ($result_type=="error") { + $this->_handle_iq_error(&$packet,"authfailure"); + } + } + + // receives the results of a service browse query + function _on_browse_result(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + +// $this->_log("BROWSE packet: ".var_export($packet,true)); + + // did we get a result? if so, process it, and remember the service list + if ($packet_type=="result") { + + $this->services = array(); + + //$this->_log("SERVICES: ".print_r($packet,true)); + + //$this->_log("\n\nSOFTWARE: ".$this->server_software." v".$this->server_version."\n\n"); + + if ($this->_node($packet,array('iq','#','service'))) { + // Jabberd uses the 'service' element + $servicekey = $itemkey = 'service'; + } elseif ($this->_node($packet,array('iq','#','item'))) { + // Older versions of Merak use 'item' + $servicekey = $itemkey = 'item'; + } elseif ($this->_node($packet,array('iq','#','query'))) { + // Newer versions of Merak use 'query' + $servicekey = 'query'; + $itemkey = 'item'; + } else { + // try to figure out what to use + $k = array_keys($this->_node($packet,array('iq','#'))); + $servicekey = $k[0]; + if (!$servicekey) return; + } + // if the item key is incorrect, try to figure that out as well + if ($this->_node($packet,array('iq','#',$servicekey)) && !$this->_node($packet,array('iq','#',$servicekey,0,'#',$itemkey))) { + $k = array_keys($this->_node($packet,array('iq','#',$servicekey,0,'#'))); + $itemkey = $k[0]; + } + + $number_of_services = is_array($this->_node($packet,array('iq','#',$servicekey,0,'#',$itemkey))) ? count($this->_node($packet,array('iq','#',$servicekey,0,'#',$itemkey))) : 0; + + $services_updated = false; + for ($a = 0; $a < $number_of_services; $a++) + { + $svc = $this->_node($packet,array('iq','#',$servicekey,0,'#',$itemkey,$a)); + + $jid = strtolower($this->_node($svc,array('@','jid'))); + $is_new = !isset($this->services[$jid]); + $this->services[$jid] = array( + "type" => strtolower($this->_node($svc,array('@','type'))), + "status" => "Offline", + "show" => "off", + "name" => $this->_node($svc,array('@','name')), + "namespaces" => array() + ); + + $number_of_namespaces = is_array($this->_node($packet,array('iq','#',$servicekey,0,'#',$itemkey,$a,'#','ns'))) ? count($this->_node($packet,array('iq','#',$servicekey,0,'#',$itemkey,$a,'#','ns'))) : 0; + for ($b = 0; $b < $number_of_namespaces; $b++) { + $this->services[$jid]['namespaces'][$b] = $this->_node($packet,array('iq','#',$servicekey,0,'#',$itemkey,$a,'#','ns',$b,'#')); + } + + if ($this->service_single_update) { + $services_updated = true; + } else { + $this->_call_handler("serviceupdate",$jid,$is_new); + } + } + + if ($this->service_single_update && $services_updated) { + $this->_call_handler("serviceupdate",NULL,$is_new); + } + + $this->_log("Received service list"); + //$this->_log("Received service list: ".print_r($this->services,true)); + // choke on error + } elseif ($packet_type=="error") { + $this->_handle_iq_error($packet); + + // confusion sets in + } else { + $this->_log("Don't know what to do with jabber:iq:browse packet!"); + } + } + + // request software version from a JabberID + function request_version($jid) { + + $this->_log('Requesting version information from '.$jid); + // setup handler to automatically respond to the request (it would anyway, + // because of how we handle version packets, but... hey, why not be thorough) + $ver_id = $this->_unique_id("ver"); + + $this->_set_iq_handler("_handle_version_packet",$ver_id); + + return $this->_send_iq($jid, 'get', $ver_id, "jabber:iq:version"); + } + + // handle a jabber:iq:version packet (either a request, or a response) + function _handle_version_packet(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + $from = $this->_node($packet,array('iq','@','from')); + $packetid = $this->_node($packet,array('iq','@','id')); + + if ($packet_type=="result") { + // did we get a result? if so, process it, and update the contact's version information + $jid = $this->_bare_jid($from); + + $version = $this->_node($packet,array('iq','#','query',0,'#')); + $this->_log("$jid/".$this->_server_host); + if ($jid==$this->_server_host) { + //$this->_log("\n\n\n\nVERSION: ".print_r($version,true)."\n\n\n\n".print_r($packet,true)."\n\n\n\n"); + $this->server_software = $this->_node($version,array('name',0,'#')); + $this->server_version = $this->_node($version,array('version',0,'#')); + $this->server_os = $this->_node($version,array('os',0,'#')); + + $this->is_merak = strtolower(substr($this->server_software,0,5))=="merak"; + } elseif ($this->roster[$jid]) { + $this->roster[$jid]["version"] = $version; + } + + // $this->dlog("TRACE::_handle_version_packet(): calling rosterupdate for $jid"); + $this->_call_handler("rosterupdate",$jid,false); + + } elseif ($packet_type=="get") { + // did we get an inquiry? if so, send our version info + $payload = "{$this->_iq_version_name}{$this->_iq_version_version}"; + if ($this->_iq_version_os) $payload .= "{$this->_iq_version_os}"; + $packet = $this->_send_iq($from, 'result', $packetid, "jabber:iq:version", $payload); + } + // other types of packets are probably just error responses (eg: the remote + // client doesn't support jabber:iq:version requests) so we ignore those + + return true; + } + + // handle a jabber:iq:time packet (either a request, or a response) + function _handle_time_packet(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + $from = $this->_node($packet,array('iq','@','from')); + $packetid = $this->_node($packet,array('iq','@','id')); + + if ($packet_type=="result") { + // did we get a result? if so, process it, and update the contact's time information + $jid = $this->_bare_jid($from); + + $timeinfo = $this->_node($packet,array('iq','#','query',0,'#')); + $this->roster[$jid]["time"] = $timeinfo; + + // $this->dlog("TRACE::_handle_time_packet(): calling rosterupdate for $jid"); + $this->_call_handler("rosterupdate",$jid,false); + } elseif ($packet_type=="get") { + // did we get an inquiry? if so, send our time info + $utc = gmdate('Ymd\TH:i:s'); + $tz = date("T"); + $display = date("D M d H:i:s Y"); + + $payload = "{$utc}{$tz}{$display}"; + $packet = $this->_send_iq($from, 'result', $packetid, "jabber:iq:time", $payload); + } + // other types of packets are probably just error responses (eg: the remote + // client doesn't support jabber:iq:time requests) so we ignore those + + return true; + } + + // receives the results of a roster query + // + // Note: You should always browse services BEFORE calling get_roster(), as this + // will ensure that the correct services get marked as "registered" in $this->services, + // and each roster contact will automatically have its "transport" element set to the + // correct transport. + function _on_roster_result(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + + // did we get a result? if so, process it, and remember the service list + if (($packet_type=="result") || ($packet_type=="set")) { + + $roster_updated = false; + + $itemlist = $this->_node($packet,array('iq','#','query',0,'#','item')); + $number_of_contacts = is_array($itemlist) ? count($itemlist) : 0; + + //echo "
"; echo "itemlist:\n"; var_dump($itemlist); echo "
"; + + for ($a = 0; $a < $number_of_contacts; $a++) + { + if (!isset($itemlist[$a])) continue; + + $queryitem = &$itemlist[$a]; + //echo "
"; echo "itemlist:\n"; var_dump($queryitem); echo "
"; + $jid = strtolower($this->_node($queryitem,array('@','jid'))); + + $subscription = $this->_node($queryitem,array('@','subscription')); + + + list($u_username,$u_domain,$u_resource) = $this->_split_jid($jid); + //echo "[$u_username/$u_domain/$u_resource/$jid]"; + $jid = ($u_username?"{$u_username}@":"").$u_domain; + + + $is_new = !isset($this->roster[$jid]); + + //$x = $this->dump($this->roster[$jid]); + // $this->dlog("TRACE::_on_roster_result(): processing roster contact [{$jid}] (is_new=={$is_new}; existing item=[{$x}])"); + + + // Is it a transport? + $is_service = (!strlen($u_username)); + if ($is_service) { + // are we registered with it? + /*if ($u_resource=="registered") {*/ + if (!in_array($subscription,array("none","remove"))) { // if we're not subscribed to it, then we'll consider it unregistered + $this->services[$jid]["registered"] = true; + } + /*}*/ + } + + // don't add the entry to the roster if it's a service, and we've been + // configured to handle service presence internally (via $this->services) + if (!($is_service && $this->handle_services_internally)) { + // if not new, don't clobber the old presence/availability + $u_jid = $u_username."@".$u_domain; + $status = $is_new?"Offline":$this->roster[$jid]["status"]; + $show = $is_new?"off":$this->roster[$jid]["show"]; + + // if presence was received before roster, grab the show value from the presence + if ($this->presence_cache[$u_jid]) { + if (!$show || $is_new) { + $show = $this->presence_cache[$u_jid]["show"]; + // $this->dlog("TRACE::_on_roster_result: Using cached 'show' state for [{$u_jid}]; show=[{$show}]"); + } + if (!$status || $is_new) { + $status = $this->presence_cache[$u_jid]["status"]; + // $this->dlog("TRACE::_on_roster_result: Using cached 'status' state for [{$u_jid}]; status=[{$status}]"); + } + + // remove any cached presence info, as the roster item now exists + // $this->dlog("TRACE::_on_roster_result: Clearing presence cache for {$u_jid}"); + unset($this->presence_cache[$u_jid]); + } + + $nodename = $this->_node($queryitem,array('@','name')); + $rostername = strlen($nodename) ? $nodename : $u_username; + + + // prepare the roster item + $rosteritem = array( + "name" => $rostername, + "subscription" => $this->_node($queryitem,array('@','subscription')), + "ask" => $this->_node($queryitem,array('@','ask')), + "group" => $this->_node($queryitem,array('#','group',0,'#')), + "status" => $status, + "show" => $show, + "username" => $u_username, + "domain" => $u_domain, + "resource" => $u_resource, + "jid" => $u_jid, + "transport" => $this->get_transport($u_domain) + ); + if ($is_new) { + // if it's a new entry, just add it to the roster + $this->roster[$jid] = $rosteritem; + } else { + // otherwise, carefully update the existing entry, preserving + // any elements that may have been added externally + foreach ($rosteritem as $k=>$v) { + $this->roster[$jid][$k] = $v; + } + } + + //$this->_log('ROSTER UPDATE: '.print_r($this->roster[$jid],true)); + // you may wish to set roster_single_update to TRUE before + // calling your initial browse(); this will allow you to + // initialize your entire roster in one swoop, rather than + // doing it contact-by-contact + if ($this->roster_single_update) { + // $this->dlog("TRACE::_on_roster_result(): updated contact for future roster_single_update; jid=$jid,is_new=[$is_new]"); + + $roster_updated = true; + } else { + // $this->dlog("TRACE::_on_roster_result(): calling rosterupdate for jid=$jid,is_new=$is_new (individual)"); + $this->_call_handler("rosterupdate",$jid,$is_new); + } + } + } + + if ($this->roster_single_update && $roster_updated) { + // $this->dlog("TRACE::_on_roster_result(): calling rosterupdate for jid=NULL,is_new=false (roster_single_update==true)"); + $this->_call_handler("rosterupdate",NULL,false); + } + + $this->_log("Received roster"); + // choke on error + } elseif ($packet_type=="error") { + $this->_handle_iq_error($packet); + + // confusion sets in + } else { + $this->_log("Don't know what to do with jabber:iq:roster packet!"); + } + } + + function _is_error_packet($packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + return ( $packet_type == 'error' && $this->_nodeset($packet,array('iq','#','error',0,'#')) ); + } + + // receives the results of an account registration 'get' query (retrieving fields) + function _on_register_get_result(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + $reg_id = $this->_unique_id("reg"); + + if ($packet_type=="result") { + + if ($this->_nodeset($packet,array('iq','#','query',0,'#','registered',0,'#'))) { + $this->_call_handler("regfailure",-1,"Username already registered",""); + return; + } + + $key = $this->_node($packet,array('iq','#','query',0,'#','key',0,'#')); + unset($packet); + + // Looks like CJP just hardcoded these fields, regardless of what the server sends...?! + // FIXME: parse fields dynamically this when time permits + $payload = "{$this->_username} + {$this->_password} + {$this->_reg_email} + {$this->_reg_name}\n"; + + $payload .= ($key) ? "$key\n" : ''; + + $this->_set_iq_handler("_on_register_set_result",$reg_id); + $this->_send_iq($this->_server_host, 'set', $reg_id, "jabber:iq:register", $payload); + + + } elseif ($this->_is_error_packet($packet)) { + $this->_handle_iq_error(&$packet,"regfailure"); + + } else { + $this->_call_handler("regfailure",-2,"Unrecognized response from server",""); + } + } + + // receives the results of an account registration 'set' query (the actual result of + // the account registration attempt) + function _on_register_set_result(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + $error_code = 0; + + if ($packet_type=="result") { + + if ($this->_resource) { + $this->jid = "{$this->_username}@{$this->_server_host}/{$this->_resource}"; + } else { + $this->jid = "{$this->_username}@{$this->_server_host}"; + } + $this->_call_handler("registered",$this->jid); + + } elseif ($this->_is_error_packet($packet)) { + // "conflict" error, i.e. already registered + if ($this->_node($packet,array('iq','#','error',0,'@','code')) == '409') { + $this->_call_handler("regfailure",-1,"Username already registered",""); + } else { + $this->_handle_iq_error(&$packet,"regfailure"); + } + + } else { + $this->_call_handler("regfailure",-2,"Unrecognized response from server"); + } + } + + function _on_deregister_result(&$packet) { + + $packet_type = $this->_node($packet,array('iq','@','type')); + + if ($packet_type=="result") { + $this->_call_handler("deregistered",$this->jid); + } elseif ($this->_is_error_packet($packet)) { + $this->_handle_iq_error(&$packet,"deregfailure"); + } else { + $this->_call_handler("deregfailure",-2,"Unrecognized response from server"); + } + } + + + // receives the result of a password change + function _on_chgpassword_result(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + if ($packet_type=="result") { + $this->_call_handler("passwordchanged"); + + } elseif ($this->_is_error_packet($packet)) { + $this->_handle_iq_error(&$packet,"passwordfailure"); + } else { + $this->_call_handler("passwordfailure",-2,"Unrecognized response from server"); + } + } + + // receives the result of a service (transport) registration + function _on_servicefields_result(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + $packet_id = $this->_node($packet,array('iq','@','id')); + + if ($packet_type=="result") { + + $reg_key = ""; + $reg_instructions = ""; + $reg_x = ""; + $fields = array(); + + foreach ($this->_node($packet,array('iq','#','query',0,'#')) as $element => $data) { + switch($element) { + case "key": + $reg_key = $this->_node($data,array(0,'#')); + break; + case "instructions": + $reg_instructions = $this->_node($data,array(0,'#')); + break; + case "x": + $reg_x = $this->_node($data,array(0,'#')); + break; + default: + $fields[] = $element; + break; + } + } + $this->_call_handler("servicefields",&$fields,$packet_id,$reg_key,$reg_instructions,&$reg_x); + + } elseif ($this->_is_error_packet($packet)) { + $this->_handle_iq_error(&$packet,"servicefieldsfailure"); + } else { + $this->_call_handler("servicefieldsfailure",-2,"Unrecognized response from server"); + } + } + + function _on_serviceregister_result(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + $from = $this->_node($packet,array('iq','@','from')); + if ($packet_type == 'result') { + if ($this->_nodeset($packet,array('iq','#','query',0,'#','registered',0,'#'))) { + $this->_call_handler("serviceregfailure",-1,"Already registered with service",""); + } else { + $jid = $this->_bare_jid($from); + $this->_call_handler("serviceregistered",$from); + } + } elseif ($this->_is_error_packet($packet)) { + $this->_handle_iq_error(&$packet,"serviceregfailure"); + } else { + $this->_call_handler("serviceregfailure",-2,"Unrecognized response from server"); + } + } + + function _on_servicedereg_initial_result(&$packet) { + + $packet_type = $this->_node($packet,array('iq','@','type')); + $from = $this->_node($packet,array('iq','@','from')); + + if ($packet_type == 'result') { + + // we're now deregistered with the transport, but we need to remove + // our roster subscription + $dereg_id = $this->_unique_id("svcdereg"); + $this->_set_iq_handler("_on_servicedereg_final_result",$dereg_id); + + + $this->services[$from]["registered"] = false; + $this->services[$from]["subscription"] = "none"; + + $payload = ""; + + $this->dlog("TRACE:: _on_servicedereg_initial_result() has positive result, setting handler ID#$dereg_id for final result"); + + if ($this->_send_iq(NULL, 'set', $dereg_id, "jabber:iq:roster", $payload)) { + $this->dlog("TRACE:: _on_deregister_initial_result() SENT, existing"); + + return $dereg_id; + } else { + $this->dlog("TRACE:: _on_deregister_initial_result() FAILURE!!"); + + return false; + } + + } elseif ($this->_is_error_packet($packet)) { + $this->_handle_iq_error(&$packet,"servicederegfailure"); + } else { + $this->_call_handler("servicederegfailure",-2,"Unrecognized response from server"); + } + } + + function _on_servicedereg_final_result(&$packet) { + $this->dlog("TRACE:: _on_deregister_final_result() called!"); + + $packet_type = $this->_node($packet,array('iq','@','type')); + if ($packet_type == 'result') { + $this->_call_handler("servicederegistered"); + } elseif ($this->_is_error_packet($packet)) { + $this->_handle_iq_error(&$packet,"servicederegfailure"); + } else { + $this->_call_handler("servicederegfailure",-2,"Unrecognized response from server"); + } + } + + function _on_rosteradd_result(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type'));; + if ($packet_type == 'result') { + + $this->_call_handler("rosteradded",$this->_node($packet,array('iq','@','id'))); + + } elseif ($this->_is_error_packet($packet)) { + $this->_handle_iq_error(&$packet,"rosteraddfailure"); + } else { + $this->_call_handler("rosteraddfailure",-2,"Unrecognized response from server"); + } + } + + function _on_rosterupdate_result(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + if ($packet_type == 'result') { + $this->_call_handler("contactupdated",$this->_node($packet,array('iq','@','id'))); + + } elseif ($this->_is_error_packet($packet)) { + $this->_handle_iq_error(&$packet,"contactupdatefailure"); + } else { + $this->_call_handler("contactupdatefailure",-2,"Unrecognized response from server"); + } + } + function _on_rosterremove_result(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + if ($packet_type == 'result') { + $this->_call_handler("rosterremoved",$this->_node($packet,array('iq','@','id'))); + + } elseif ($this->_is_error_packet($packet)) { + $this->_handle_iq_error(&$packet,"rosterremovefailure"); + } else { + $this->_call_handler("rosterremovefailure",-2,"Unrecognized response from server"); + } + } + + function _on_private_data(&$packet) { + $packet_type = $this->_node($packet,array('iq','@','type')); + if ($packet_type == 'result') { + + $rootnode = $this->_node($packet,array('iq','#','query',0,'#')); + unset($rootnode[0]); + $rootnode = array_shift($rootnode); + $data = $rootnode[0]; + $namespace = $this->_node($data,array('@','xmlns')); + $rawvalues = $this->_node($data,array('#')); + + $values = array(); + if (is_array($rawvalues)) { + foreach ($rawvalues as $k=>$v) { + $values[$k] = $this->_node($v,array(0,'#')); + } + } + + $this->_call_handler("privatedata",$this->_node($packet,array('iq','@','id')),$namespace,$values); + + } elseif ($this->_is_error_packet($packet)) { + $this->_handle_iq_error(&$packet,"privatedatafailure"); + } else { + $this->_call_handler("privatedatafailure",-2,"Unrecognized response from server"); + } + } + + + // handles a generic IQ error; fires the specified error handler method + // with the error code/message retrieved from the IQ packet + function _handle_iq_error(&$packet,$error_handler="error") { + $error = $this->_node($packet,array('iq','#','error',0)); + $xmlns = $this->_node($packet,array('iq','#','query',0,'@','xmlns')); + $this->_call_handler( + $error_handler, + $this->_node($error,array('@','code')), + $this->_node($error,array('#')), + $xmlns, + $packet + ); + } + + // handles a generic error; fires the specified error handler method + // with the error code/message retrieved from the packet + function _handle_error(&$packet,$error_handler="error") { + $packet = array_shift($packet); + $error = $this->_node($packet,array('#','error',0)); + $xmlns = $this->_node($packet,array('#','query',0,'@','xmlns')); + $this->_call_handler( + $error_handler, + $this->_node($error,array('@','code')), + $this->_node($error,array('#')), + $xmlns, + $packet + ); + } + + + + // ==== Authentication Methods =========================================================== + + function _sendauth_digest($auth_id) { + $this->_log("Using digest authentication"); + + $payload = "{$this->_username} + {$this->_resource} + " . sha1($this->_stream_id . $this->_password) . ""; + + $this->_send_iq(NULL, 'set', $auth_id, "jabber:iq:auth", $payload); + } + + function _sendauth_plaintext($auth_id) { + $this->_log("Using plaintext authentication"); + + $payload = "{$this->_username} + {$this->_password} + {$this->_resource}"; + + $this->_send_iq(NULL, 'set', $auth_id, "jabber:iq:auth", $payload); + } + + + // ==== Helper Methods =================================================================== + + function _show($show) { + // off is not valid, but is used internally + $valid_shows = array("","away","chat","dnd","xa","off"); + if (!in_array($show,$valid_shows)) $show = ""; + + return $show; + } + + function dump(&$v) { + ob_start(); + var_dump($v); + $x = ob_get_contents(); + ob_end_clean(); + return $x; + + + return print_r($v,true); + } + + + function standardize_transport($transport,$force=true) { + $transports = array("msn","aim","yim","icq","jab"); + if (!in_array($transport,$transports)) { + if ($transport=="aol") { + $transport = "aim"; + } elseif ($transport=="yahoo") { + $transport = "yim"; + } else { + if ($force) $transport = "jab"; + } + } + return $transport; + } + + function get_transport($domain) { + $transport = $this->services[$domain]["type"]; + return $this->standardize_transport($transport); + } + + + + + + // ==== Packet Handling & Connection Methods ============================================= + + // generates and transmits an IQ packet + function _send_iq($to = NULL, $type = 'get', $id = NULL, $xmlns = NULL, $payload = NULL, $from = NULL) { + if (!preg_match("/^(get|set|result|error)$/", $type)) { + unset($type); + + $this->_log("ERROR: _send_iq() #2 - type must be 'get', 'set', 'result' or 'error'"); + return false; + + } elseif ($id && $xmlns) { + $xml = "_send($xml); + } else { + $this->_log("ERROR: SendIq() #1 - to, id and xmlns are mandatory"); + return false; + } + } + + + // writes XML data to the socket; trims and UTF8 encodes $xml before + // sending unless $pristine is true + function _send($xml,$pristine = false) { + // need UTF8 encoding to prevent character coding issues when + // users enter international characters + /* + if (!$pristine) { + $xml = trim(utf8_encode($xml)); + if (!$xml) return false; + } + */ + if(strlen($xml)==0) return true; + + if ($res = $this->_connection->socket_write($xml)) { + $this->_log("SEND: $xml"); + } else { + $this->_log("ERROR SENDING: $xml"); + } + return $res; + } + + + + function _receive() { + unset($incoming); + $packet_count = 0; + + $sleepfunc = $this->_sleep_func; + + $iterations = 0; + $empties = 0; + do { + $line = $this->_connection->socket_read(16384); + if (strlen($line)==0) { + $empties++; + if ($empties>15) break; + } else { + $empties = 0; + } + + $incoming .= $line; + $iterations++; + + // the iteration limit is just a brake to prevent infinite loops if + // something goes awry in socket_read() + } while($iterations<200); + + $incoming = trim($incoming); + + if ($incoming != "") { + //$this->_log("RECV: $incoming"); + + $temp = $this->_split_incoming($incoming); + + $packet_count = count($temp); + + for ($a = 0; $a < $packet_count; $a++) { + $this->_packet_queue[] = $this->xml->xmlize($temp[$a]); + + $this->_log("RECV: ".$temp[$a]); + //.$this->_packet_queue[count($this->_packet_queue)-1]); + } + } + + return $packet_count; + } + + function _get_next_packet() { + return array_shift($this->_packet_queue); + } + + function _split_incoming($incoming) { + $temp = preg_split("/<(message|iq|presence|stream)(?=[\:\s\>])/", $incoming, -1, PREG_SPLIT_DELIM_CAPTURE); + $array = array(); + + for ($a = 1; $a < count($temp); $a = $a + 2) { + $array[] = "<" . $temp[$a] . $temp[($a + 1)]; + } + + return $array; + } + + +} + +?> \ No newline at end of file diff --git a/message/output/jabber/jabberclass/class_SHA1Library.php b/message/output/jabber/jabberclass/class_SHA1Library.php new file mode 100644 index 0000000000..2b1e526ee9 --- /dev/null +++ b/message/output/jabber/jabberclass/class_SHA1Library.php @@ -0,0 +1,264 @@ +binb2hex($this->core_sha1($this->str2binb($s),strlen($s) * $this->chrsz));} + function b64_sha1($s){return $this->binb2b64($this->core_sha1($this->str2binb($s),strlen($s) * $this->chrsz));} + function str_sha1($s){return $this->binb2str($this->core_sha1($this->str2binb($s),strlen($s) * $this->chrsz));} + function hex_hmac_sha1($key, $data){ return $this->binb2hex($this->core_hmac_sha1($key, $data));} + function b64_hmac_sha1($key, $data){ return $this->binb2b64($this->core_hmac_sha1($key, $data));} + function str_hmac_sha1($key, $data){ return $this->binb2str($this->core_hmac_sha1($key, $data));} + + /* + * Perform a simple self-test to see if the VM is working + */ + function sha1_vm_test() + { + return $this->hex_sha1("abc") == "a9993e364706816aba3e25717850c26c9cd0d89d"; + } + + /* + * Calculate the SHA-1 of an array of big-endian words, and a bit $length + */ + function core_sha1($x, $len) + { + /* append padding */ + $x[$len >> 5] |= 0x80 << (24 - $len % 32); + $x[(($len + 64 >> 9) << 4) + 15] = $len; + + $w = Array(); + $a = 1732584193; + $b = -271733879; + $c = -1732584194; + $d = 271733878; + $e = -1009589776; + + for($i = 0; $i < sizeof($x); $i += 16) + { + $olda = $a; + $oldb = $b; + $oldc = $c; + $oldd = $d; + $olde = $e; + + for($j = 0; $j < 80; $j++) + { + if ($j < 16) + $w[$j] = $x[$i + $j]; + else + $w[$j] = $this->rol($w[$j-3] ^ $w[$j-8] ^ $w[$j-14] ^ $w[$j-16], 1); + + $t = $this->safe_add( $this->safe_add($this->rol($a, 5), $this->sha1_ft($j, $b, $c, $d)), + $this->safe_add($this->safe_add($e, $w[$j]), $this->sha1_kt($j))); + $e = $d; + $d = $c; + $c = $this->rol($b, 30); + $b = $a; + $a = $t; + } + + $a = $this->safe_add($a, $olda); + $b = $this->safe_add($b, $oldb); + $c = $this->safe_add($c, $oldc); + $d = $this->safe_add($d, $oldd); + $e = $this->safe_add($e, $olde); + } + + return Array($a, $b, $c, $d, $e); + } + + /* + * Joror: PHP does not have the java(script) >>> operator, so this is a + * replacement function. Credits to Terium. + */ + function zerofill_rightshift($a, $b) + { + $z = hexdec(80000000); + if ($z & $a) + { + $a >>= 1; + $a &= (~ $z); + $a |= 0x40000000; + $a >>= ($b-1); + } + else + { + $a >>= $b; + } + return $a; + } + + /* + * Perform the appropriate triplet combination function for the current + * iteration + */ + function sha1_ft($t, $b, $c, $d) + { + if($t < 20) return ($b & $c) | ((~$b) & $d); + if($t < 40) return $b ^ $c ^ $d; + if($t < 60) return ($b & $c) | ($b & $d) | ($c & $d); + return $b ^ $c ^ $d; + } + + /* + * Determine the appropriate additive constant for the current iteration + * Silly php does not understand the inline-if operator well when nested, + * so that's why it's ()ed now. + */ + function sha1_kt($t) + { + return ($t < 20) ? 1518500249 : (($t < 40) ? 1859775393 : + (($t < 60) ? -1894007588 : -899497514)); + } + + /* + * Calculate the HMAC-SHA1 of a key and some data + */ + function core_hmac_sha1($key, $data) + { + $bkey = $this->str2binb($key); + if(sizeof($bkey) > 16) $bkey = $this->core_sha1($bkey, sizeof($key) * $this->chrsz); + + $ipad = Array(); + $opad = Array(); + + for($i = 0; $i < 16; $i++) + { + $ipad[$i] = $bkey[$i] ^ 0x36363636; + $opad[$i] = $bkey[$i] ^ 0x5C5C5C5C; + } + + $hash = $this->core_sha1(array_merge($ipad,$this->str2binb($data)), 512 + sizeof($data) * $this->chrsz); + return $this->core_sha1(array_merge($opad,$hash), 512 + 160); + } + + /* + * Add integers, wrapping at 2^32. This uses 16-bit operations internally + * to work around bugs in some JS interpreters. + */ + function safe_add($x, $y) + { + $lsw = ($x & 0xFFFF) + ($y & 0xFFFF); + $msw = ($x >> 16) + ($y >> 16) + ($lsw >> 16); + return ($msw << 16) | ($lsw & 0xFFFF); + } + + /* + * Bitwise rotate a 32-bit number to the left. + */ + function rol($num, $cnt) + { + return ($num << $cnt) | $this->zerofill_rightshift($num, (32 - $cnt)); + } + + /* + * Convert an 8-bit or 16-bit string to an array of big-endian words + * In 8-bit function, characters >255 have their hi-byte silently ignored. + */ + function str2binb($str) + { + $bin = Array(); + $mask = (1 << $this->chrsz) - 1; + for($i = 0; $i < strlen($str) * $this->chrsz; $i += $this->chrsz) + $bin[$i >> 5] |= (ord($str{$i / $this->chrsz}) & $mask) << (24 - $i%32); + + return $bin; + } + + /* + * Convert an array of big-endian words to a string + */ + function binb2str($bin) + { + $str = ""; + $mask = (1 << $this->chrsz) - 1; + for($i = 0; $i < sizeof($bin) * 32; $i += $this->chrsz) + $str .= chr($this->zerofill_rightshift($bin[$i>>5], 24 - $i%32) & $mask); + return $str; + } + + /* + * Convert an array of big-endian words to a hex string. + */ + function binb2hex($binarray) + { + $hex_tab = $this->hexcase ? "0123456789ABCDEF" : "0123456789abcdef"; + $str = ""; + for($i = 0; $i < sizeof($binarray) * 4; $i++) + { + $str .= $hex_tab{($binarray[$i>>2] >> ((3 - $i%4)*8+4)) & 0xF} . + $hex_tab{($binarray[$i>>2] >> ((3 - $i%4)*8 )) & 0xF}; + } + + return $str; + } + + /* + * Convert an array of big-endian words to a base-64 string + */ + function binb2b64($binarray) + { + $tab = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; + $str = ""; + for($i = 0; i < sizeof($binarray) * 4; $i += 3) + { + $triplet = ((($binarray[$i >> 2] >> 8 * (3 - $i %4)) & 0xFF) << 16) + | ((($binarray[$i+1 >> 2] >> 8 * (3 - ($i+1)%4)) & 0xFF) << 8 ) + | (($binarray[$i+2 >> 2] >> 8 * (3 - ($i+2)%4)) & 0xFF); + for($j = 0; $j < 4; $j++) + { + if($i * 8 + $j * 6 > sizeof($binarray) * 32) $str .= $this->b64pad; + else $str .= $tab{($triplet >> 6*(3-j)) & 0x3F}; + } + } + return $str; + } +} + +if ( !function_exists('sha1') ) +{ + function sha1( $string, $raw_output = false ) + { + $library = &new SHA1Library(); + + return $raw_output ? $library->str_sha1($string) : $library->hex_sha1($string); + } +} +?> \ No newline at end of file diff --git a/message/output/jabber/jabberclass/class_XMLParser.php b/message/output/jabber/jabberclass/class_XMLParser.php new file mode 100644 index 0000000000..335ec24a58 --- /dev/null +++ b/message/output/jabber/jabberclass/class_XMLParser.php @@ -0,0 +1,139 @@ +_xml_depth($vals, $i); + + return $array; + } + + + + // _xml_depth() + // (c) Hans Anderson / http://www.hansanderson.com/php/xml/ + + function _xml_depth($vals, &$i) { + $children = array(); + + if ($vals[$i]['value']) { + array_push($children, trim($vals[$i]['value'])); + } + + while (++$i < count($vals)) { + switch ($vals[$i]['type']) { + case 'cdata': + array_push($children, trim($vals[$i]['value'])); + break; + + case 'complete': + $tagname = $vals[$i]['tag']; + $size = sizeof($children[$tagname]); + $children[$tagname][$size]['#'] = trim($vals[$i]['value']); + if ($vals[$i]['attributes']) { + $children[$tagname][$size]['@'] = $vals[$i]['attributes']; + } + break; + + case 'open': + $tagname = $vals[$i]['tag']; + $size = sizeof($children[$tagname]); + if ($vals[$i]['attributes']) { + $children[$tagname][$size]['@'] = $vals[$i]['attributes']; + $children[$tagname][$size]['#'] = $this->_xml_depth($vals, $i); + } else { + $children[$tagname][$size]['#'] = $this->_xml_depth($vals, $i); + } + break; + + case 'close': + return $children; + break; + } + } + + return $children; + } + + + + // TraverseXMLize() + // (c) acebone@f2s.com, a HUGE help! + + function TraverseXMLize($array, $arrName = "array", $level = 0) { + if ($level == 0) { + echo "
";
+		}
+
+		while (list($key, $val) = @each($array)) {
+			if (is_array($val)) {
+				$this->TraverseXMLize($val, $arrName . "[" . $key . "]", $level + 1);
+			} else {
+				echo '$' . $arrName . '[' . $key . '] = "' . $val . "\"\n";
+			}
+		}
+
+		if ($level == 0) {
+			echo "
"; + } + } + +} +?> \ No newline at end of file diff --git a/message/output/jabber/jabberclass/jabber_example.php b/message/output/jabber/jabberclass/jabber_example.php new file mode 100644 index 0000000000..6528bec4c6 --- /dev/null +++ b/message/output/jabber/jabberclass/jabber_example.php @@ -0,0 +1,224 @@ +#!/usr/local/bin/php -q +jab = &$jab; + $this->first_roster_update = true; + + echo "Created!\n"; + $this->countdown = 0; + } + + // called when a connection to the Jabber server is established + function handleConnected() { + echo "Connected!\n"; + + // now that we're connected, tell the Jabber class to login + echo "Authenticating ...\n"; + $this->jab->login(JABBER_USERNAME,JABBER_PASSWORD); + } + + // called after a login to indicate the the login was successful + function handleAuthenticated() { + echo "Authenticated!\n"; + + + echo "Fetching service list and roster ...\n"; + + // browser for transport gateways + $this->jab->browse(); + + // retrieve this user's roster + $this->jab->get_roster(); + + // set this user's presence + $this->jab->set_presence("","Ya, I'm online... so what?"); + } + + // called after a login to indicate that the login was NOT successful + function handleAuthFailure($code,$error) { + echo "Authentication failure: $error ($code)\n"; + + // set terminated to TRUE in the Jabber class to tell it to exit + $this->jab->terminated = true; + } + + // called periodically by the Jabber class to allow us to do our own + // processing + function handleHeartbeat() { + echo "Heartbeat - "; + + // if the countdown is in progress, determine if we need to take any action + if ($this->countdown>0) { + $this->countdown--; + + // display our countdown progress + echo "Countdown: {$this->countdown}\n"; + + + // first, we want to fire our composing event + if ($this->countdown==7) { + echo "Composing start\n"; + $this->jab->composing($this->last_msg_from,$this->last_msg_id); + } + + // next, we want to indicate that we've stopped composing a message + if ($this->countdown==5) { + echo "Composing stop\n"; + $this->jab->composing($this->last_msg_from,$this->last_msg_id,false); + } + + // next, we indicate that we're composing again + if ($this->countdown==3) { + echo "Composing start\n"; + $this->jab->composing($this->last_msg_from,$this->last_msg_id); + } + + // and finally, we send a message to the remote user and tell the Jabber class + // to exit + if ($this->countdown==1) { + echo "Send message\n"; + $this->jab->message($this->last_msg_from,"chat",NULL,"Hello! You said: ".$this->last_message); + $this->jab->terminated = true; + } + } else { + echo "Waiting for incoming message ...\n"; + } + /* + reset($this->jab->roster); + foreach ($this->jab->roster as $jid=>$details) { + echo "$jid\t\t\t".$details["transport"]."\t".$details["show"]."\t".$details["status"]."\n"; + } + */ + } + + // called when an error is received from the Jabber server + function handleError($code,$error,$xmlns) { + echo "Error: $error ($code)".($xmlns?" in $xmlns":"")."\n"; + } + + // called when a message is received from a remote contact + function handleMessage($from,$to,$body,$subject,$thread,$id,$extended) { + echo "Incoming message!\n"; + echo "From: $from\t\tTo: $to\n"; + echo "Subject: $subject\tThread; $thread\n"; + echo "Body: $body\n"; + echo "ID: $id\n"; + var_dump($extended); + echo "\n"; + + $this->last_message = $body; + + $this->last_msg_id = $id; + $this->last_msg_from = $from; + + // for the purposes of our example, we start a countdown here to do some + // random events, just for the sake of demonstration + echo "Starting countdown\n"; + $this->countdown = 10; + } + + function _contact_info($contact) { + return sprintf("Contact %s (JID %s) has status %s and message %s\n",$contact['name'],$contact['jid'],$contact['show'],$contact['status']); + } + + function handleRosterUpdate($jid) { + if ($this->first_roster_update) { + // the first roster update indicates that the entire roster has been + // downloaded for the first time + echo "Roster downloaded:\n"; + + foreach ($this->jab->roster as $k=>$contact) { + echo $this->_contact_info($contact); + } + $this->first_roster_update = false; + } else { + // subsequent roster updates indicate changes for individual roster items + $contact = $this->jab->roster[$jid]; + echo "Contact updated: " . $this->_contact_info($contact); + } + } + + function handleDebug($msg,$level) { + echo "DBG: $msg\n"; + } + +} + +// include the Jabber class +require_once("class_Jabber.php"); + +// create an instance of the Jabber class +$display_debug_info = false; +$jab = new Jabber($display_debug_info); + +// create an instance of our event handler class +$test = new TestMessenger($jab); + +// set handlers for the events we wish to be notified about +$jab->set_handler("connected",$test,"handleConnected"); +$jab->set_handler("authenticated",$test,"handleAuthenticated"); +$jab->set_handler("authfailure",$test,"handleAuthFailure"); +$jab->set_handler("heartbeat",$test,"handleHeartbeat"); +$jab->set_handler("error",$test,"handleError"); +$jab->set_handler("message_normal",$test,"handleMessage"); +$jab->set_handler("message_chat",$test,"handleMessage"); +$jab->set_handler("debug_log",$test,"handleDebug"); +$jab->set_handler("rosterupdate",$test,"handleRosterUpdate"); + +echo "Connecting ...\n"; + +// connect to the Jabber server +if (!$jab->connect(JABBER_SERVER)) { + die("Could not connect to the Jabber server!\n"); +} + +// now, tell the Jabber class to begin its execution loop +$jab->execute(CBK_FREQ,RUN_TIME); + +// Note that we will not reach this point (and the execute() method will not +// return) until $jab->terminated is set to TRUE. The execute() method simply +// loops, processing data from (and to) the Jabber server, and firing events +// (which are handled by our TestMessenger class) until we tell it to terminate. +// +// This event-based model will be familiar to programmers who have worked on +// desktop applications, particularly in Win32 environments. + +// disconnect from the Jabber server +$jab->disconnect(); +?> \ No newline at end of file diff --git a/message/output/jabber/lib.php b/message/output/jabber/lib.php new file mode 100644 index 0000000000..c5c4903f8d --- /dev/null +++ b/message/output/jabber/lib.php @@ -0,0 +1,49 @@ +name = 'jabber'; + if (!$DB->insert_record('message_processors', $provider)) { + $return = false; + } + return $result; +} diff --git a/message/output/jabber/message_output_jabber.php b/message/output/jabber/message_output_jabber.php new file mode 100644 index 0000000000..26f2841213 --- /dev/null +++ b/message/output/jabber/message_output_jabber.php @@ -0,0 +1,139 @@ +dirroot.'/message/output/lib.php'); + +class JabberMessenger { + function JabberMessenger(&$jab, $message) { + $this->jab = &$jab; + $this->message = $message; + $this->first_roster_update = true; + $this->countdown = 0; + } + // called when a connection to the Jabber server is established + function handleConnected() { + $this->jab->login(JABBER_USERNAME,JABBER_PASSWORD); + } + // called after a login to indicate the the login was successful + function handleAuthenticated() { + $userfrom = $DB->get_record('user', array('id' => $this->message->useridfrom)); + $this->jab->message("lfrodrigues@gmail.com","chat",NULL,fullname($userfrom)."(SITENAME) says: ".$this->message->fullmessage); + $this->jab->terminated = true; + } + // called after a login to indicate that the login was NOT successful + function handleAuthFailure($code,$error) { + // set terminated to TRUE in the Jabber class to tell it to exit + $this->jab->terminated = true; + } +} + + +class message_output_jabber extends message_output { + + /** + * Processes the message (sends using jabber). + * @param object $message the message to be sent + * @return true if ok, false if error + */ + function send_message($message){ + + require_once("jabberclass/class_Jabber.php"); + + $jab = new Jabber( false ); + // create an instance of our event handler class + $test = new JabberMessenger($jab, $message); + // set handlers for the events we wish to be notified about + $jab->set_handler("connected",$test,"handleConnected"); + $jab->set_handler("authenticated",$test,"handleAuthenticated"); + $jab->set_handler("authfailure",$test,"handleAuthFailure"); + + if (!$jab->connect(JABBER_SERVER)) { + return false; + } + + // now, tell the Jabber class to begin its execution loop + // don't way for events + $jab->execute(-1,RUN_TIME); + $jab->disconnect(); + + + $f = fopen('/tmp/event_jabber', 'a+'); + fwrite($f, date('l dS \of F Y h:i:s A')."\n"); + fwrite($f, "from: $message->userfromid\n"); + fwrite($f, "userto: $message->usertoid\n"); + fwrite($f, "subject: $message->subject\n"); + fclose($f); + + return true; + } + + /** + * Creates necessary fields in the messaging config form. + * @param object $mform preferences form class + */ + function config_form(&$mform){ + $mform->addElement('static', 'jabber_labeljabber', get_string('processortag', 'message').'Jabber ', ''); + $mform->addElement('text', 'jabber_jabberid', 'jabber ID'); + $mform->setAdvanced('jabber_labeljabber'); + $mform->setAdvanced('jabber_jabberid'); + } + + /** + * Parses the form submited data and saves it into preferences array. + * @param object $mform preferences form class + * @param array $preferences preferences array + */ + function process_form(&$form, &$preferences){ + $preferences['message_processor_jabber_jabberid'] = $form->jabber_jabberid; + } + + /** + * Loads the config data from database to put on the form (initial load) + * @param array $preferences preferences array + * @param int $userid the user id + */ + function load_data(&$preferences, $userid){ + $preferences->jabber_jabberid = get_user_preferences( 'message_processor_jabber_jabberid', '', $userid); + } + +} +?> diff --git a/message/output/jabber/version.php b/message/output/jabber/version.php new file mode 100755 index 0000000000..54b060e67e --- /dev/null +++ b/message/output/jabber/version.php @@ -0,0 +1,38 @@ +version = 2008072401; +$plugin->requires = 2008072401; + +?> diff --git a/message/output/lib.php b/message/output/lib.php new file mode 100644 index 0000000000..46d2216861 --- /dev/null +++ b/message/output/lib.php @@ -0,0 +1,45 @@ + diff --git a/message/output/popup/db/upgrade.php b/message/output/popup/db/upgrade.php new file mode 100644 index 0000000000..05783400b4 --- /dev/null +++ b/message/output/popup/db/upgrade.php @@ -0,0 +1,52 @@ +name = 'popup'; + if (! $DB->record_exists('message_processors', array('name' => $processor->name))){ + $result = $result && $DB->insert_record('message_processors', $processor); + } + } + + return $result; +} + +?> diff --git a/message/output/popup/lib.php b/message/output/popup/lib.php new file mode 100644 index 0000000000..dc5859b189 --- /dev/null +++ b/message/output/popup/lib.php @@ -0,0 +1,50 @@ +name = 'popup'; + if (!$DB->insert_record('message_processors', $provider)) { + $return = false; + } + return $result; +} + diff --git a/message/output/popup/message_output_popup.php b/message/output/popup/message_output_popup.php new file mode 100644 index 0000000000..e22f6a34d3 --- /dev/null +++ b/message/output/popup/message_output_popup.php @@ -0,0 +1,72 @@ +dirroot.'/message/output/lib.php'); + +class message_output_popup extends message_output{ + + /** + * Process the popup message. + * The popup doesn't send data only saves in the database for later use, + * the popup_interface.php takes the message from the message table into + * the message_read. + * @param object $message the message to be sent + * @return true if ok, false if error + */ + public function send_message($message){ + global $DB; + + //put the process record into db + $processor = $DB->get_record('message_processors', array('name'=>'popup')); + $procmessage = new object(); + $procmessage->unreadmessageid = $message->id; + $procmessage->processorid = $processor->id; + + if ( !$DB->insert_record('message_working', $procmessage) ) { + return false; + } + + //should only save this message for later delivery + return true; + } + + public function process_form(&$form, &$preferences){ + return true; + } + public function load_data(&$preferences, $userid){ + return true; + } +} +?> diff --git a/message/output/popup/popup_interface.php b/message/output/popup/popup_interface.php new file mode 100644 index 0000000000..d475851b16 --- /dev/null +++ b/message/output/popup/popup_interface.php @@ -0,0 +1,70 @@ +dirroot.'/user/profile/lib.php'); + + +$processor = $DB->get_record('message_processors', array('name' => 'popup')); + +$messagesproc = $DB->get_records('message_working', array('processorid'=>$processor->id)); + +//for every message to process check if it's for current user and process +foreach ($messagesproc as $msgp){ + $message = $DB->get_record('message', array('id'=>$msgp->unreadmessageid, 'useridto'=>$USER->id)); + if (!$message){ + continue; + } + + //this is the show for now --> SHOULD BE SOMETHING ELSE... + echo "Usr from: ".$message->useridfrom." to: ".$message->useridto." subject:".$message->subject."
"; + + /// Move the entry to the other table + $message->timeread = time(); + $messageid = $message->id; + unset($message->id); + + //delete what we've processed and check if can move message + $DB->delete_records('message_working', array('id' => $msgp->id)); + if ( $DB->count_records('message_working', array('unreadmessageid'=>$messageid)) == 0){ + if ($DB->insert_record('message_read', $message)) { + $DB->delete_records('message', array('id' => $messageid)); + } + } + +} + +?> diff --git a/message/output/popup/version.php b/message/output/popup/version.php new file mode 100755 index 0000000000..c966588c1e --- /dev/null +++ b/message/output/popup/version.php @@ -0,0 +1,38 @@ +version = 2008072401; +$plugin->requires = 2008072401; + +?> diff --git a/mod/assignment/db/upgrade.php b/mod/assignment/db/upgrade.php index ddc7df69d6..b1a0873315 100644 --- a/mod/assignment/db/upgrade.php +++ b/mod/assignment/db/upgrade.php @@ -35,6 +35,15 @@ function xmldb_assignment_upgrade($oldversion=0) { $DB->set_debug(true); upgrade_mod_savepoint($result, 2007101511, 'assignment'); } + + if ($result && $oldversion < 2008072401) { + $eventdata = new object(); + $eventdata->modulename = 'assignment'; + $eventdata->modulefile = 'mod/assignment/index.php'; + events_trigger('message_provider_register', $eventdata); + + upgrade_mod_savepoint($result, 2008072401, 'assignment'); + } return $result; } diff --git a/mod/assignment/lib.php b/mod/assignment/lib.php index c731a98a21..02529e45a2 100644 --- a/mod/assignment/lib.php +++ b/mod/assignment/lib.php @@ -5,6 +5,8 @@ * This class provides all the functionality for an assignment */ +require_once($CFG->libdir.'/eventslib.php'); + DEFINE ('ASSIGNMENT_COUNT_WORDS', 1); DEFINE ('ASSIGNMENT_COUNT_LETTERS', 2); @@ -1579,7 +1581,21 @@ class assignment_base { $posttext = $this->email_teachers_text($info); $posthtml = ($teacher->mailformat == 1) ? $this->email_teachers_html($info) : ''; + $eventdata = new object(); + $eventdata->modulename = 'assignment'; + $eventdata->userfrom = $user; + $eventdata->userto = $teacher; + $eventdata->subject = $postsubject; + $eventdata->fullmessage = $posttext; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = $posthtml; + $eventdata->smallmessage = ''; + if ( events_trigger('message_send', $eventdata) > 0 ){ + } + + /* @email_to_user($teacher, $user, $postsubject, $posttext, $posthtml); // If it fails, oh well, too bad. + */ } } } @@ -1932,6 +1948,19 @@ class assignment_base { /// OTHER STANDARD FUNCTIONS //////////////////////////////////////////////////////// +/** + * Code to be executed when a module is installed + * now is just used to register the module as message provider + */ +function assignment_install() { + $eventdata = new object(); + $eventdata->modulename = 'assignment'; + $eventdata->modulefile = 'mod/assignment/index.php'; + events_trigger('message_provider_register', $eventdata); + + return true; +} + /** * Deletes an assignment instance * @@ -2125,9 +2154,24 @@ function assignment_cron () { $posthtml = ""; } + $eventdata = new object(); + $eventdata->modulename = 'assignment'; + $eventdata->userfrom = $teacher; + $eventdata->userto = $user; + $eventdata->subject = $postsubject; + $eventdata->fullmessage = $posttext; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = $posthtml; + $eventdata->smallmessage = ''; + if ( events_trigger('message_send', $eventdata) > 0 ){ + echo "Error: assignment cron: Could not send out mail for id $submission->id to user $user->id ($user->email)\n"; + } + + /* if (! email_to_user($user, $teacher, $postsubject, $posttext, $posthtml)) { echo "Error: assignment cron: Could not send out mail for id $submission->id to user $user->id ($user->email)\n"; } + */ } $USER = $realuser; diff --git a/mod/assignment/version.php b/mod/assignment/version.php index dcaf4a12ee..dab1a0569e 100644 --- a/mod/assignment/version.php +++ b/mod/assignment/version.php @@ -5,8 +5,8 @@ // This fragment is called by /admin/index.php //////////////////////////////////////////////////////////////////////////////// -$module->version = 2007101511; -$module->requires = 2007101509; // Requires this Moodle version +$module->version = 2008072401; +$module->requires = 2008072401; // Requires this Moodle version $module->cron = 60; ?> diff --git a/mod/feedback/db/upgrade.php b/mod/feedback/db/upgrade.php index c9a7c57e31..3bce2e6f3c 100644 --- a/mod/feedback/db/upgrade.php +++ b/mod/feedback/db/upgrade.php @@ -232,6 +232,16 @@ function xmldb_feedback_upgrade($oldversion=0) { upgrade_mod_savepoint($result, 2008050105, 'feedback'); } + + if ($result and $oldversion < 2008072401) { + $eventdata = new object(); + $eventdata->modulename = 'forum'; + $eventdata->modulefile = 'mod/forum/index.php'; + events_trigger('message_provider_register', $eventdata); + + upgrade_mod_savepoint($result, 2008072401, 'feedback'); + } + return $result; } diff --git a/mod/feedback/lib.php b/mod/feedback/lib.php index 75c8465cee..6de28b09e8 100644 --- a/mod/feedback/lib.php +++ b/mod/feedback/lib.php @@ -8,6 +8,8 @@ * @package feedback */ +require_once($CFG->libdir.'/eventslib.php'); + /// Library of functions and constants for module feedback define('FEEDBACK_INCLUDE_TEST', 1); @@ -27,6 +29,20 @@ if(!isset($SESSION->feedback) OR !is_object($SESSION->feedback)) { $SESSION->feedback = new object(); } +/** + * Code to be executed when a module is installed + * now is just used to register the module as message provider + */ +function feedback_install() { + $eventdata = new object(); + $eventdata->modulename = 'feedback'; + $eventdata->modulefile = 'mod/feedback/index.php'; + events_trigger('message_provider_register', $eventdata); + + return true; +} + + /** * this will create a new instance and return the id number * of the new instance. @@ -1808,9 +1824,37 @@ function feedback_send_email($cm, $feedback, $course, $userid) { $posthtml = ($teacher->mailformat == 1) ? feedback_send_email_html($info, $course, $cm) : ''; if($feedback->anonymous == FEEDBACK_ANONYMOUS_NO) { + $eventdata = new object(); + $eventdata->modulename = 'feedback'; + $eventdata->userfrom = $user; + $eventdata->userto = $teacher; + $eventdata->subject = $postsubject; + $eventdata->fullmessage = $posttext; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = $posthtml; + $eventdata->smallmessage = ''; + if ( events_trigger('message_send', $eventdata) > 0 ){ + } + + /* @email_to_user($teacher, $user, $postsubject, $posttext, $posthtml); + */ }else { + $eventdata = new object(); + $eventdata->modulename = 'feedback'; + $eventdata->userfrom = $teacher; + $eventdata->userto = $teacher; + $eventdata->subject = $postsubject; + $eventdata->fullmessage = $posttext; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = $posthtml; + $eventdata->smallmessage = ''; + if ( events_trigger('message_send', $eventdata) > 0 ){ + } + + /* @email_to_user($teacher, $teacher, $postsubject, $posttext, $posthtml); + */ } } } @@ -1849,7 +1893,21 @@ function feedback_send_email_anonym($cm, $feedback, $course) { $posttext = feedback_send_email_text($info, $course); $posthtml = ($teacher->mailformat == 1) ? feedback_send_email_html($info, $course, $cm) : ''; + $eventdata = new object(); + $eventdata->modulename = 'feedback'; + $eventdata->userfrom = $teacher; + $eventdata->userto = $teacher; + $eventdata->subject = $postsubject; + $eventdata->fullmessage = $posttext; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = $posthtml; + $eventdata->smallmessage = ''; + if ( events_trigger('message_send', $eventdata) > 0 ){ + } + + /* @email_to_user($teacher, $teacher, $postsubject, $posttext, $posthtml); + */ } } } diff --git a/mod/feedback/version.php b/mod/feedback/version.php index 1fc5c1d1c5..935256ffd0 100644 --- a/mod/feedback/version.php +++ b/mod/feedback/version.php @@ -10,8 +10,8 @@ */ - $module->version = 2008052209; // The current module version (Date: YYYYMMDDXX) - $module->requires = 2007101503; // Requires this Moodle version + $module->version = 2008072401; // The current module version (Date: YYYYMMDDXX) + $module->requires = 2008072401; // Requires this Moodle version $feedback_version_intern = 1; //this version is used for restore older backups $module->cron = 0; // Period for cron to check this module (secs) diff --git a/mod/forum/db/upgrade.php b/mod/forum/db/upgrade.php index ed5605218a..74898d8cec 100644 --- a/mod/forum/db/upgrade.php +++ b/mod/forum/db/upgrade.php @@ -75,6 +75,16 @@ function xmldb_forum_upgrade($oldversion=0) { upgrade_mod_savepoint($result, 2007101512, 'forum'); } + + if ($result and $oldversion < 2008072401) { + $eventdata = new object(); + $eventdata->modulename = 'forum'; + $eventdata->modulefile = 'mod/forum/index.php'; + events_trigger('message_provider_register', $eventdata); + + upgrade_mod_savepoint($result, 2008072401, 'forum'); + } + return $result; diff --git a/mod/forum/lib.php b/mod/forum/lib.php index 518bbe505e..10cb8bf175 100644 --- a/mod/forum/lib.php +++ b/mod/forum/lib.php @@ -1,6 +1,7 @@ libdir.'/filelib.php'); +require_once($CFG->libdir.'/eventslib.php'); /// CONSTANTS /////////////////////////////////////////////////////////// @@ -28,6 +29,20 @@ define ('FORUM_AGGREGATE_SUM', 5); /// STANDARD FUNCTIONS /////////////////////////////////////////////////////////// +/** + * Code to be executed when a module is installed + * now is just used to register the module as message provider + */ +function forum_install() { + $eventdata = new object(); + $eventdata->modulename = 'forum'; + $eventdata->modulefile = 'mod/forum/index.php'; + events_trigger('message_provider_register', $eventdata); + + return true; +} + + /** * Given an object containing all the necessary data, * (defined by the form in mod_form.php) this function @@ -446,9 +461,21 @@ function forum_cron() { // Send the post now! mtrace('Sending ', ''); - + /* if (!$mailresult = email_to_user($userto, $userfrom, $postsubject, $posttext, $posthtml, '', '', $CFG->forum_replytouser)) { + */ + $eventdata = new object(); + $eventdata->modulename = 'forum'; + $eventdata->userfrom = $userfrom; + $eventdata->userto = $userto; + $eventdata->subject = $postsubject; + $eventdata->fullmessage = $posttext; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = $posthtml; + $eventdata->smallmessage = ''; + if ( events_trigger('message_send', $eventdata) > 0){ + mtrace("Error: mod/forum/cron.php: Could not send out mail for id $post->id to user $userto->id". " ($userto->email) .. not trying again."); add_to_log($course->id, 'forum', 'mail error', "discuss.php?d=$discussion->id#p$post->id", @@ -734,8 +761,20 @@ function forum_cron() { $posthtml = ''; } + /* if (!$mailresult = email_to_user($userto, $site->shortname, $postsubject, $posttext, $posthtml, '', '', $CFG->forum_replytouser)) { + */ + $eventdata = new object(); + $eventdata->modulename = 'forum'; + $eventdata->userfrom = $site->shortname; + $eventdata->userto = $userto; + $eventdata->subject = $postsubject; + $eventdata->fullmessage = $posttext; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = $posthtml; + $eventdata->smallmessage = ''; + if ( events_trigger('message_send', $eventdata) > 0){ mtrace("ERROR!"); echo "Error: mod/forum/cron.php: Could not send out digest mail to user $userto->id ($userto->email)... not trying again.\n"; add_to_log($course->id, 'forum', 'mail digest error', '', '', $cm->id, $userto->id); diff --git a/mod/forum/version.php b/mod/forum/version.php index 04777774f3..5fbc77909f 100644 --- a/mod/forum/version.php +++ b/mod/forum/version.php @@ -5,8 +5,8 @@ // This fragment is called by /admin/index.php //////////////////////////////////////////////////////////////////////////////// -$module->version = 2007101512; -$module->requires = 2007101509; // Requires this Moodle version +$module->version = 2008072401; +$module->requires = 2008072401; // Requires this Moodle version $module->cron = 60; ?> diff --git a/mod/lesson/db/upgrade.php b/mod/lesson/db/upgrade.php index 5089fecd44..77c465f98f 100644 --- a/mod/lesson/db/upgrade.php +++ b/mod/lesson/db/upgrade.php @@ -43,6 +43,15 @@ function xmldb_lesson_upgrade($oldversion=0) { upgrade_mod_savepoint($result, 2007072201, 'lesson'); } + + if ($result and $oldversion < 2008072401) { + $eventdata = new object(); + $eventdata->modulename = 'lesson'; + $eventdata->modulefile = 'mod/lesson/index.php'; + events_trigger('message_provider_register', $eventdata); + + upgrade_mod_savepoint($result, 2008072401, 'lesson'); + } return $result; } diff --git a/mod/lesson/essay.php b/mod/lesson/essay.php index 26da46fb0a..38c397ce95 100644 --- a/mod/lesson/essay.php +++ b/mod/lesson/essay.php @@ -10,6 +10,7 @@ require_once('../../config.php'); require_once('locallib.php'); require_once('lib.php'); + require_once($CFG->libdir.'/eventslib.php'); $id = required_param('id', PARAM_INT); // Course Module ID $mode = optional_param('mode', 'display', PARAM_ALPHA); @@ -219,7 +220,19 @@ // Subject $subject = get_string('essayemailsubject', 'lesson', format_string($pages[$attempt->pageid]->title,true)); + /* if(email_to_user($users[$attempt->userid], $USER, $subject, $plaintxt, $message)) { + */ + $eventdata = new object(); + $eventdata->modulename = 'lesson'; + $eventdata->userfrom = $USER; + $eventdata->userto = $users[$attempt->userid]; + $eventdata->subject = $subject; + $eventdata->fullmessage = $plaintext; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = $message; + $eventdata->smallmessage = ''; + if ( events_trigger('message_send', $eventdata) == 0){ $essayinfo->sent = 1; $attempt->useranswer = serialize($essayinfo); $DB->update_record('lesson_attempts', $attempt); diff --git a/mod/lesson/lib.php b/mod/lesson/lib.php index 24188c5f77..333c4b81b8 100644 --- a/mod/lesson/lib.php +++ b/mod/lesson/lib.php @@ -7,8 +7,24 @@ * @package lesson **/ +require_once($CFG->libdir.'/eventslib.php'); + define("LESSON_MAX_EVENT_LENGTH", "432000"); // 5 days maximum +/** + * Code to be executed when a module is installed + * now is just used to register the module as message provider + */ +function lesson_install() { + $eventdata = new object(); + $eventdata->modulename = 'lesson'; + $eventdata->modulefile = 'mod/lesson/index.php'; + events_trigger('message_provider_register', $eventdata); + + return true; +} + + /** * Given an object containing all the necessary data, * (defined by the form in mod_form.php) this function diff --git a/mod/lesson/version.php b/mod/lesson/version.php index 31faa6409d..cda7b5d6f2 100644 --- a/mod/lesson/version.php +++ b/mod/lesson/version.php @@ -8,8 +8,8 @@ * @package lesson **/ -$module->version = 2007101509; // The current module version (Date: YYYYMMDDXX) -$module->requires = 2007101509; // Requires this Moodle version +$module->version = 2008072401; // The current module version (Date: YYYYMMDDXX) +$module->requires = 2008072401; // Requires this Moodle version $module->cron = 0; // Period for cron to check this module (secs) ?> diff --git a/mod/quiz/db/upgrade.php b/mod/quiz/db/upgrade.php index 80fd008761..05ac39f7eb 100644 --- a/mod/quiz/db/upgrade.php +++ b/mod/quiz/db/upgrade.php @@ -76,6 +76,16 @@ function xmldb_quiz_upgrade($oldversion=0) { upgrade_mod_savepoint($result, 2008062001, 'quiz'); } + + if ($result and $oldversion < 2008072401) { + $eventdata = new object(); + $eventdata->modulename = 'quiz'; + $eventdata->modulefile = 'mod/quiz/index.php'; + events_trigger('message_provider_register', $eventdata); + + upgrade_mod_savepoint($result, 2008072401, 'quiz'); + } + return $result; diff --git a/mod/quiz/lib.php b/mod/quiz/lib.php index 530f48b875..f427436a49 100644 --- a/mod/quiz/lib.php +++ b/mod/quiz/lib.php @@ -11,6 +11,7 @@ require_once($CFG->libdir.'/pagelib.php'); require_once($CFG->libdir.'/questionlib.php'); +require_once($CFG->libdir.'/eventslib.php'); /// CONSTANTS /////////////////////////////////////////////////////////////////// @@ -57,6 +58,19 @@ define("QUIZ_MAX_EVENT_LENGTH", 5*24*60*60); // 5 days maximum /// FUNCTIONS /////////////////////////////////////////////////////////////////// +/** + * Code to be executed when a module is installed + * now is just used to register the module as message provider + */ +function quiz_install() { + $eventdata = new object(); + $eventdata->modulename = 'quiz'; + $eventdata->modulefile = 'mod/quiz/index.php'; + events_trigger('message_provider_register', $eventdata); + + return true; +} + /** * Given an object containing all the necessary data, * (defined by the form in mod_form.php) this function diff --git a/mod/quiz/locallib.php b/mod/quiz/locallib.php index 6b845bebbd..5bfa56ea81 100644 --- a/mod/quiz/locallib.php +++ b/mod/quiz/locallib.php @@ -27,6 +27,7 @@ require_once($CFG->dirroot . '/mod/quiz/lib.php'); require_once($CFG->dirroot . '/mod/quiz/accessrules.php'); require_once($CFG->dirroot . '/question/editlib.php'); require_once($CFG->dirroot . '/mod/quiz/attemptlib.php'); +require_once($CFG->libdir . '/eventslib.php'); /// Constants /////////////////////////////////////////////////////////////////// @@ -927,7 +928,20 @@ function quiz_send_confirmation($a) { $body = get_string('emailconfirmbody', 'quiz', $a); // send email and analyse result + $eventdata = new object(); + $eventdata->modulename = 'quiz'; + $eventdata->userfrom = get_admin(); + $eventdata->userto = $USER; + $eventdata->subject = $subject; + $eventdata->fullmessage = $body; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + return (events_trigger('message_send', $eventdata) == 0); + + /* return email_to_user($USER, get_admin(), $subject, $body); + */ } /** @@ -952,7 +966,20 @@ function quiz_send_notification($recipient, $a) { $body = get_string('emailnotifybody', 'quiz', $a); // send email and analyse result + $eventdata = new object(); + $eventdata->modulename = 'quiz'; + $eventdata->userfrom = $USER; + $eventdata->userto = $recipient; + $eventdata->subject = $subject; + $eventdata->fullmessage = $body; + $eventdata->fullmessageformat = FORMAT_PLAIN; + $eventdata->fullmessagehtml = ''; + $eventdata->smallmessage = ''; + return (events_trigger('message_send', $eventdata) == 0); + + /* return email_to_user($recipient, $USER, $subject, $body); + */ } /** diff --git a/mod/quiz/version.php b/mod/quiz/version.php index 7615fc10c7..942cfedbe8 100644 --- a/mod/quiz/version.php +++ b/mod/quiz/version.php @@ -5,8 +5,8 @@ // This fragment is called by moodle_needs_upgrading() and /admin/index.php //////////////////////////////////////////////////////////////////////////////// -$module->version = 2008062001; // The (date) version of this module -$module->requires = 2007101509; // Requires this Moodle version +$module->version = 2008072401; // The (date) version of this module +$module->requires = 2008072401; // Requires this Moodle version $module->cron = 0; // How often should cron check this module (seconds)? ?> diff --git a/user/editadvanced.php b/user/editadvanced.php index 7d8d098184..2c6268c7c9 100644 --- a/user/editadvanced.php +++ b/user/editadvanced.php @@ -100,6 +100,7 @@ print_error('cannotcreateuser'); } $usercreated = true; + } else { if (!$DB->update_record('user', $usernew)) { print_error('cannotupdateuser'); @@ -146,9 +147,20 @@ // reload from db $usernew = $DB->get_record('user', array('id'=>$usernew->id)); - + // trigger events if ($usercreated) { + //add default preferences for the messageprocessors (by default all users get email) + $providers = $DB->get_records('message_providers'); + $preferences = array(); + foreach ( $providers as $providerid => $provider){ + $preferences[ 'message_provider_'.$provider->modulename.'_loggedin' ] = 'popup'; + $preferences[ 'message_provider_'.$provider->modulename.'_loggedoff' ] = 'email'; + } + if (!set_user_preferences( $preferences, $usernew->id ) ){ + print_error('Error updating user message preferences'); + } + events_trigger('user_created', $usernew); } else { events_trigger('user_updated', $usernew); @@ -167,7 +179,7 @@ redirect("$CFG->wwwroot/$CFG->admin/"); } else { redirect("$CFG->wwwroot/user/view.php?id=$USER->id&course=$course->id"); - } + } } else { redirect("$CFG->wwwroot/$CFG->admin/user.php"); } diff --git a/user/tabs.php b/user/tabs.php index 7deeada633..8dc6152f41 100644 --- a/user/tabs.php +++ b/user/tabs.php @@ -238,6 +238,12 @@ } } } + +///added a new messaging tab + if (has_capability('moodle/user:editownmessageprofile', $systemcontext)) { + $toprow[] = new tabobject('editmessage', $wwwroot.'/message/edit.php?id='.$user->id.'&course='.$course->id, get_string('editmymessage', 'message')); + } + /// Add second row to display if there is one if (!empty($secondrow)) { diff --git a/version.php b/version.php index f8a3b96b6b..792ceb80fb 100644 --- a/version.php +++ b/version.php @@ -6,7 +6,7 @@ // This is compared against the values stored in the database to determine // whether upgrades should be performed (see lib/db/*.php) - $version = 2008072300; // YYYYMMDD = date of the last version bump + $version = 2008072401; // YYYYMMDD = date of the last version bump // XX = daily increments $release = '2.0 dev (Build: 20080724)'; // Human-friendly version name