| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- <?php
- /**
- * Sloodle chat linker (for Sloodle 0.3).
- * Allows a Sloodle WebIntercom tool link into a Moodle chatroom.
- * Fetches a recent chat history, and optionally inserts a new message.
- *
- * @package sloodlechat
- * @copyright Copyright (c) 2007-8 Sloodle (various contributors)
- * @license http://www.gnu.org/licenses/gpl-3.0.html GNU GPL v3
- *
- * @todo Implement capabilities to make sure users can write to the chatroom (will need special handling to let guest users be permitted if desired)
- *
- * @contributor (various)
- * @contributor Peter R. Bloomfield
- */
-
- // This script should be called with the following parameters:
- // sloodlecontrollerid = ID of a Sloodle Controller through which to access Moodle
- // sloodlepwd = the prim password or object-specific session key to authenticate the request
- // sloodlemoduleid = ID of a chatroom
- //
- // If adding a new message, the following parameters should be provided:
- // sloodleuuid = UUID of the avatar
- // sloodleavname = name of the avatar
- // message = the body of the message
- //
- // The following parameter is optional:
- // sloodledebug = if 'true', then Sloodle debugging mode is activated
-
- /** Lets Sloodle know we are in a linker script. */
- define('SLOODLE_LINKER_SCRIPT', true);
-
- /** Grab the Sloodle/Moodle configuration. */
- require_once('../../init.php');
- /** Include the Sloodle PHP API. */
- require_once(SLOODLE_LIBROOT.'/sloodle_session.php');
-
- // Authenticate the request, and load a chat module
- $sloodle = new SloodleSession();
- $sloodle->authenticate_request();
- $sloodle->load_module('chat', true);
- // Attempt to validate the user
- // (this will auto-register/enrol users where necessary and allowed)
- // If server access level is public, then validation is not essential... otherwise, it is
- $sloodleserveraccesslevel = $sloodle->request->get_server_access_level(false);
- if ($sloodleserveraccesslevel == 0) $sloodle->validate_user(false);
- else $sloodle->validate_user(true);
- $sloodle->validate_requirements();
-
- // Has an incoming message been provided?
- $message = sloodle_clean_for_db($sloodle->request->optional_param('message', null));
- if ($message != null) {
- // Add it to the chatroom - if it fails add a negative side effect code to our response.
- // The positive side effect will be added by the function if successful.
- if (!$sloodle->module->add_message($message)) {
- $sloodle->response->add_side_effect(-10101);
- add_to_log($sloodle->course->get_course_id(), 'sloodle', 'add message', '', 'Failed to add chat message to chatroom', $sloodle->request->get_module_id());
- } else {
- add_to_log($sloodle->course->get_course_id(), 'sloodle', 'add message', '', 'Added chat message to chatroom', $sloodle->request->get_module_id());
- }
- }
-
- // Start preparing the response
- $sloodle->response->set_status_code(1);
- $sloodle->response->set_status_descriptor('OK');
-
- // Fetch a chat history
- $messages = $sloodle->module->get_chat_history();
- foreach ($messages as $m) {
- $author = sloodle_clean_for_output($m->user->get_user_firstname().' '.$m->user->get_user_lastname());
- $sloodle->response->add_data_line(array($m->id, $author, sloodle_clean_for_output($m->message)));
- }
-
- // Output our response
- sloodle_debug('<pre>'); // For debug mode, lets us see the response in a browser
- $sloodle->response->render_to_output();
- sloodle_debug('</pre>');
-
- ?>
|