1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
|
/**
* @file llpaneldirfind.cpp
* @brief The "All" panel in the Search directory.
*
* $LicenseInfo:firstyear=2001&license=viewergpl$
*
* Copyright (c) 2001-2008, Linden Research, Inc.
*
* Second Life Viewer Source Code
* The source code in this file ("Source Code") is provided by Linden Lab
* to you under the terms of the GNU General Public License, version 2.0
* ("GPL"), unless you have obtained a separate licensing agreement
* ("Other License"), formally executed by you and Linden Lab. Terms of
* the GPL can be found in doc/GPL-license.txt in this distribution, or
* online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
*
* There are special exceptions to the terms and conditions of the GPL as
* it is applied to this Source Code. View the full text of the exception
* in the file doc/FLOSS-exception.txt in this software distribution, or
* online at http://secondlifegrid.net/programs/open_source/licensing/flossexception
*
* By copying, modifying or distributing this software, you acknowledge
* that you have read and understood your obligations described above,
* and agree to abide by those obligations.
*
* ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
* WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
* COMPLETENESS OR PERFORMANCE.
* $/LicenseInfo$
*/
#include "llviewerprecompiledheaders.h"
#include "llpaneldirfind.h"
// linden library includes
#include "llclassifiedflags.h"
#include "llfontgl.h"
#include "llparcel.h"
#include "llqueryflags.h"
#include "message.h"
// viewer project includes
#include "llagent.h"
#include "llbutton.h"
#include "llcheckboxctrl.h"
#include "lllineeditor.h"
#include "llcombobox.h"
#include "llviewercontrol.h"
#include "llmenucommands.h"
#include "llmenugl.h"
#include "lltextbox.h"
#include "lluiconstants.h"
#include "llviewerimagelist.h"
#include "llviewermessage.h"
#include "llfloateravatarinfo.h"
#include "lldir.h"
#include "llviewercontrol.h"
#include "llviewerregion.h" // for region name for search urls
#include "lluictrlfactory.h"
#include "llfloaterdirectory.h"
#include "llpaneldirbrowser.h"
#include <boost/tokenizer.hpp>
//---------------------------------------------------------------------------
// LLPanelDirFindAll - Google search appliance based search
//---------------------------------------------------------------------------
class LLPanelDirFindAll
: public LLPanelDirBrowser,
public LLWebBrowserCtrlObserver
{
public:
LLPanelDirFindAll(const std::string& name, LLFloaterDirectory* floater);
/*virtual*/ ~LLPanelDirFindAll();
/*virtual*/ BOOL postBuild();
/*virtual*/ void draw();
void search(const std::string& search_text);
void focus();
void navigateToDefaultPage();
private:
static void onClickBack( void* data );
static void onClickForward( void* data );
static void onClickHome( void* data );
static void onClickSearch( void* data );
static void onCommitSearch(LLUICtrl*, void* data);
static std::string getSearchURLSuffix(bool mature);
/*virtual*/ void onNavigateBegin( const EventType& eventIn );
/*virtual*/ void onNavigateComplete( const EventType& eventIn );
// Used to update progress indicator
/*virtual*/ void onLocationChange( const EventType& eventIn );
// Debugging info to console
private:
LLWebBrowserCtrl* mWebBrowser;
};
LLPanelDirFindAll::LLPanelDirFindAll(const std::string& name, LLFloaterDirectory* floater)
: LLPanelDirBrowser(name, floater)
,mWebBrowser(NULL)
{
mMinSearchChars = 3;
}
BOOL LLPanelDirFindAll::postBuild()
{
LLPanelDirBrowser::postBuild();
childSetAction("back_btn", onClickBack, this);
childSetAction("home_btn", onClickHome, this);
childSetAction("forward_btn", onClickForward, this);
childSetCommitCallback("search_editor", onCommitSearch, this);
childSetAction("search_btn", onClickSearch, this);
if (gAgent.isTeen())
{
childSetVisible("mature_check", false);
childSetValue("mature_check", false);
}
mWebBrowser = getChild<LLWebBrowserCtrl>("find_browser");
if (mWebBrowser)
{
// new pages appear in same window as the results page now
mWebBrowser->setOpenInInternalBrowser( false );
mWebBrowser->setOpenInExternalBrowser( false );
// need to handle secondlife:///app/ URLs for direct teleports
mWebBrowser->setOpenAppSLURLs( true );
// redirect 404 pages from S3 somewhere else
mWebBrowser->set404RedirectUrl( getString("redirect_404_url") );
// Track updates for progress display.
mWebBrowser->addObserver(this);
navigateToDefaultPage();
}
return TRUE;
}
LLPanelDirFindAll::~LLPanelDirFindAll()
{
if (mWebBrowser)
mWebBrowser->remObserver(this);
}
// virtual
void LLPanelDirFindAll::draw()
{
// enable/disable buttons depending on state
if ( mWebBrowser )
{
bool enable_back = mWebBrowser->canNavigateBack();
childSetEnabled( "back_btn", enable_back );
bool enable_forward = mWebBrowser->canNavigateForward();
childSetEnabled( "forward_btn", enable_forward );
}
LLPanelDirBrowser::draw();
}
void LLPanelDirFindAll::search(const std::string& search_text)
{
if (!search_text.empty())
{
// Replace spaces with "+" for use by Google search appliance
// Yes, this actually works for double-spaces
// " foo bar" becomes "+foo++bar" and works fine. JC
std::string search_text_with_plus = search_text;
std::string::iterator it = search_text_with_plus.begin();
for ( ; it != search_text_with_plus.end(); ++it )
{
if ( std::isspace( *it ) )
{
*it = '+';
}
}
// Our own special set of allowed chars (RFC1738 http://www.ietf.org/rfc/rfc1738.txt)
// Note that "+" is one of them, so we can do "+" addition first.
const char* allowed =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
"0123456789"
"-._~$+!*'()";
std::string query = LLURI::escape(search_text_with_plus, allowed);
std::string url = gSavedSettings.getString("SearchURLQuery");
std::string substring = "[QUERY]";
url.replace(url.find(substring), substring.length(), query);
// replace the collection name with the one selected from the combo box
std::string selected_collection = childGetValue( "Category" ).asString();
substring = "[COLLECTION]";
url.replace(url.find(substring), substring.length(), selected_collection);
// Add common parameters (mature, teen, location)
bool mature = childGetValue( "mature_check" ).asBoolean();
url += getSearchURLSuffix(mature);
llinfos << "url " << url << llendl;
if (mWebBrowser)
{
mWebBrowser->navigateTo(url);
}
}
else
{
// empty search text
navigateToDefaultPage();
}
childSetText("search_editor", search_text);
}
void LLPanelDirFindAll::focus()
{
childSetFocus("search_editor");
}
void LLPanelDirFindAll::navigateToDefaultPage()
{
std::string start_url = gSavedSettings.getString("SearchURLDefault");
bool mature = childGetValue( "mature_check" ).asBoolean();
start_url += getSearchURLSuffix( mature );
llinfos << "default url: " << start_url << llendl;
if (mWebBrowser)
{
mWebBrowser->navigateTo( start_url );
}
}
// static
std::string LLPanelDirFindAll::getSearchURLSuffix(bool mature_in)
{
bool mature = mature_in;
// Teens never get mature results. Explicitly override because
// Lindens/testers have multiple accounts and shared settings sometimes
// result in teen=Y and mature=Y simultaneously. JC
if (gAgent.isTeen())
{
mature = false;
}
std::string url = gSavedSettings.getString("SearchURLSuffix2");
// if the mature checkbox is unchecked, modify query to remove
// terms with given phrase from the result set
std::string substring = "[MATURE]";
const char* mature_flag = (mature ? "Y" : "N");
url.replace(url.find(substring), substring.length(), mature_flag);
substring = "[TEEN]";
const char* teen_flag = (gAgent.isTeen() ? "Y" : "N");
url.replace(url.find(substring), substring.length(), teen_flag);
// Include region and x/y position, not for the GSA, but
// just to get logs on the web server for search_proxy.php
// showing where people were standing when they searched.
std::string region_name;
LLViewerRegion* region = gAgent.getRegion();
if (region)
{
region_name = region->getName();
}
// take care of spaces in names
region_name = LLURI::escape(region_name);
substring = "[REGION]";
url.replace(url.find(substring), substring.length(), region_name);
LLVector3 pos_region = gAgent.getPositionAgent();
std::string x = llformat("%.0f", pos_region.mV[VX]);
substring = "[X]";
url.replace(url.find(substring), substring.length(), x);
std::string y = llformat("%.0f", pos_region.mV[VY]);
substring = "[Y]";
url.replace(url.find(substring), substring.length(), y);
std::string z = llformat("%.0f", pos_region.mV[VZ]);
substring = "[Z]";
url.replace(url.find(substring), substring.length(), z);
LLUUID session_id = gAgent.getSessionID();
std::string session_string = session_id.getString();
substring = "[SESSION]";
url.replace(url.find(substring), substring.length(), session_string);
// set the currently selected lanaguage by asking the pref setting
std::string language_string = LLUI::sConfigGroup->getString( "Language" );
if ( language_string == "default" )
{
// if "default system language" setting used, ask again
// (we can't do this directly since it can vary if you install
// under one language and select a different one using prefs)
language_string = gSavedSettings.getString( "SystemLanguage" );
}
std::string language_tag = "[LANG]";
url.replace( url.find( language_tag ), language_tag.length(), language_string );
return url;
}
// static
void LLPanelDirFindAll::onClickBack( void* data )
{
LLPanelDirFindAll* self = ( LLPanelDirFindAll* )data;
if ( self->mWebBrowser )
{
self->mWebBrowser->navigateBack();
}
}
// static
void LLPanelDirFindAll::onClickForward( void* data )
{
LLPanelDirFindAll* self = ( LLPanelDirFindAll* )data;
if ( self->mWebBrowser )
{
self->mWebBrowser->navigateForward();
}
}
// static
void LLPanelDirFindAll::onClickHome( void* data )
{
LLPanelDirFindAll* self = ( LLPanelDirFindAll* )data;
if ( self->mWebBrowser )
{
self->mWebBrowser->navigateHome();
}
}
// static
void LLPanelDirFindAll::onCommitSearch(LLUICtrl*, void* data)
{
onClickSearch(data);
}
// static
void LLPanelDirFindAll::onClickSearch(void* data)
{
LLPanelDirFindAll* self = ( LLPanelDirFindAll* )data;
LLString search_text = self->childGetText("search_editor");
self->search(search_text);
LLFloaterDirectory::sNewSearchCount++;
}
void LLPanelDirFindAll::onNavigateBegin( const EventType& eventIn )
{
childSetText("status_text", getString("loading_text"));
}
void LLPanelDirFindAll::onNavigateComplete( const EventType& eventIn )
{
childSetText("status_text", getString("done_text"));
}
void LLPanelDirFindAll::onLocationChange( const EventType& eventIn )
{
llinfos << eventIn.getStringValue() << llendl;
}
//---------------------------------------------------------------------------
// LLPanelDirFindAllInterface
//---------------------------------------------------------------------------
// static
LLPanelDirFindAll* LLPanelDirFindAllInterface::create(LLFloaterDirectory* floater)
{
return new LLPanelDirFindAll("find_all_panel", floater);
}
// static
void LLPanelDirFindAllInterface::search(LLPanelDirFindAll* panel,
const std::string& search_text)
{
panel->search(search_text);
}
// static
void LLPanelDirFindAllInterface::focus(LLPanelDirFindAll* panel)
{
panel->focus();
}
//---------------------------------------------------------------------------
// LLPanelDirFindAllOld - deprecated if new Google search works out. JC
//---------------------------------------------------------------------------
LLPanelDirFindAllOld::LLPanelDirFindAllOld(const std::string& name, LLFloaterDirectory* floater)
: LLPanelDirBrowser(name, floater)
{
mMinSearchChars = 3;
}
BOOL LLPanelDirFindAllOld::postBuild()
{
LLPanelDirBrowser::postBuild();
childSetKeystrokeCallback("name", &LLPanelDirBrowser::onKeystrokeName, this);
childSetAction("Search", onClickSearch, this);
childDisable("Search");
setDefaultBtn( "Search" );
return TRUE;
}
LLPanelDirFindAllOld::~LLPanelDirFindAllOld()
{
// Children all cleaned up by default view destructor.
}
// virtual
void LLPanelDirFindAllOld::draw()
{
// You only have a choice if you are mature
childSetVisible("incmature", !gAgent.isTeen());
childSetValue("incmature", gSavedSettings.getBOOL("ShowMatureFindAll"));
LLPanelDirBrowser::draw();
}
// static
void LLPanelDirFindAllOld::onCommitScope(LLUICtrl* ctrl, void* data)
{
LLPanelDirFindAllOld* self = (LLPanelDirFindAllOld*)data;
self->setFocus(TRUE);
}
// static
void LLPanelDirFindAllOld::onClickSearch(void *userdata)
{
LLPanelDirFindAllOld *self = (LLPanelDirFindAllOld *)userdata;
if (self->childGetValue("name").asString().length() < self->mMinSearchChars)
{
return;
};
self->setupNewSearch();
// Figure out scope
U32 scope = 0x0;
scope |= DFQ_PEOPLE; // people (not just online = 0x01 | 0x02)
// places handled below
scope |= DFQ_EVENTS; // events
scope |= DFQ_GROUPS; // groups
BOOL filter_mature = (!gSavedSettings.getBOOL("ShowMatureFindAll") ||
gAgent.isTeen() ||
!self->childGetValue("incmature").asBoolean() );
if ( filter_mature )
{
scope |= DFQ_PG_SIMS_ONLY;
scope |= DFQ_PG_EVENTS_ONLY;
scope |= DFQ_FILTER_MATURE;
scope |= DFQ_PG_PARCELS_ONLY;
}
// send the message
LLMessageSystem *msg = gMessageSystem;
S32 start_row = 0;
sendDirFindQuery(msg, self->mSearchID, self->childGetValue("name").asString(), scope, start_row);
// Also look up classified ads. JC 12/2005
BOOL filter_auto_renew = FALSE;
U32 classified_flags = pack_classified_flags(filter_mature, filter_auto_renew);
msg->newMessage("DirClassifiedQuery");
msg->nextBlock("AgentData");
msg->addUUID("AgentID", gAgent.getID());
msg->addUUID("SessionID", gAgent.getSessionID());
msg->nextBlock("QueryData");
msg->addUUID("QueryID", self->mSearchID);
msg->addString("QueryText", self->childGetValue("name").asString());
msg->addU32("QueryFlags", classified_flags);
msg->addU32("Category", 0); // all categories
msg->addS32("QueryStart", 0);
gAgent.sendReliableMessage();
// Need to use separate find places query because places are
// sent using the more compact DirPlacesReply message.
U32 query_flags = DFQ_DWELL_SORT;
if ( filter_mature )
{
query_flags |= DFQ_PG_SIMS_ONLY;
query_flags |= DFQ_PG_PARCELS_ONLY; // FWIW, currently DFQ_PG_PARCELS_ONLY is only supported
query_flags |= DFQ_FILTER_MATURE;
}
msg->newMessage("DirPlacesQuery");
msg->nextBlock("AgentData");
msg->addUUID("AgentID", gAgent.getID() );
msg->addUUID("SessionID", gAgent.getSessionID());
msg->nextBlock("QueryData");
msg->addUUID("QueryID", self->mSearchID );
msg->addString("QueryText", self->childGetValue("name").asString());
msg->addU32("QueryFlags", query_flags );
msg->addS32("QueryStart", 0 ); // Always get the first 100 when using find ALL
msg->addS8("Category", LLParcel::C_ANY);
msg->addString("SimName", NULL);
gAgent.sendReliableMessage();
}
|