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

Subversion Repositories:
Rev:
Only display areas with differencesIgnore whitespace
Rev 41 Rev 42
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 unbans group members using fuzzy name matching. 5 // A module that unbans group members using fuzzy name matching.
6 // 6 //
7 /////////////////////////////////////////////////////////////////////////// 7 ///////////////////////////////////////////////////////////////////////////
8   8  
9 /////////////////////////////////////////////////////////////////////////// 9 ///////////////////////////////////////////////////////////////////////////
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 = llParseStringKeepNulls(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 }
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);
27 data = []; 27 data = [];
28 do { 28 do {
29 data += llList2String(k, 0) + "=" + llList2String(v, 0); 29 data += llList2String(k, 0) + "=" + llList2String(v, 0);
30 k = llDeleteSubList(k, 0, 0); 30 k = llDeleteSubList(k, 0, 0);
31 v = llDeleteSubList(v, 0, 0); 31 v = llDeleteSubList(v, 0, 0);
32 } while(llGetListLength(k) != 0); 32 } while(llGetListLength(k) != 0);
33 return llDumpList2String(data, "&"); 33 return llDumpList2String(data, "&");
34 } 34 }
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);
42 float y = llPow(-1, 1 + (integer) llFrand(2)) * llFrand(radius*2); 42 float y = llPow(-1, 1 + (integer) llFrand(2)) * llFrand(radius*2);
43 if(llPow(x,2) + llPow(y,2) <= llPow(radius,2)) 43 if(llPow(x,2) + llPow(y,2) <= llPow(radius,2))
44 return <x, y, 0>; 44 return <x, y, 0>;
45 return wasCirclePoint(radius); 45 return wasCirclePoint(radius);
46 } 46 }
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 = "";
54 do { 54 do {
55 string c = llGetSubString(i, 0, 0); 55 string c = llGetSubString(i, 0, 0);
56 i = llDeleteSubString(i, 0, 0); 56 i = llDeleteSubString(i, 0, 0);
57 if(c == "") jump continue; 57 if(c == "") jump continue;
58 if(c == " ") { 58 if(c == " ") {
59 o += "+"; 59 o += "+";
60 jump continue; 60 jump continue;
61 } 61 }
62 if(c == "\n") { 62 if(c == "\n") {
63 o += "%0D" + llEscapeURL(c); 63 o += "%0D" + llEscapeURL(c);
64 jump continue; 64 jump continue;
65 } 65 }
66 o += llEscapeURL(c); 66 o += llEscapeURL(c);
67 @continue; 67 @continue;
68 } while(i != ""); 68 } while(i != "");
69 return o; 69 return o;
70 } 70 }
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 = [];
78 string m = ""; 78 string m = "";
79 do { 79 do {
80 string a = llGetSubString(csv, 0, 0); 80 string a = llGetSubString(csv, 0, 0);
81 csv = llDeleteSubString(csv, 0, 0); 81 csv = llDeleteSubString(csv, 0, 0);
82 if(a == ",") { 82 if(a == ",") {
83 if(llList2String(s, -1) != "\"") { 83 if(llList2String(s, -1) != "\"") {
84 l += m; 84 l += m;
85 m = ""; 85 m = "";
86 jump continue; 86 jump continue;
87 } 87 }
88 m += a; 88 m += a;
89 jump continue; 89 jump continue;
90 } 90 }
91 if(a == "\"" && llGetSubString(csv, 0, 0) == a) { 91 if(a == "\"" && llGetSubString(csv, 0, 0) == a) {
92 m += a; 92 m += a;
93 csv = llDeleteSubString(csv, 0, 0); 93 csv = llDeleteSubString(csv, 0, 0);
94 jump continue; 94 jump continue;
95 } 95 }
96 if(a == "\"") { 96 if(a == "\"") {
97 if(llList2String(s, -1) != a) { 97 if(llList2String(s, -1) != a) {
98 s += a; 98 s += a;
99 jump continue; 99 jump continue;
100 } 100 }
101 s = llDeleteSubList(s, -1, -1); 101 s = llDeleteSubList(s, -1, -1);
102 jump continue; 102 jump continue;
103 } 103 }
104 m += a; 104 m += a;
105 @continue; 105 @continue;
106 } while(csv != ""); 106 } while(csv != "");
107 // postcondition: length(s) = 0 107 // postcondition: length(s) = 0
108 return l + m; 108 return l + m;
109 } 109 }
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 {
117 string a = llDumpList2String( 117 string a = llDumpList2String(
118 llParseStringKeepNulls( 118 llParseStringKeepNulls(
119 llList2String( 119 llList2String(
120 l, 120 l,
121 0 121 0
122 ), 122 ),
123 ["\""], 123 ["\""],
124 [] 124 []
125 ), 125 ),
126 "\"\"" 126 "\"\""
127 ); 127 );
128 if(llParseStringKeepNulls( 128 if(llParseStringKeepNulls(
129 a, 129 a,
130 [" ", ",", "\n", "\""], [] 130 [" ", ",", "\n", "\""], []
131 ) != 131 ) !=
132 (list) a 132 (list) a
133 ) a = "\"" + a + "\""; 133 ) a = "\"" + a + "\"";
134 v += a; 134 v += a;
135 l = llDeleteSubList(l, 0, 0); 135 l = llDeleteSubList(l, 0, 0);
136 } while(l != []); 136 } while(l != []);
137 return llDumpList2String(v, ","); 137 return llDumpList2String(v, ",");
138 } 138 }
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(
146 llDumpList2String( 146 llDumpList2String(
147 llParseString2List( 147 llParseString2List(
148 llDumpList2String( 148 llDumpList2String(
149 llParseString2List( 149 llParseString2List(
150 i, 150 i,
151 ["+"], 151 ["+"],
152 [] 152 []
153 ), 153 ),
154 " " 154 " "
155 ), 155 ),
156 ["%0D%0A"], 156 ["%0D%0A"],
157 [] 157 []
158 ), 158 ),
159 "\n" 159 "\n"
160 ) 160 )
161 ); 161 );
162 } 162 }
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);
170 a = llDeleteSubList(a, 0, 0); 170 a = llDeleteSubList(a, 0, 0);
171 if(llListFindList(b, (list)i) == -1) 171 if(llListFindList(b, (list)i) == -1)
172 return wasSetIntersect(a, b); 172 return wasSetIntersect(a, b);
173 return i + wasSetIntersect(a, b); 173 return i + wasSetIntersect(a, b);
174 } 174 }
175   175  
176 // configuration data 176 // configuration data
177 string configuration = ""; 177 string configuration = "";
178 // callback URL -  
179 string URL = ""; -  
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 = "";
184 string lastname = ""; 182 string lastname = "";
185 string soft = "True"; 183 string soft = "True";
186   184  
187 default { 185 default {
188 state_entry() { 186 state_entry() {
189 llOwnerSay("[Unban] Starting..."); 187 llOwnerSay("[Unban] Starting...");
190 llSetTimerEvent(10); 188 llSetTimerEvent(10);
191 } 189 }
192 link_message(integer sender, integer num, string message, key id) { 190 link_message(integer sender, integer num, string message, key id) {
193 if(id != "configuration") return; 191 if(id != "configuration") return;
194 llOwnerSay("[Unban] Got configuration..."); 192 llOwnerSay("[Unban] Got configuration...");
195 configuration = message; 193 configuration = message;
196 state listen_group; 194 state listen_group;
197 } 195 }
198 timer() { 196 timer() {
199 llOwnerSay("[Unban] Requesting configuration..."); 197 llOwnerSay("[Unban] Requesting configuration...");
200 llMessageLinked(LINK_THIS, 0, "configuration", NULL_KEY); 198 llMessageLinked(LINK_THIS, 0, "configuration", NULL_KEY);
201 } 199 }
202 on_rez(integer num) { 200 on_rez(integer num) {
203 llResetScript(); 201 llResetScript();
204 } 202 }
205 changed(integer change) { 203 changed(integer change) {
206 if((change & CHANGED_INVENTORY) || 204 if((change & CHANGED_INVENTORY) ||
207 (change & CHANGED_REGION_START) || 205 (change & CHANGED_REGION_START) ||
208 (change & CHANGED_OWNER)) { 206 (change & CHANGED_OWNER)) {
209 llResetScript(); 207 llResetScript();
210 } 208 }
211 } 209 }
212 state_exit() { 210 state_exit() {
213 llSetTimerEvent(0); 211 llSetTimerEvent(0);
214 } 212 }
215 } 213 }
216   214  
217 state listen_group { 215 state listen_group {
218 state_entry() { 216 state_entry() {
219 // DEBUG 217 // DEBUG
220 llOwnerSay("[Unban] Waiting for group messages..."); 218 llOwnerSay("[Unban] Waiting for group messages...");
221 } 219 }
222 link_message(integer sender, integer num, string message, key id) { 220 link_message(integer sender, integer num, string message, key id) {
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;
226 224  
227 // This script only processes group notifications. 225 // This script only processes group notifications.
228 if(wasKeyValueGet("type", message) != "group") 226 if(wasKeyValueGet("type", message) != "group" ||
-   227 (wasKeyValueGet("type", message) == "group" &&
-   228 wasURLUnescape(wasKeyValueGet("group", message)) !=
-   229 wasKeyValueGet("group", configuration)))
229 return; 230 return;
230 231  
231 // Get the sent message. 232 // Get the sent message.
232 data = wasURLUnescape( 233 data = wasURLUnescape(
233 wasKeyValueGet( 234 wasKeyValueGet(
234 "message", 235 "message",
235 message 236 message
236 ) 237 )
237 ); 238 );
238 239  
239 // Check if this is an eggdrop command. 240 // Check if this is an eggdrop command.
240 if(llGetSubString(data, 0, 0) != 241 if(llGetSubString(data, 0, 0) !=
241 wasKeyValueGet("command", configuration)) 242 wasKeyValueGet("command", configuration))
242 return; 243 return;
243 244  
244 // Check if the command matches the current module. 245 // Check if the command matches the current module.
245 list command = llParseString2List(data, [" "], []); 246 list command = llParseString2List(data, [" "], []);
246 if(llList2String(command, 0) != 247 if(llList2String(command, 0) !=
247 wasKeyValueGet("command", configuration) + "unban") 248 wasKeyValueGet("command", configuration) + "unban")
248 return; 249 return;
249 250  
250 // Remove command. 251 // Remove command.
251 command = llDeleteSubList(command, 0, 0); 252 command = llDeleteSubList(command, 0, 0);
252 253  
253 firstname = wasKeyValueGet("firstname", message); 254 firstname = wasKeyValueGet("firstname", message);
254 lastname = wasKeyValueGet("lastname", message); 255 lastname = wasKeyValueGet("lastname", message);
255 256  
256 if(firstname == "" || lastname == "") { 257 if(firstname == "" || lastname == "") {
257 data = "And who would yarr be?"; 258 data = "And who would yarr be?";
258 state tell; 259 state tell;
259 } 260 }
260 261  
261 // Dump the rest of the message. 262 // Dump the rest of the message.
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("[Unban] Requesting URL..."); 264  
283 llRequestURL(); -  
284 } -  
285 http_request(key id, string method, string body) { -  
286 if(method != URL_REQUEST_GRANTED) return; -  
287 URL = body; -  
288 // DEBUG -  
289 llOwnerSay("[Unban] Got URL..."); 265 // Get roles of caller.
290 state get_caller_roles; 266 state get_caller_roles;
291 } 267 }
292 on_rez(integer num) { 268 on_rez(integer num) {
293 llResetScript(); 269 llResetScript();
294 } 270 }
295 changed(integer change) { 271 changed(integer change) {
296 if((change & CHANGED_INVENTORY) || 272 if((change & CHANGED_INVENTORY) ||
297 (change & CHANGED_REGION_START) || 273 (change & CHANGED_REGION_START) ||
298 (change & CHANGED_OWNER)) { 274 (change & CHANGED_OWNER)) {
299 llResetScript(); 275 llResetScript();
300 } 276 }
301 } 277 }
302 } 278 }
303   279  
304 state get_caller_roles { 280 state get_caller_roles {
305 state_entry() { 281 state_entry() {
306 // DEBUG 282 // DEBUG
307 llOwnerSay("[Unban] Searching for caller..."); 283 llOwnerSay("[Unban] Searching for caller...");
308 llInstantMessage( 284 llInstantMessage(
309 wasKeyValueGet( 285 wasKeyValueGet(
310 "corrade", 286 "corrade",
311 configuration 287 configuration
312 ), 288 ),
313 wasKeyValueEncode( 289 wasKeyValueEncode(
314 [ 290 [
315 "command", "getmemberroles", 291 "command", "getmemberroles",
316 "group", wasURLEscape( 292 "group", wasURLEscape(
317 wasKeyValueGet( 293 wasKeyValueGet(
318 "group", 294 "group",
319 configuration 295 configuration
320 ) 296 )
321 ), 297 ),
322 "password", wasURLEscape( 298 "password", wasURLEscape(
323 wasKeyValueGet( 299 wasKeyValueGet(
324 "password", 300 "password",
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("[Unban] Unable to get member roles: " + 324 llOwnerSay("[Unban] 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 }
349 331  
350 // Dump the roles to a list. 332 // Dump the roles to a list.
351 list roles = wasCSVToList( 333 list roles = wasCSVToList(
352 wasURLUnescape( 334 wasURLUnescape(
353 wasKeyValueGet("data", body) 335 wasKeyValueGet("data", body)
354 ) 336 )
355 ); 337 );
356 338  
357 if(llGetListLength( 339 if(llGetListLength(
358 wasSetIntersect(roles, 340 wasSetIntersect(roles,
359 wasCSVToList( 341 wasCSVToList(
360 wasKeyValueGet( 342 wasKeyValueGet(
361 "admin roles", configuration 343 "admin roles", configuration
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 }
370 351  
371 list banee = llParseString2List(data, [" "], []); 352 list banee = llParseString2List(data, [" "], []);
372 353  
373 firstname = llList2String(banee, 0); 354 firstname = llList2String(banee, 0);
374 banee = llDeleteSubList(banee, 0, 0); 355 banee = llDeleteSubList(banee, 0, 0);
375 lastname = llList2String(banee, 0); 356 lastname = llList2String(banee, 0);
376 banee = llDeleteSubList(banee, 0, 0); 357 banee = llDeleteSubList(banee, 0, 0);
377 358  
378 if(firstname == "" || lastname == "") { 359 if(firstname == "" || lastname == "") {
379 data = "Full name required."; 360 data = "Full name required.";
380 state tell; 361 state tell;
381 } 362 }
382 363  
383 if(llGetListLength(banee) != 0 && 364 if(llGetListLength(banee) != 0 &&
384 llToLower(llList2String(banee, 0)) == "nosoft") { 365 llToLower(llList2String(banee, 0)) == "nosoft") {
385 soft = "False"; 366 soft = "False";
386 banee = llDeleteSubList(banee, 0, 0); 367 banee = llDeleteSubList(banee, 0, 0);
387 } 368 }
388 369  
389 // GC 370 // GC
390 banee = []; 371 banee = [];
391 state get_banee_roles; 372 state get_banee_roles;
392 } 373 }
393 timer() { 374 timer() {
394 llReleaseURL(URL); -  
395 state listen_group; 375 state listen_group;
396 } 376 }
397 on_rez(integer num) { 377 on_rez(integer num) {
398 llResetScript(); 378 llResetScript();
399 } 379 }
400 changed(integer change) { 380 changed(integer change) {
401 if((change & CHANGED_INVENTORY) || 381 if((change & CHANGED_INVENTORY) ||
402 (change & CHANGED_REGION_START) || 382 (change & CHANGED_REGION_START) ||
403 (change & CHANGED_OWNER)) { 383 (change & CHANGED_OWNER)) {
404 llResetScript(); 384 llResetScript();
405 } 385 }
406 } 386 }
407 state_exit() { 387 state_exit() {
408 llSetTimerEvent(0); 388 llSetTimerEvent(0);
409 } 389 }
410 } 390 }
411   391  
412 state get_banee_roles { 392 state get_banee_roles {
413 state_entry() { 393 state_entry() {
414 // DEBUG 394 // DEBUG
415 llOwnerSay("[Unban] Searching for banee..."); 395 llOwnerSay("[Unban] Searching for banee...");
416 llInstantMessage( 396 llInstantMessage(
417 wasKeyValueGet( 397 wasKeyValueGet(
418 "corrade", 398 "corrade",
419 configuration 399 configuration
420 ), 400 ),
421 wasKeyValueEncode( 401 wasKeyValueEncode(
422 [ 402 [
423 "command", "getmemberroles", 403 "command", "getmemberroles",
424 "group", wasURLEscape( 404 "group", wasURLEscape(
425 wasKeyValueGet( 405 wasKeyValueGet(
426 "group", 406 "group",
427 configuration 407 configuration
428 ) 408 )
429 ), 409 ),
430 "password", wasURLEscape( 410 "password", wasURLEscape(
431 wasKeyValueGet( 411 wasKeyValueGet(
432 "password", 412 "password",
433 configuration 413 configuration
434 ) 414 )
435 ), 415 ),
436 "firstname", firstname, 416 "firstname", firstname,
437 "lastname", lastname, 417 "lastname", lastname,
438 "callback", wasURLEscape(URL) 418 "callback", wasURLEscape(
-   419 wasKeyValueGet(
-   420 "URL",
-   421 configuration
-   422 )
-   423 )
439 ] 424 ]
440 ) 425 )
441 ); 426 );
442 llSetTimerEvent(60); 427 llSetTimerEvent(60);
443 } 428 }
444 http_request(key id, string method, string body) { 429 link_message(integer sender, integer num, string body, key id) {
445 llHTTPResponse(id, 200, "OK"); 430 // Only process callbacks for the database command.
446 if(wasKeyValueGet("command", body) != "getmemberroles" || 431 if(id != "callback" || wasKeyValueGet("command", body) != "getmemberroles")
-   432 return;
-   433  
447 wasKeyValueGet("success", body) != "True") { 434 if(wasKeyValueGet("success", body) != "True") {
448 if(wasKeyValueGet("status", body) == "19862") { 435 if(wasKeyValueGet("status", body) == "19862") {
449 // DEBUG 436 // DEBUG
450 llOwnerSay("[Unban] User not in group, but proceeding anyway..."); 437 llOwnerSay("[Unban] User not in group, but proceeding anyway...");
451 jump continue; 438 jump continue;
452 } 439 }
453 // DEBUG 440 // DEBUG
454 llOwnerSay("[Unban] Unable to get member roles: " + 441 llOwnerSay("[Unban] Unable to get member roles: " +
455 wasURLUnescape( 442 wasURLUnescape(
456 wasKeyValueGet("error", body) 443 wasKeyValueGet("error", body)
457 ) 444 )
458 ); 445 );
459 llReleaseURL(URL); -  
-   446  
460 state listen_group; 447 state listen_group;
461 } 448 }
462 449  
463 string result = wasURLUnescape( 450 string result = wasURLUnescape(
464 wasKeyValueGet("data", body) 451 wasKeyValueGet("data", body)
465 ); 452 );
466 453  
467 if(result != "" && llListFindList(wasCSVToList(result), (list)"Owners") != -1) { 454 if(result != "" && llListFindList(wasCSVToList(result), (list)"Owners") != -1) {
468 data = "Ejectee is an owner. I'm not gonna open the pod bay doors."; 455 data = "Ejectee is an owner. I'm not gonna open the pod bay doors.";
469 llReleaseURL(URL); -  
470 state tell; 456 state tell;
471 } 457 }
472 458  
473 @continue; 459 @continue;
474   460  
475 state unban; 461 state unban;
476 } 462 }
477 timer() { 463 timer() {
478 llReleaseURL(URL); -  
479 state listen_group; 464 state listen_group;
480 } 465 }
481 on_rez(integer num) { 466 on_rez(integer num) {
482 llResetScript(); 467 llResetScript();
483 } 468 }
484 changed(integer change) { 469 changed(integer change) {
485 if((change & CHANGED_INVENTORY) || 470 if((change & CHANGED_INVENTORY) ||
486 (change & CHANGED_REGION_START) || 471 (change & CHANGED_REGION_START) ||
487 (change & CHANGED_OWNER)) { 472 (change & CHANGED_OWNER)) {
488 llResetScript(); 473 llResetScript();
489 } 474 }
490 } 475 }
491 state_exit() { 476 state_exit() {
492 llSetTimerEvent(0); 477 llSetTimerEvent(0);
493 } 478 }
494 } 479 }
495   480  
496 state unban { 481 state unban {
497 state_entry() { 482 state_entry() {
498 // DEBUG 483 // DEBUG
499 llOwnerSay("[Unban] Unbanning..."); 484 llOwnerSay("[Unban] Unbanning...");
500 llInstantMessage( 485 llInstantMessage(
501 wasKeyValueGet( 486 wasKeyValueGet(
502 "corrade", 487 "corrade",
503 configuration 488 configuration
504 ), 489 ),
505 wasKeyValueEncode( 490 wasKeyValueEncode(
506 [ 491 [
507 "command", "ban", 492 "command", "ban",
508 "group", wasURLEscape( 493 "group", wasURLEscape(
509 wasKeyValueGet( 494 wasKeyValueGet(
510 "group", 495 "group",
511 configuration 496 configuration
512 ) 497 )
513 ), 498 ),
514 "password", wasURLEscape( 499 "password", wasURLEscape(
515 wasKeyValueGet( 500 wasKeyValueGet(
516 "password", 501 "password",
517 configuration 502 configuration
518 ) 503 )
519 ), 504 ),
520 "soft", soft, 505 "soft", soft,
521 "action", "unban", 506 "action", "unban",
522 "avatars", wasURLEscape( 507 "avatars", wasURLEscape(
523 wasListToCSV( 508 wasListToCSV(
524 [ 509 [
525 firstname + " " + lastname 510 firstname + " " + lastname
526 ] 511 ]
527 ) 512 )
528 ), 513 ),
529 "callback", wasURLEscape(URL) 514 "callback", wasURLEscape(
-   515 wasKeyValueGet(
-   516 "URL",
-   517 configuration
-   518 )
-   519 )
530 ] 520 ]
531 ) 521 )
532 ); 522 );
533 llSetTimerEvent(60); 523 llSetTimerEvent(60);
534 } 524 }
535 http_request(key id, string method, string body) { 525 link_message(integer sender, integer num, string body, key id) {
536 llHTTPResponse(id, 200, "OK"); 526 // Only process callbacks for the database command.
537 llReleaseURL(URL); -  
538 if(wasKeyValueGet("command", body) != "ban" || 527 if(id != "callback" || wasKeyValueGet("command", body) != "ban")
-   528 return;
-   529  
539 wasKeyValueGet("success", body) != "True") { 530 if(wasKeyValueGet("success", body) != "True") {
540 // DEBUG 531 // DEBUG
541 llOwnerSay("[Unban] Unable to ban member: " + 532 llOwnerSay("[Unban] Unable to ban member: " +
542 wasURLUnescape( 533 wasURLUnescape(
543 wasKeyValueGet("error", body) 534 wasKeyValueGet("error", body)
544 ) 535 )
545 ); 536 );
546 state listen_group; 537 state listen_group;
547 } 538 }
548 539  
549 data = "They'll be bak!"; 540 data = "They'll be bak!";
550 541  
551 state tell; 542 state tell;
552 } 543 }
553 timer() { 544 timer() {
554 llReleaseURL(URL); -  
555 state listen_group; 545 state listen_group;
556 } 546 }
557 on_rez(integer num) { 547 on_rez(integer num) {
558 llResetScript(); 548 llResetScript();
559 } 549 }
560 changed(integer change) { 550 changed(integer change) {
561 if((change & CHANGED_INVENTORY) || 551 if((change & CHANGED_INVENTORY) ||
562 (change & CHANGED_REGION_START) || 552 (change & CHANGED_REGION_START) ||
563 (change & CHANGED_OWNER)) { 553 (change & CHANGED_OWNER)) {
564 llResetScript(); 554 llResetScript();
565 } 555 }
566 } 556 }
567 state_exit() { 557 state_exit() {
568 llSetTimerEvent(0); 558 llSetTimerEvent(0);
569 } 559 }
570 } 560 }
571   561  
572 state tell { 562 state tell {
573 state_entry() { 563 state_entry() {
574 // DEBUG 564 // DEBUG
575 llOwnerSay("[Unban] Sending to group."); 565 llOwnerSay("[Unban] Sending to group.");
576 llInstantMessage( 566 llInstantMessage(
577 wasKeyValueGet( 567 wasKeyValueGet(
578 "corrade", 568 "corrade",
579 configuration 569 configuration
580 ), 570 ),
581 wasKeyValueEncode( 571 wasKeyValueEncode(
582 [ 572 [
583 "command", "tell", 573 "command", "tell",
584 "group", wasURLEscape( 574 "group", wasURLEscape(
585 wasKeyValueGet( 575 wasKeyValueGet(
586 "group", 576 "group",
587 configuration 577 configuration
588 ) 578 )
589 ), 579 ),
590 "password", wasURLEscape( 580 "password", wasURLEscape(
591 wasKeyValueGet( 581 wasKeyValueGet(
592 "password", 582 "password",
593 configuration 583 configuration
594 ) 584 )
595 ), 585 ),
596 "entity", "group", 586 "entity", "group",
597 "message", wasURLEscape(data) 587 "message", wasURLEscape(data)
598 ] 588 ]
599 ) 589 )
600 ); 590 );
601 591  
602 // reset variables. 592 // reset variables.
603 soft = "True"; 593 soft = "True";
604 594  
605 state listen_group; 595 state listen_group;
606 } 596 }
607 } 597 }
608   598