| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- //
- // The line above should be left blank to avoid script errors in OpenSim.
- // Manual avatar registration and enrolment script.
- // Will initiate manual (URL-based) avatar registration/enrolment in
- // response to link messages.
- //
- // Part of the Sloodle project (www.sloodle.org).
- // Copyright (c) 2008 Sloodle
- // Released under the GNU GPL v3
- //
- // Contributors:
- // Peter R. Bloomfield
- //
- // Can be supplied with 3 link messages for registration only, enrolment only, or both.
- // The avatar in question should be identified in the key value for all 3.
- // The string value should take on one of the following formats:
- //
- // <cmd>|<sloodleserverroot>|<sloodlecontrollerid>|<prim_pwd>
- // <cmd>|<sloodleserverroot>|<sloodlecontrollerid>|<uuid>|<pwd>
- //
- // The <cmd> value should be one of the following:
- //
- // do:reg = registration
- // do:enrol = enrolment
- // do:regenrol = registration & enrolment
- //
- ///// DATA /////
- integer SLOODLE_CHANNEL_ERROR_TRANSLATION_REQUEST=-1828374651; // this channel is used to send status codes for translation to the error_messages lsl script
- integer SLOODLE_CHANNEL_OBJECT_DIALOG = -3857343;
- integer SLOODLE_CHANNEL_AVATAR_DIALOG = 1001;
- string SLOODLE_REG_LINKER = "/mod/sloodle/login/regenrol_linker.php";
- string SLOODLE_EOF = "sloodleeof";
- list httpreqs = []; // Alternating list of HTTP request keys, and their corresponding avatar keys
- ///// TRANSLATION /////
- // Link message channels
- integer SLOODLE_CHANNEL_TRANSLATION_REQUEST = -1928374651;
- integer SLOODLE_CHANNEL_TRANSLATION_RESPONSE = -1928374652;
- // Translation output methods
- string SLOODLE_TRANSLATE_LINK = "link"; // No output parameters - simply returns the translation on SLOODLE_TRANSLATION_RESPONSE link message channel
- string SLOODLE_TRANSLATE_SAY = "say"; // 1 output parameter: chat channel number
- string SLOODLE_TRANSLATE_WHISPER = "whisper"; // 1 output parameter: chat channel number
- string SLOODLE_TRANSLATE_SHOUT = "shout"; // 1 output parameter: chat channel number
- string SLOODLE_TRANSLATE_REGION_SAY = "regionsay"; // 1 output parameter: chat channel number
- string SLOODLE_TRANSLATE_OWNER_SAY = "ownersay"; // No output parameters
- string SLOODLE_TRANSLATE_DIALOG = "dialog"; // Recipient avatar should be identified in link message keyval. At least 2 output parameters: first the channel number for the dialog, and then 1 to 12 button label strings.
- string SLOODLE_TRANSLATE_LOAD_URL = "loadurl"; // Recipient avatar should be identified in link message keyval. 1 output parameter giving URL to load.
- string SLOODLE_TRANSLATE_LOAD_URL_PARALLEL = "loadurlpar"; // Recipient avatar should be identified in link message keyval. 1 output parameter giving URL to load.
- string SLOODLE_TRANSLATE_HOVER_TEXT = "hovertext"; // 2 output parameters: colour <r,g,b>, and alpha value
- string SLOODLE_TRANSLATE_IM = "instantmessage"; // Recipient avatar should be identified in link message keyval. No output parameters.
- // Send a translation request link message
- sloodle_translation_request(string output_method, list output_params, string string_name, list string_params, key keyval, string batch)
- {
- llMessageLinked(LINK_THIS, SLOODLE_CHANNEL_TRANSLATION_REQUEST, output_method + "|" + llList2CSV(output_params) + "|" + string_name + "|" + llList2CSV(string_params) + "|" + batch, keyval);
- }
- ///// ----------- /////
- ///// FUNCTIONS /////
- /******************************************************************************************************************************
- * sloodle_error_code -
- * Author: Paul Preibisch
- * Description - This function sends a linked message on the SLOODLE_CHANNEL_ERROR_TRANSLATION_REQUEST channel
- * The error_messages script hears this, translates the status code and sends an instant message to the avuuid
- * Params: method - SLOODLE_TRANSLATE_SAY, SLOODLE_TRANSLATE_IM etc
- * Params: avuuid - this is the avatar UUID to that an instant message with the translated error code will be sent to
- * Params: status code - the status code of the error as on our wiki: http://slisweb.sjsu.edu/sl/index.php/Sloodle_status_codes
- *******************************************************************************************************************************/
- sloodle_error_code(string method, key avuuid,integer statuscode){
- llMessageLinked(LINK_SET, SLOODLE_CHANNEL_ERROR_TRANSLATION_REQUEST, method+"|"+(string)avuuid+"|"+(string)statuscode, NULL_KEY);
- }
- // Send debug info
- sloodle_debug(string msg)
- {
- llMessageLinked(LINK_THIS, DEBUG_CHANNEL, msg, NULL_KEY);
- }
- ///// STATES /////
- // Only a single state... no configuration needed
- default
- {
- state_entry()
- {
- }
-
- link_message(integer sender_num, integer num, string sval, key kval)
- {
- // Check which channel this message arrived on
- if (num == SLOODLE_CHANNEL_OBJECT_DIALOG) {
- // Make sure we have a key value for an avatar
- if (kval == NULL_KEY || kval != llGetOwnerKey(kval)) return;
-
- // Parse the message into fields
- list fields = llParseStringKeepNulls(sval, ["|"], []);
- integer numfields = llGetListLength(fields);
- if (numfields < 4) return;
- // Make sure it's an expected command
- string cmd = llList2String(fields, 0);
- if (cmd != "do:reg" && cmd != "do:enrol" && cmd != "do:regenrol") return;
- // Extract the mode from the command
- string sloodlemode = llGetSubString(cmd, 3, -1);
-
- // Get all the other fields
- string sloodleserverroot = llList2String(fields, 1);
- integer sloodlecontrollerid = (integer)llList2String(fields, 2);
- string sloodlepwd = llList2String(fields, 3);
-
- // If there is an additional field, then it was an object-specific password
- if (numfields > 4) {
- sloodlepwd += "|" + llList2String(fields, 4);
- }
-
- // Notify the user
- sloodle_translation_request(SLOODLE_TRANSLATE_IM, [], "attempting" + sloodlemode, [], kval, "regenrol");
-
- // Send the request
- string body = "sloodlecontrollerid=" + (string)sloodlecontrollerid;
- body += "&sloodlepwd=" + sloodlepwd;
- body += "&sloodleuuid=" + (string)kval;
- body += "&sloodleavname=" + llKey2Name(kval);
- body += "&sloodlemode=" + sloodlemode;
- key newhttp = llHTTPRequest(sloodleserverroot + SLOODLE_REG_LINKER, [HTTP_METHOD, "POST", HTTP_MIMETYPE, "application/x-www-form-urlencoded"], body);
- httpreqs += [newhttp, kval];
- }
- }
-
- http_response(key id, integer status, list meta, string body)
- {
- // Ignore unexpected responses
- integer pos = llListFindList(httpreqs, [id]);
- if (pos < 0) return;
- // Grab the avatar key then delete the entries
- key av = llList2Key(httpreqs, pos + 1);
- httpreqs = llDeleteSubList(httpreqs, pos, pos + 1);
-
- // Check the return code
- if (status != 200) {
- sloodle_translation_request(SLOODLE_TRANSLATE_IM, [0], "httperror:code", [status], av, "");
- return;
- }
-
- // Split the response into lines
- list lines = llParseStringKeepNulls(body, ["\n"], []);
- integer numlines = llGetListLength(lines);
- // Fetch the status line
- list statusfields = llParseStringKeepNulls(llList2String(lines, 0), ["|"], []);
- integer statuscode = (integer)llList2String(statusfields, 0);
- // Check for standard status codes
- if (statuscode == -321) {
- sloodle_translation_request(SLOODLE_TRANSLATE_IM, [0], "enrolfailed:notreg", [statuscode], av, "regenrol");
- return;
-
- } else if (statuscode == 301) {
- sloodle_translation_request(SLOODLE_TRANSLATE_IM, [0], "alreadyauthenticated", [llKey2Name(av)], av, "regenrol");
- llMessageLinked(LINK_THIS, SLOODLE_CHANNEL_OBJECT_DIALOG, "confirm:reg", av);
- return;
- } else if (statuscode == 401) {
- sloodle_translation_request(SLOODLE_TRANSLATE_IM, [0], "alreadyenrolled", [llKey2Name(av)], av, "regenrol");
- llMessageLinked(LINK_THIS, SLOODLE_CHANNEL_OBJECT_DIALOG, "confirm:enrol", av);
- return;
-
- } else if (statuscode <= 0) {
- //sloodle_translation_request(SLOODLE_TRANSLATE_IM, [0], "servererror", [statuscode], av, "");
- sloodle_error_code(SLOODLE_TRANSLATE_SAY, NULL_KEY,statuscode); //send message to error_message.lsl
- return;
- }
-
- // We expect at least 2 lines
- if (numlines < 2) {
- sloodle_translation_request(SLOODLE_TRANSLATE_IM, [0], "badresponseformat", [], av, "");
- return;
- }
-
- // Grab the URL
- string url = llList2String(lines, 1);
- sloodle_translation_request(SLOODLE_TRANSLATE_LOAD_URL_PARALLEL, [url], "regenrolurl", [], av, "regenrol");
- }
- }
- // Please leave the following line intact to show where the script lives in Git:
- // SLOODLE LSL Script Git Location: mod/regenrolbooth-1.0/objects/default/assets/sloodle_manual_reg_enrol.lslp
|