171 lines
3.6 KiB
C++
171 lines
3.6 KiB
C++
/**
|
|
* @file fsslurlcommand.cpp
|
|
* @brief SLurl command handler for Firestorm commands
|
|
*
|
|
* $LicenseInfo:firstyear=2012&license=viewerlgpl$
|
|
* Copyright (c) 2012 Ansariel Hiller @ Second Life
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation;
|
|
* version 2.1 of the License only.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
* The Phoenix Firestorm Project, Inc., 1831 Oakwood Drive, Fairmont, Minnesota 56031-3225 USA
|
|
* http://www.firestormviewer.org
|
|
* $/LicenseInfo$
|
|
*/
|
|
|
|
#include "llviewerprecompiledheaders.h"
|
|
#include "fsslurlcommand.h"
|
|
|
|
#include "llagent.h"
|
|
#include "llavataractions.h"
|
|
#include "llcommandhandler.h"
|
|
#include "llfloatersettingsdebug.h"
|
|
#include "lllogchat.h"
|
|
#include "llnotificationsutil.h"
|
|
|
|
|
|
class FSSlurlCommandHandler : public LLCommandHandler
|
|
{
|
|
public:
|
|
// not allowed from outside the app
|
|
FSSlurlCommandHandler() : LLCommandHandler("firestorm", UNTRUSTED_BLOCK) { }
|
|
|
|
bool handle(const LLSD& params, const LLSD& query_map, LLMediaCtrl* web)
|
|
{
|
|
if (params.size() < 2)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
LLUUID target_id;
|
|
if (!target_id.set(params[0], FALSE))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
const std::string verb = params[1].asString();
|
|
|
|
if (verb == "zoom")
|
|
{
|
|
if (LLAvatarActions::canZoomIn(target_id))
|
|
{
|
|
LLAvatarActions::zoomIn(target_id);
|
|
return true;
|
|
}
|
|
|
|
LLNotificationsUtil::add("ZoomToAvatarNotPossible");
|
|
return true;
|
|
}
|
|
|
|
if (verb == "offerteleport")
|
|
{
|
|
if (gAgentID != target_id)
|
|
{
|
|
LLAvatarActions::offerTeleport(target_id);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
if (verb == "requestteleport")
|
|
{
|
|
if (gAgentID != target_id)
|
|
{
|
|
LLAvatarActions::teleportRequest(target_id);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
if (verb == "teleportto")
|
|
{
|
|
if (gAgentID != target_id)
|
|
{
|
|
LLAvatarActions::teleportTo(target_id);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
if (verb == "track")
|
|
{
|
|
if (gAgentID != target_id)
|
|
{
|
|
LLAvatarActions::track(target_id);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
if (verb == "addtocontactset")
|
|
{
|
|
if (gAgentID != target_id)
|
|
{
|
|
LLAvatarActions::addToContactSet(target_id);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
if (verb == "blockavatar")
|
|
{
|
|
if (gAgentID != target_id)
|
|
{
|
|
LLAvatarActions::toggleBlock(target_id);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
if (verb == "viewlog")
|
|
{
|
|
if (gAgentID != target_id && LLLogChat::isTranscriptExist(target_id))
|
|
{
|
|
LLAvatarActions::viewChatHistory(target_id);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
};
|
|
|
|
// Creating the object registers with the dispatcher.
|
|
FSSlurlCommandHandler gFSSlurlHandler;
|
|
|
|
class FSHelpSlurlCommandHandler : public LLCommandHandler
|
|
{
|
|
public:
|
|
// not allowed from outside the app
|
|
FSHelpSlurlCommandHandler() : LLCommandHandler("fshelp", UNTRUSTED_THROTTLE) { }
|
|
|
|
bool handle(const LLSD& params, const LLSD& query_map, LLMediaCtrl* web)
|
|
{
|
|
if (params.size() < 2)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (params[0].asString() == "showdebug")
|
|
{
|
|
std::string setting_name = params[1].asString();
|
|
LLFloaterSettingsDebug::showControl(setting_name);
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
};
|
|
|
|
// Creating the object registers with the dispatcher.
|
|
FSHelpSlurlCommandHandler gFSHelpSlurlCommandHandler;
|