123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320 |
- /**
- * @file llfloaterobjectiminfo.cpp
- * @brief A floater with information about an object that sent an IM.
- *
- * $LicenseInfo:firstyear=2007&license=viewergpl$
- *
- * Copyright (c) 2007-2009, 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 "llfloaterobjectiminfo.h"
- #include "llcachename.h"
- #include "llfloater.h"
- #include "llsdutil.h"
- #include "lluictrlfactory.h"
- #include "llagent.h"
- #include "llcommandhandler.h"
- #include "llfloateravatarinfo.h"
- #include "llfloatergroupinfo.h"
- #include "llfloatermute.h"
- #include "llmutelist.h"
- //MK
- #include "mkrlinterface.h"
- //mk
- #include "llurldispatcher.h"
- #include "llviewercontrol.h"
- ////////////////////////////////////////////////////////////////////////////
- // LLFloaterObjectIMInfo
- class LLFloaterObjectIMInfo : public LLFloater,
- public LLFloaterSingleton<LLFloaterObjectIMInfo>
- {
- friend class LLUISingleton<LLFloaterObjectIMInfo,
- VisibilityPolicy<LLFloater> >;
- public:
- bool postBuild();
- void update(const LLUUID& id, const std::string& name,
- const std::string& slurl, const LLUUID& owner,
- bool owner_is_group);
- private:
- // Open only via LLFloaterSingleton interface, i.e. showInstance() or
- // toggleInstance().
- LLFloaterObjectIMInfo(const LLSD&);
- // UI Handlers
- static void onClickMap(void* data);
- static void onClickOwner(void* data);
- static void onClickMuteOwner(void* data);
- static void onClickMuteObject(void* data);
- static void onClickMuteByName(void* data);
- // Name cache callbacks
- static void nameCallback(const LLUUID& id, const std::string& full_name,
- bool is_group, LLFloaterObjectIMInfo* self);
- static void onAvatarNameCache(const LLUUID& agent_id,
- const LLAvatarName& av_name,
- LLFloaterObjectIMInfo* self);
- private:
- LLUUID mObjectID;
- LLUUID mOwnerID;
- std::string mObjectName;
- std::string mSlurl;
- std::string mOwnerName;
- bool mOwnerIsGroup;
- };
- LLFloaterObjectIMInfo::LLFloaterObjectIMInfo(const LLSD&)
- : mOwnerIsGroup(false)
- {
- LLUICtrlFactory::getInstance()->buildFloater(this,
- "floater_object_im_info.xml");
- if (getRect().mLeft == 0 && getRect().mBottom == 0)
- {
- center();
- }
- }
- bool LLFloaterObjectIMInfo::postBuild()
- {
- childSetAction("MuteOwner", onClickMuteOwner, this);
- childSetAction("MuteObject", onClickMuteObject, this);
- childSetAction("MuteByName", onClickMuteByName, this);
- childSetActionTextbox("OwnerName", onClickOwner, this);
- childSetActionTextbox("Slurl", onClickMap, this);
- return true;
- }
- void LLFloaterObjectIMInfo::update(const LLUUID& object_id,
- const std::string& name,
- const std::string& slurl,
- const LLUUID& owner_id, bool owner_is_group)
- {
- // When talking to an old region we do not have a slurl. The object Id is
- // not really the object Id either but we do not use it so who cares.
- bool have_slurl = !slurl.empty();
- childSetVisible("Unknown_Slurl", !have_slurl);
- childSetVisible("Slurl", have_slurl);
- childSetText("ObjectName", name);
- childSetText("Slurl", slurl);
- bool my_object = owner_id == gAgentID;
- childSetEnabled("MuteOwner", !my_object);
- childSetEnabled("MuteObject", !my_object);
- childSetEnabled("MuteByName", !my_object);
- mObjectID = object_id;
- mObjectName = name;
- mSlurl = slurl;
- mOwnerName.clear();
- mOwnerID = owner_id;
- mOwnerIsGroup = owner_is_group;
- if (owner_is_group)
- {
- if (gCacheNamep)
- {
- gCacheNamep->get(owner_id, true,
- boost::bind(&LLFloaterObjectIMInfo::nameCallback,
- _1, _2, _3, this));
- }
- }
- else
- {
- LLAvatarName av_name;
- if (LLAvatarNameCache::get(owner_id, &av_name))
- {
- if (LLAvatarNameCache::useDisplayNames())
- {
- mOwnerName = av_name.getNames();
- }
- else
- {
- mOwnerName = av_name.getLegacyName();
- }
- }
- else
- {
- LLAvatarNameCache::get(owner_id,
- boost::bind(&LLFloaterObjectIMInfo::onAvatarNameCache,
- _1, _2, this));
- }
- }
- childSetText("OwnerName", mOwnerName);
- }
- //static
- void LLFloaterObjectIMInfo::nameCallback(const LLUUID& id,
- const std::string& full_name,
- bool is_group,
- LLFloaterObjectIMInfo* self)
- {
- if (self == findInstance())
- {
- self->mOwnerName = full_name;
- self->childSetText("OwnerName", full_name);
- }
- }
- //static
- void LLFloaterObjectIMInfo::onAvatarNameCache(const LLUUID& agent_id,
- const LLAvatarName& av_name,
- LLFloaterObjectIMInfo* self)
- {
- if (self != findInstance()) return; // Stale callback, instance closed.
- if (LLAvatarNameCache::useDisplayNames())
- {
- self->mOwnerName = av_name.getNames();
- }
- else
- {
- self->mOwnerName = av_name.getLegacyName();
- }
- self->childSetText("OwnerName", self->mOwnerName);
- }
- //static
- void LLFloaterObjectIMInfo::onClickMap(void* data)
- {
- LLFloaterObjectIMInfo* self = (LLFloaterObjectIMInfo*)data;
- std::ostringstream link;
- link << "secondlife://" << self->mSlurl;
- class LLMediaCtrl* web = NULL;
- LLURLDispatcher::dispatch(link.str(), "clicked", web, true);
- }
- //static
- void LLFloaterObjectIMInfo::onClickOwner(void* data)
- {
- LLFloaterObjectIMInfo* self = (LLFloaterObjectIMInfo*)data;
- if (self->mOwnerIsGroup)
- {
- LLFloaterGroupInfo::showFromUUID(self->mOwnerID);
- }
- //MK
- else if (self->mOwnerID == gAgentID || !gRLenabled ||
- !gRLInterface.mContainsShownames)
- //mk
- {
- LLFloaterAvatarInfo::showFromObject(self->mOwnerID);
- }
- }
- //static
- void LLFloaterObjectIMInfo::onClickMuteOwner(void* data)
- {
- LLFloaterObjectIMInfo* self = (LLFloaterObjectIMInfo*)data;
- LLMute::EType mute_type = self->mOwnerIsGroup ? LLMute::GROUP
- : LLMute::AGENT;
- LLMute mute(self->mOwnerID, self->mOwnerName, mute_type);
- if (LLMuteList::add(mute))
- {
- LLFloaterMute::selectMute(mute.mID);
- }
- self->close();
- }
- //static
- void LLFloaterObjectIMInfo::onClickMuteObject(void* data)
- {
- LLFloaterObjectIMInfo* self = (LLFloaterObjectIMInfo*)data;
- LLMute mute(self->mObjectID, self->mObjectName, LLMute::OBJECT);
- if (LLMuteList::add(mute))
- {
- LLFloaterMute::selectMute(mute.mID);
- }
- self->close();
- }
- //static
- void LLFloaterObjectIMInfo::onClickMuteByName(void* data)
- {
- LLFloaterObjectIMInfo* self = (LLFloaterObjectIMInfo*)data;
- LLMute mute(LLUUID::null, self->mObjectName, LLMute::BY_NAME);
- if (LLMuteList::add(mute))
- {
- LLFloaterMute::showInstance();
- }
- self->close();
- }
- ////////////////////////////////////////////////////////////////////////////
- // LLObjectIMInfo
- //static
- void LLObjectIMInfo::show(const LLUUID& object_id, const std::string& name,
- const std::string& location, const LLUUID& owner_id,
- bool owner_is_group)
- {
- LLFloaterObjectIMInfo* floaterp = LLFloaterObjectIMInfo::showInstance();
- floaterp->update(object_id, name, location, owner_id, owner_is_group);
- }
- ////////////////////////////////////////////////////////////////////////////
- // LLObjectIMInfoHandler
- // E.g. secondlife:///app/objectim/9426adfc-9c17-8765-5f09-fdf19957d003
- // ?owner=a112d245-9095-4e9c-ace4-ffa31717f934&groupowned=true
- // &slurl=ahern/123/123/123&name=Object
- class LLObjectIMInfoHandler final : public LLCommandHandler
- {
- public:
- LLObjectIMInfoHandler()
- : LLCommandHandler("objectim", UNTRUSTED_THROTTLE)
- {
- }
- bool handle(const LLSD& tokens, const LLSD& query_map,
- LLMediaCtrl*) override
- {
- LLUUID task_id = tokens[0].asUUID();
- std::string name = query_map["name"].asString();
- std::string slurl = query_map["slurl"].asString();
- LLUUID owner = query_map["owner"].asUUID();
- bool group_owned = query_map.has("groupowned");
- LLObjectIMInfo::show(task_id, name, slurl, owner, group_owned);
- return true;
- }
- };
- // Creating the object registers with the dispatcher.
- LLObjectIMInfoHandler gObjectIMHandler;
|