corrade-lsl-templates – Diff between revs 41 and 42

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 41 Rev 42
Line 1... Line 1...
1 /////////////////////////////////////////////////////////////////////////// 1 ///////////////////////////////////////////////////////////////////////////
2 // Copyright (C) Wizardry and Steamworks 2016 - License: CC BY 2.0 // 2 // Copyright (C) Wizardry and Steamworks 2016 - License: GNU GPLv3 //
3 /////////////////////////////////////////////////////////////////////////// 3 ///////////////////////////////////////////////////////////////////////////
4 // 4 //
5 // A module that bans group members using fuzzy name matching. 5 // A module that bans group members using fuzzy name matching.
6 // 6 //
7 /////////////////////////////////////////////////////////////////////////// 7 ///////////////////////////////////////////////////////////////////////////
Line 10... Line 10...
10 // Copyright (C) 2015 Wizardry and Steamworks - License: CC BY 2.0 // 10 // Copyright (C) 2015 Wizardry and Steamworks - License: CC BY 2.0 //
11 /////////////////////////////////////////////////////////////////////////// 11 ///////////////////////////////////////////////////////////////////////////
12 string wasKeyValueGet(string k, string data) { 12 string wasKeyValueGet(string k, string data) {
13 if(llStringLength(data) == 0) return ""; 13 if(llStringLength(data) == 0) return "";
14 if(llStringLength(k) == 0) return ""; 14 if(llStringLength(k) == 0) return "";
15 list a = llParseStringKeepNulls(data, ["&", "="], []); 15 list a = llParseString2List(data, ["&", "="], []);
16 integer i = llListFindList(llList2ListStrided(a, 0, -1, 2), [ k ]); 16 integer i = llListFindList(llList2ListStrided(a, 0, -1, 2), [ k ]);
17 if(i != -1) return llList2String(a, 2*i+1); 17 if(i != -1) return llList2String(a, 2*i+1);
18 return ""; 18 return "";
19 } 19 }
Line 20... Line 20...
20 20
21 /////////////////////////////////////////////////////////////////////////// 21 ///////////////////////////////////////////////////////////////////////////
22 // Copyright (C) 2013 Wizardry and Steamworks - License: CC BY 2.0 // 22 // Copyright (C) 2013 Wizardry and Steamworks - License: GNU GPLv3 //
23 /////////////////////////////////////////////////////////////////////////// 23 ///////////////////////////////////////////////////////////////////////////
24 string wasKeyValueEncode(list data) { 24 string wasKeyValueEncode(list data) {
25 list k = llList2ListStrided(data, 0, -1, 2); 25 list k = llList2ListStrided(data, 0, -1, 2);
26 list v = llList2ListStrided(llDeleteSubList(data, 0, 0), 0, -1, 2); 26 list v = llList2ListStrided(llDeleteSubList(data, 0, 0), 0, -1, 2);
Line 32... Line 32...
32 } while(llGetListLength(k) != 0); 32 } while(llGetListLength(k) != 0);
33 return llDumpList2String(data, "&"); 33 return llDumpList2String(data, "&");
34 } 34 }
Line 35... Line 35...
35   35  
36 /////////////////////////////////////////////////////////////////////////// 36 ///////////////////////////////////////////////////////////////////////////
37 // Copyright (C) 2011 Wizardry and Steamworks - License: CC BY 2.0 // 37 // Copyright (C) 2011 Wizardry and Steamworks - License: GNU GPLv3 //
38 /////////////////////////////////////////////////////////////////////////// 38 ///////////////////////////////////////////////////////////////////////////
39 // http://was.fm/secondlife/wanderer 39 // http://was.fm/secondlife/wanderer
40 vector wasCirclePoint(float radius) { 40 vector wasCirclePoint(float radius) {
41 float x = llPow(-1, 1 + (integer) llFrand(2)) * llFrand(radius*2); 41 float x = llPow(-1, 1 + (integer) llFrand(2)) * llFrand(radius*2);
Line 44... Line 44...
44 return <x, y, 0>; 44 return <x, y, 0>;
45 return wasCirclePoint(radius); 45 return wasCirclePoint(radius);
46 } 46 }
Line 47... Line 47...
47   47  
48 /////////////////////////////////////////////////////////////////////////// 48 ///////////////////////////////////////////////////////////////////////////
49 // Copyright (C) 2015 Wizardry and Steamworks - License: CC BY 2.0 // 49 // Copyright (C) 2015 Wizardry and Steamworks - License: GNU GPLv3 //
50 /////////////////////////////////////////////////////////////////////////// 50 ///////////////////////////////////////////////////////////////////////////
51 // escapes a string in conformance with RFC1738 51 // escapes a string in conformance with RFC1738
52 string wasURLEscape(string i) { 52 string wasURLEscape(string i) {
53 string o = ""; 53 string o = "";
Line 68... Line 68...
68 } while(i != ""); 68 } while(i != "");
69 return o; 69 return o;
70 } 70 }
Line 71... Line 71...
71   71  
72 /////////////////////////////////////////////////////////////////////////// 72 ///////////////////////////////////////////////////////////////////////////
73 // Copyright (C) 2015 Wizardry and Steamworks - License: CC BY 2.0 // 73 // Copyright (C) 2015 Wizardry and Steamworks - License: GNU GPLv3 //
74 /////////////////////////////////////////////////////////////////////////// 74 ///////////////////////////////////////////////////////////////////////////
75 list wasCSVToList(string csv) { 75 list wasCSVToList(string csv) {
76 list l = []; 76 list l = [];
77 list s = []; 77 list s = [];
Line 107... Line 107...
107 // postcondition: length(s) = 0 107 // postcondition: length(s) = 0
108 return l + m; 108 return l + m;
109 } 109 }
Line 110... Line 110...
110   110  
111 /////////////////////////////////////////////////////////////////////////// 111 ///////////////////////////////////////////////////////////////////////////
112 // Copyright (C) 2015 Wizardry and Steamworks - License: CC BY 2.0 // 112 // Copyright (C) 2015 Wizardry and Steamworks - License: GNU GPLv3 //
113 /////////////////////////////////////////////////////////////////////////// 113 ///////////////////////////////////////////////////////////////////////////
114 string wasListToCSV(list l) { 114 string wasListToCSV(list l) {
115 list v = []; 115 list v = [];
116 do { 116 do {
Line 136... Line 136...
136 } while(l != []); 136 } while(l != []);
137 return llDumpList2String(v, ","); 137 return llDumpList2String(v, ",");
138 } 138 }
Line 139... Line 139...
139   139  
140 /////////////////////////////////////////////////////////////////////////// 140 ///////////////////////////////////////////////////////////////////////////
141 // Copyright (C) 2015 Wizardry and Steamworks - License: CC BY 2.0 // 141 // Copyright (C) 2015 Wizardry and Steamworks - License: GNU GPLv3 //
142 /////////////////////////////////////////////////////////////////////////// 142 ///////////////////////////////////////////////////////////////////////////
143 // unescapes a string in conformance with RFC1738 143 // unescapes a string in conformance with RFC1738
144 string wasURLUnescape(string i) { 144 string wasURLUnescape(string i) {
145 return llUnescapeURL( 145 return llUnescapeURL(
Line 160... Line 160...
160 ) 160 )
161 ); 161 );
162 } 162 }
Line 163... Line 163...
163   163  
164 /////////////////////////////////////////////////////////////////////////// 164 ///////////////////////////////////////////////////////////////////////////
165 // Copyright (C) 2017 Wizardry and Steamworks - License: CC BY 2.0 // 165 // Copyright (C) 2017 Wizardry and Steamworks - License: GNU GPLv3 //
166 /////////////////////////////////////////////////////////////////////////// 166 ///////////////////////////////////////////////////////////////////////////
167 list wasSetIntersect(list a, list b) { 167 list wasSetIntersect(list a, list b) {
168 if(llGetListLength(a) == 0) return []; 168 if(llGetListLength(a) == 0) return [];
169 string i = llList2String(a, 0); 169 string i = llList2String(a, 0);
Line 173... Line 173...
173 return i + wasSetIntersect(a, b); 173 return i + wasSetIntersect(a, b);
174 } 174 }
Line 175... Line 175...
175   175  
176 // configuration data 176 // configuration data
177 string configuration = ""; -  
178 // callback URL -  
179 string URL = ""; 177 string configuration = "";
180 // store message over state. 178 // store message over state.
181 string data = ""; 179 string data = "";
182 // banee 180 // banee
183 string firstname = ""; 181 string firstname = "";
Line 223... Line 221...
223 // We only care about notifications now. 221 // We only care about notifications now.
224 if(id != "notification") 222 if(id != "notification")
225 return; 223 return;
Line 226... Line 224...
226 224
227 // This script only processes group notifications. 225 // This script only processes group notifications.
-   226 if(wasKeyValueGet("type", message) != "group" ||
-   227 (wasKeyValueGet("type", message) == "group" &&
-   228 wasURLUnescape(wasKeyValueGet("group", message)) !=
228 if(wasKeyValueGet("type", message) != "group") 229 wasKeyValueGet("group", configuration)))
Line 229... Line 230...
229 return; 230 return;
230 231
231 // Get the sent message. 232 // Get the sent message.
Line 259... Line 260...
259 } 260 }
Line 260... Line 261...
260 261
261 // Dump the rest of the message. 262 // Dump the rest of the message.
Line 262... Line 263...
262 data = llDumpList2String(command, " "); 263 data = llDumpList2String(command, " ");
263 -  
264 // Get an URL. -  
265 state url; -  
266 } -  
267 on_rez(integer num) { -  
268 llResetScript(); -  
269 } -  
270 changed(integer change) { -  
271 if((change & CHANGED_INVENTORY) || -  
272 (change & CHANGED_REGION_START) || -  
273 (change & CHANGED_OWNER)) { -  
274 llResetScript(); -  
275 } -  
276 } -  
277 } -  
278   -  
279 state url { -  
280 state_entry() { -  
281 // DEBUG -  
282 llOwnerSay("[Softban] Requesting URL..."); -  
283 llRequestURL(); -  
284 } -  
285 http_request(key id, string method, string body) { -  
286 if(method != URL_REQUEST_GRANTED) return; -  
287 URL = body; -  
288 // DEBUG 264
289 llOwnerSay("[Softban] Got URL..."); 265 // Get roles of callers.
290 state get_caller_roles; 266 state get_caller_roles;
291 } 267 }
292 on_rez(integer num) { 268 on_rez(integer num) {
Line 325... Line 301...
325 configuration 301 configuration
326 ) 302 )
327 ), 303 ),
328 "firstname", firstname, 304 "firstname", firstname,
329 "lastname", lastname, 305 "lastname", lastname,
330 "callback", wasURLEscape(URL) 306 "callback", wasURLEscape(
-   307 wasKeyValueGet(
-   308 "URL",
-   309 configuration
-   310 )
-   311 )
331 ] 312 ]
332 ) 313 )
333 ); 314 );
334 llSetTimerEvent(60); 315 llSetTimerEvent(60);
335 } 316 }
336 http_request(key id, string method, string body) { 317 link_message(integer sender, integer num, string body, key id) {
337 llHTTPResponse(id, 200, "OK"); 318 // Only process callbacks for the database command.
338 if(wasKeyValueGet("command", body) != "getmemberroles" || 319 if(id != "callback" || wasKeyValueGet("command", body) != "getmemberroles")
-   320 return;
-   321
339 wasKeyValueGet("success", body) != "True") { 322 if(wasKeyValueGet("success", body) != "True") {
340 // DEBUG 323 // DEBUG
341 llOwnerSay("[Softban] Unable to get member roles: " + 324 llOwnerSay("[Softban] Unable to get member roles: " +
342 wasURLUnescape( 325 wasURLUnescape(
343 wasKeyValueGet("error", body) 326 wasKeyValueGet("error", body)
344 ) 327 )
345 ); 328 );
346 llReleaseURL(URL); -  
347 state listen_group; 329 state listen_group;
348 } 330 }
Line 349... Line 331...
349 331
350 // Dump the roles to a list. 332 // Dump the roles to a list.
Line 362... Line 344...
362 ) 344 )
363 ) 345 )
364 ) 346 )
365 ) == 0) { 347 ) == 0) {
366 data = "You ain't got the cojones!"; 348 data = "You ain't got the cojones!";
367 llReleaseURL(URL); -  
368 state tell; 349 state tell;
369 } 350 }
Line 370... Line 351...
370 351
Line 388... Line 369...
388 // GC 369 // GC
389 banee = []; 370 banee = [];
390 state get_banee_roles; 371 state get_banee_roles;
391 } 372 }
392 timer() { 373 timer() {
393 llReleaseURL(URL); -  
394 state listen_group; 374 state listen_group;
395 } 375 }
396 on_rez(integer num) { 376 on_rez(integer num) {
397 llResetScript(); 377 llResetScript();
398 } 378 }
Line 432... Line 412...
432 configuration 412 configuration
433 ) 413 )
434 ), 414 ),
435 "firstname", firstname, 415 "firstname", firstname,
436 "lastname", lastname, 416 "lastname", lastname,
437 "callback", wasURLEscape(URL) 417 "callback", wasURLEscape(
-   418 wasKeyValueGet(
-   419 "URL",
-   420 configuration
-   421 )
-   422 )
438 ] 423 ]
439 ) 424 )
440 ); 425 );
441 llSetTimerEvent(60); 426 llSetTimerEvent(60);
442 } 427 }
443 http_request(key id, string method, string body) { 428 link_message(integer sender, integer num, string body, key id) {
444 llHTTPResponse(id, 200, "OK"); 429 // Only process callbacks for the database command.
445 if(wasKeyValueGet("command", body) != "getmemberroles" || 430 if(id != "callback" || wasKeyValueGet("command", body) != "getmemberroles")
-   431 return;
-   432
446 wasKeyValueGet("success", body) != "True") { 433 if(wasKeyValueGet("success", body) != "True") {
447 if(wasKeyValueGet("status", body) == "19862") { 434 if(wasKeyValueGet("status", body) == "19862") {
448 // DEBUG 435 // DEBUG
449 llOwnerSay("[Softban] User not in group, but proceeding anyway..."); 436 llOwnerSay("[Softban] User not in group, but proceeding anyway...");
450 jump continue; 437 jump continue;
451 } 438 }
Line 453... Line 440...
453 llOwnerSay("[Softban] Unable to get member roles: " + 440 llOwnerSay("[Softban] Unable to get member roles: " +
454 wasURLUnescape( 441 wasURLUnescape(
455 wasKeyValueGet("error", body) 442 wasKeyValueGet("error", body)
456 ) 443 )
457 ); 444 );
458 llReleaseURL(URL); -  
459 state listen_group; 445 state listen_group;
460 } 446 }
Line 461... Line 447...
461 447
462 @continue; 448 @continue;
463 string result = wasURLUnescape( 449 string result = wasURLUnescape(
464 wasKeyValueGet("data", body) 450 wasKeyValueGet("data", body)
Line 465... Line 451...
465 ); 451 );
466 452
467 if(result != "" && llListFindList(wasCSVToList(result), (list)"Owners") != -1) { -  
468 data = "Ejectee is an owner. I'm not gunna open the pod bay doors."; 453 if(result != "" && llListFindList(wasCSVToList(result), (list)"Owners") != -1) {
469 llReleaseURL(URL); 454 data = "Ejectee is an owner. I'm not gunna open the pod bay doors.";
Line 470... Line 455...
470 state tell; 455 state tell;
471 } 456 }
472 457
473 state ban; -  
474 } 458 state ban;
475 timer() { 459 }
476 llReleaseURL(URL); 460 timer() {
477 state listen_group; 461 state listen_group;
478 } 462 }
Line 528... Line 512...
528 [ 512 [
529 bantime 513 bantime
530 ] 514 ]
531 ) 515 )
532 ), 516 ),
533 "callback", wasURLEscape(URL) 517 "callback", wasURLEscape(
-   518 wasKeyValueGet(
-   519 "URL",
-   520 configuration
-   521 )
-   522 )
534 ] 523 ]
535 ) 524 )
536 ); 525 );
537 llSetTimerEvent(60); 526 llSetTimerEvent(60);
538 } 527 }
539 http_request(key id, string method, string body) { 528 link_message(integer sender, integer num, string body, key id) {
540 llHTTPResponse(id, 200, "OK"); 529 // Only process callbacks for the database command.
-   530 if(id != "callback" || wasKeyValueGet("command", body) != "softban")
541 llReleaseURL(URL); 531 return;
-   532
542 if(wasKeyValueGet("command", body) != "softban" || 533 if(wasKeyValueGet("command", body) != "softban" ||
543 wasKeyValueGet("success", body) != "True") { 534 wasKeyValueGet("success", body) != "True") {
544 // DEBUG 535 // DEBUG
545 llOwnerSay("[Softban] Unable to soft ban member: " + 536 llOwnerSay("[Softban] Unable to soft ban member: " +
546 wasURLUnescape( 537 wasURLUnescape(
Line 553... Line 544...
553 data = "Hasta la vista, baby!"; 544 data = "Hasta la vista, baby!";
Line 554... Line 545...
554 545
555 state tell; 546 state tell;
556 } 547 }
557 timer() { -  
558 llReleaseURL(URL); 548 timer() {
559 state listen_group; 549 state listen_group;
560 } 550 }
561 on_rez(integer num) { 551 on_rez(integer num) {
562 llResetScript(); 552 llResetScript();