Difference between revisions of "Find Avatar Key"

From Second Life Wiki
Jump to navigation Jump to search
m (<lsl> tag to <source>)
 
(One intermediate revision by one other user not shown)
Line 12: Line 12:
* No special instructions. It operates stand alone once installed.
* No special instructions. It operates stand alone once installed.


<lsl>// Find Avatar Key Script
<source lang="lsl2">// Find Avatar Key Script
// by Huney Jewell
// by Huney Jewell
// based on Name2Key code published in LSL Library
// based on Name2Key code published in LSL Library
Line 72: Line 72:
             {
             {
                 key id = llHTTPRequest(search + firstName + "+" + lastName, [], "");
                 key id = llHTTPRequest(search + firstName + "+" + lastName, [], "");
                 requests += [(string)id,name];
                 requests += [id,name];
             }
             }
         }
         }
Line 80: Line 80:
     {
     {
         //        llOwnerSay("Status:" + (string) status + "; Body: " + body); // DEBUG
         //        llOwnerSay("Status:" + (string) status + "; Body: " + body); // DEBUG
         integer position = llListFindList(requests,[(string)request_id]);
         integer position = llListFindList(requests,[request_id]);
         if (position != -1)
         if (position != -1)
         {
         {
Line 102: Line 102:
         }
         }
     }
     }
}</lsl>
}</source>
 
<div id="box">


<div id="box">
== Comments ==
== Comments ==
<div style="padding: 0.5em;">
<div style="padding: 0.5em;">

Latest revision as of 20:20, 24 January 2015

Find Avatar Key

Explores UUID of avatar whose name is said in local chat or who touches the prim. Uses Name2Key code published in LSL Library.

Requirements:

  • Place this script into a single prim and decorate to taste.

Operation:

  • No special instructions. It operates stand alone once installed.
// Find Avatar Key Script
// by Huney Jewell
// based on Name2Key code published in LSL Library
//
// Put in single prim
// Explores UUID of avatar whose name is said in local chat or who touches the prim
// LL Search engine sometimes returns wrong profile, hence lookup may fail.
// Then the only method to explore the key is by touching the prim
//

// GLOBALS
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

// System settings - Do Not Change Anything Below!

string search    = "http://lawlinter.net/secondlifeutility/name2key.php5?name="; // Name2Key URL
//string search    = "http://w-hat.com/name2key?terse=1&name="; // Alternate Name2Key URL
string notFound  = "00000000-0000-0000-0000-000000000000";

list   requests  = [];

// CODE ENTRY
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

default
{
    on_rez(integer i)
    {
        llResetScript();
    }

    state_entry()
    {
        llSay(0, "Ready. Say \"/1 firstname lastname\" or touch me");
        llListen(1, "", "", "");
    }

    touch_start(integer total_number)
    {
        integer i = 0;
        for (; i < total_number; ++i)
        {
            llSay(0, llDetectedName(i) + " = " + (string)llDetectedKey(i));
        }
    }

    listen(integer c, string n, key i, string msg)
    {
        list nameParts = llParseString2List(msg, [" "], []);
        if (llGetListLength(nameParts) < 2)
            llSay(0,"Name '" + msg + "' incomplete, try again.");
        else
        {
            string firstName = llList2String(nameParts, 0);
            string lastName = llList2String(nameParts, 1);
            string name = firstName + " " + lastName;
            llSay(0,"Requesting key for " + name);
            if(llListFindList(requests,[name]) == -1)
            {
                key id = llHTTPRequest(search + firstName + "+" + lastName, [], "");
                requests += [id,name];
            }
        }
    }

    http_response(key request_id, integer status, list metadata, string body)
    {
        //        llOwnerSay("Status:" + (string) status + "; Body: " + body); // DEBUG
        integer position = llListFindList(requests,[request_id]);
        if (position != -1)
        {
            string name = llList2String(requests,position+1);
            if (status == 200)
            {
                string avKey = llGetSubString(body,0,35);
                if (avKey != notFound)
                    llSay(0,name + " = " + avKey);
                else
                    llSay(0,"Lookup '" + name + "' failed: Not found.");
            }
            else
            {
                if (status == 499)
                    llSay(0,"Lookup '" + name + "' timed out, try again.");
                else
                    llSay(0,"Lookup '" + name + "' failed: HTTP error code " + (string)status);
            }
            requests = llDeleteSubList(requests,position,position+1);
        }
    }
}

Comments

The search URL needed to be changed as of 2010-01-10 to comply with modification of LL HTML code, which apparently moved the requested key out of LSL limit for body parameter (within http_response event).