summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterexperienceprofile.cpp
diff options
context:
space:
mode:
authorAnsariel <ansariel.hiller@phoenixviewer.com>2024-05-22 21:25:21 +0200
committerAndrey Lihatskiy <alihatskiy@productengine.com>2024-05-22 22:40:26 +0300
commite2e37cced861b98de8c1a7c9c0d3a50d2d90e433 (patch)
tree1bb897489ce524986f6196201c10ac0d8861aa5f /indra/newview/llfloaterexperienceprofile.cpp
parent069ea06848f766466f1a281144c82a0f2bd79f3a (diff)
Fix line endlings
Diffstat (limited to 'indra/newview/llfloaterexperienceprofile.cpp')
-rw-r--r--indra/newview/llfloaterexperienceprofile.cpp1868
1 files changed, 934 insertions, 934 deletions
diff --git a/indra/newview/llfloaterexperienceprofile.cpp b/indra/newview/llfloaterexperienceprofile.cpp
index f177764efb..eb4976fc9e 100644
--- a/indra/newview/llfloaterexperienceprofile.cpp
+++ b/indra/newview/llfloaterexperienceprofile.cpp
@@ -1,934 +1,934 @@
-/**
- * @file llfloaterexperienceprofile.cpp
- * @brief llfloaterexperienceprofile and related class definitions
- *
- * $LicenseInfo:firstyear=2013&license=viewerlgpl$
- * Second Life Viewer Source Code
- * Copyright (C) 2013, Linden Research, Inc.
- *
- * 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
- *
- * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
- * $/LicenseInfo$
- */
-
-
-#include "llviewerprecompiledheaders.h"
-#include "llfloaterexperienceprofile.h"
-
-#include "llagent.h"
-#include "llappviewer.h"
-#include "llcheckboxctrl.h"
-#include "llcombobox.h"
-#include "llcommandhandler.h"
-#include "llexpandabletextbox.h"
-#include "llexperiencecache.h"
-#include "llfloaterreg.h"
-#include "lllayoutstack.h"
-#include "lllineeditor.h"
-#include "llnotificationsutil.h"
-#include "llsdserialize.h"
-#include "llslurl.h"
-#include "lltabcontainer.h"
-#include "lltextbox.h"
-#include "lltexturectrl.h"
-#include "lltrans.h"
-#include "llviewerregion.h"
-#include "llevents.h"
-#include "llfloatergroups.h"
-#include "llnotifications.h"
-#include "llfloaterreporter.h"
-
-#define XML_PANEL_EXPERIENCE_PROFILE "floater_experienceprofile.xml"
-#define TF_NAME "experience_title"
-#define TF_DESC "experience_description"
-#define TF_SLURL "LocationTextText"
-#define TF_MRKT "marketplace"
-#define TF_MATURITY "ContentRatingText"
-#define TF_OWNER "OwnerText"
-#define TF_GROUP "GroupText"
-#define TF_GRID_WIDE "grid_wide"
-#define TF_PRIVILEGED "privileged"
-#define EDIT "edit_"
-
-#define IMG_LOGO "logo"
-
-#define PNL_TOP "top panel"
-#define PNL_IMAGE "image_panel"
-#define PNL_DESC "description panel"
-#define PNL_LOC "location panel"
-#define PNL_MRKT "marketplace panel"
-#define PNL_GROUP "group_panel"
-#define PNL_PERMS "perm panel"
-
-#define BTN_ALLOW "allow_btn"
-#define BTN_BLOCK "block_btn"
-#define BTN_CANCEL "cancel_btn"
-#define BTN_CLEAR_LOCATION "clear_btn"
-#define BTN_EDIT "edit_btn"
-#define BTN_ENABLE "enable_btn"
-#define BTN_FORGET "forget_btn"
-#define BTN_PRIVATE "private_btn"
-#define BTN_REPORT "report_btn"
-#define BTN_SAVE "save_btn"
-#define BTN_SET_GROUP "Group_btn"
-#define BTN_SET_LOCATION "location_btn"
-
-
-class LLExperienceHandler : public LLCommandHandler
-{
-public:
- LLExperienceHandler() : LLCommandHandler("experience", UNTRUSTED_THROTTLE) { }
-
- bool handle(const LLSD& params,
- const LLSD& query_map,
- const std::string& grid,
- LLMediaCtrl* web)
- {
- if(params.size() != 2 || params[1].asString() != "profile")
- return false;
-
- LLExperienceCache::instance().get(params[0].asUUID(), boost::bind(&LLExperienceHandler::experienceCallback, this, _1));
- return true;
- }
-
- void experienceCallback(const LLSD& experienceDetails)
- {
- if(!experienceDetails.has(LLExperienceCache::MISSING))
- {
- LLFloaterReg::showInstance("experience_profile", experienceDetails[LLExperienceCache::EXPERIENCE_ID].asUUID(), true);
- }
- }
-};
-
-LLExperienceHandler gExperienceHandler;
-
-
-LLFloaterExperienceProfile::LLFloaterExperienceProfile(const LLSD& data)
- : LLFloater(data)
- , mSaveCompleteAction(NOTHING)
- , mDirty(false)
- , mForceClose(false)
-{
- if (data.has("experience_id"))
- {
- mExperienceId = data["experience_id"].asUUID();
- mPostEdit = data.has("edit_experience") && data["edit_experience"].asBoolean();
- }
- else
- {
- mExperienceId = data.asUUID();
- mPostEdit = false;
- }
-}
-
-
-LLFloaterExperienceProfile::~LLFloaterExperienceProfile()
-{
-
-}
-
-bool LLFloaterExperienceProfile::postBuild()
-{
-
- if (mExperienceId.notNull())
- {
- LLExperienceCache::instance().fetch(mExperienceId, true);
- LLExperienceCache::instance().get(mExperienceId, boost::bind(&LLFloaterExperienceProfile::experienceCallback,
- getDerivedHandle<LLFloaterExperienceProfile>(), _1));
-
- LLViewerRegion* region = gAgent.getRegion();
- if (region)
- {
- LLExperienceCache::instance().getExperienceAdmin(mExperienceId, boost::bind(
- &LLFloaterExperienceProfile::experienceIsAdmin, getDerivedHandle<LLFloaterExperienceProfile>(), _1));
- }
- }
-
- childSetAction(BTN_EDIT, boost::bind(&LLFloaterExperienceProfile::onClickEdit, this));
- childSetAction(BTN_ALLOW, boost::bind(&LLFloaterExperienceProfile::onClickPermission, this, "Allow"));
- childSetAction(BTN_FORGET, boost::bind(&LLFloaterExperienceProfile::onClickForget, this));
- childSetAction(BTN_BLOCK, boost::bind(&LLFloaterExperienceProfile::onClickPermission, this, "Block"));
- childSetAction(BTN_CANCEL, boost::bind(&LLFloaterExperienceProfile::onClickCancel, this));
- childSetAction(BTN_SAVE, boost::bind(&LLFloaterExperienceProfile::onClickSave, this));
- childSetAction(BTN_SET_LOCATION, boost::bind(&LLFloaterExperienceProfile::onClickLocation, this));
- childSetAction(BTN_CLEAR_LOCATION, boost::bind(&LLFloaterExperienceProfile::onClickClear, this));
- childSetAction(BTN_SET_GROUP, boost::bind(&LLFloaterExperienceProfile::onPickGroup, this));
- childSetAction(BTN_REPORT, boost::bind(&LLFloaterExperienceProfile::onReportExperience, this));
-
- getChild<LLTextEditor>(EDIT TF_DESC)->setKeystrokeCallback(boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this));
- getChild<LLUICtrl>(EDIT TF_MATURITY)->setCommitCallback(boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this));
- getChild<LLLineEditor>(EDIT TF_MRKT)->setKeystrokeCallback(boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
- getChild<LLLineEditor>(EDIT TF_NAME)->setKeystrokeCallback(boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
-
- childSetCommitCallback(EDIT BTN_ENABLE, boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
- childSetCommitCallback(EDIT BTN_PRIVATE, boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
-
- childSetCommitCallback(EDIT IMG_LOGO, boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
-
- getChild<LLTextEditor>(EDIT TF_DESC)->setCommitOnFocusLost(true);
-
-
- LLEventPumps::instance().obtain("experience_permission").listen(mExperienceId.asString()+"-profile",
- boost::bind(&LLFloaterExperienceProfile::experiencePermission, getDerivedHandle<LLFloaterExperienceProfile>(this), _1));
-
- if (mPostEdit && mExperienceId.notNull())
- {
- mPostEdit = false;
- changeToEdit();
- }
-
- return true;
-}
-
-void LLFloaterExperienceProfile::experienceCallback(LLHandle<LLFloaterExperienceProfile> handle, const LLSD& experience )
-{
- LLFloaterExperienceProfile* pllpep = handle.get();
- if(pllpep)
- {
- pllpep->refreshExperience(experience);
- }
-}
-
-
-bool LLFloaterExperienceProfile::experiencePermission( LLHandle<LLFloaterExperienceProfile> handle, const LLSD& permission )
-{
- LLFloaterExperienceProfile* pllpep = handle.get();
- if(pllpep)
- {
- pllpep->updatePermission(permission);
- }
- return false;
-}
-
-bool LLFloaterExperienceProfile::matchesKey(const LLSD& key)
-{
- if (key.has("experience_id"))
- {
- return mExperienceId == key["experience_id"].asUUID();
- }
- else if (key.isUUID())
- {
- return mExperienceId == key.asUUID();
- }
- // Assume NULL uuid
- return mExperienceId.isNull();
-}
-
-
-void LLFloaterExperienceProfile::onClickEdit()
-{
- changeToEdit();
-}
-
-
-void LLFloaterExperienceProfile::onClickCancel()
-{
- changeToView();
-}
-
-void LLFloaterExperienceProfile::onClickSave()
-{
- doSave(NOTHING);
-}
-
-void LLFloaterExperienceProfile::onClickPermission(const char* perm)
-{
- LLViewerRegion* region = gAgent.getRegion();
- if (!region)
- return;
- LLExperienceCache::instance().setExperiencePermission(mExperienceId, perm, boost::bind(
- &LLFloaterExperienceProfile::experiencePermissionResults, mExperienceId, _1));
-}
-
-
-void LLFloaterExperienceProfile::onClickForget()
-{
- LLViewerRegion* region = gAgent.getRegion();
- if (!region)
- return;
-
- LLExperienceCache::instance().forgetExperiencePermission(mExperienceId, boost::bind(
- &LLFloaterExperienceProfile::experiencePermissionResults, mExperienceId, _1));
-}
-
-bool LLFloaterExperienceProfile::setMaturityString( U8 maturity, LLTextBox* child, LLComboBox* combo )
-{
- LLStyle::Params style;
- std::string access;
- if(maturity <= SIM_ACCESS_PG)
- {
- style.image(LLUI::getUIImage(getString("maturity_icon_general")));
- access = LLTrans::getString("SIM_ACCESS_PG");
- combo->setCurrentByIndex(2);
- }
- else if(maturity <= SIM_ACCESS_MATURE)
- {
- style.image(LLUI::getUIImage(getString("maturity_icon_moderate")));
- access = LLTrans::getString("SIM_ACCESS_MATURE");
- combo->setCurrentByIndex(1);
- }
- else if(maturity <= SIM_ACCESS_ADULT)
- {
- style.image(LLUI::getUIImage(getString("maturity_icon_adult")));
- access = LLTrans::getString("SIM_ACCESS_ADULT");
- combo->setCurrentByIndex(0);
- }
- else
- {
- return false;
- }
-
- child->setText(LLStringUtil::null);
-
- child->appendImageSegment(style);
-
- child->appendText(access, false);
-
- return true;
-}
-
-
-void LLFloaterExperienceProfile::refreshExperience( const LLSD& experience )
-{
- mExperienceDetails = experience;
- mPackage = experience;
-
-
- LLLayoutPanel* imagePanel = getChild<LLLayoutPanel>(PNL_IMAGE);
- LLLayoutPanel* descriptionPanel = getChild<LLLayoutPanel>(PNL_DESC);
- LLLayoutPanel* locationPanel = getChild<LLLayoutPanel>(PNL_LOC);
- LLLayoutPanel* marketplacePanel = getChild<LLLayoutPanel>(PNL_MRKT);
- LLLayoutPanel* topPanel = getChild<LLLayoutPanel>(PNL_TOP);
-
-
- imagePanel->setVisible(false);
- descriptionPanel->setVisible(false);
- locationPanel->setVisible(false);
- marketplacePanel->setVisible(false);
- topPanel->setVisible(false);
-
-
- LLTextBox* child = getChild<LLTextBox>(TF_NAME);
- //child->setText(experience[LLExperienceCache::NAME].asString());
- child->setText(LLSLURL("experience", experience[LLExperienceCache::EXPERIENCE_ID], "profile").getSLURLString());
-
- LLLineEditor* linechild = getChild<LLLineEditor>(EDIT TF_NAME);
- linechild->setText(experience[LLExperienceCache::NAME].asString());
-
- std::string value = experience[LLExperienceCache::DESCRIPTION].asString();
- LLExpandableTextBox* exchild = getChild<LLExpandableTextBox>(TF_DESC);
- exchild->setText(value);
- descriptionPanel->setVisible(value.length()>0);
-
- LLTextEditor* edit_child = getChild<LLTextEditor>(EDIT TF_DESC);
- edit_child->setText(value);
-
- mLocationSLURL = experience[LLExperienceCache::SLURL].asString();
- child = getChild<LLTextBox>(TF_SLURL);
- bool has_slurl = mLocationSLURL.length()>0;
- locationPanel->setVisible(has_slurl);
- mLocationSLURL = LLSLURL(mLocationSLURL).getSLURLString();
- child->setText(mLocationSLURL);
-
-
- child = getChild<LLTextBox>(EDIT TF_SLURL);
- if(has_slurl)
- {
- child->setText(mLocationSLURL);
- }
- else
- {
- child->setText(getString("empty_slurl"));
- }
-
- setMaturityString((U8)(experience[LLExperienceCache::MATURITY].asInteger()), getChild<LLTextBox>(TF_MATURITY), getChild<LLComboBox>(EDIT TF_MATURITY));
-
- LLUUID id = experience[LLExperienceCache::AGENT_ID].asUUID();
- child = getChild<LLTextBox>(TF_OWNER);
- value = LLSLURL("agent", id, "inspect").getSLURLString();
- child->setText(value);
-
-
- id = experience[LLExperienceCache::GROUP_ID].asUUID();
- bool id_null = id.isNull();
- child = getChild<LLTextBox>(TF_GROUP);
- value = LLSLURL("group", id, "inspect").getSLURLString();
- child->setText(value);
- getChild<LLLayoutPanel>(PNL_GROUP)->setVisible(!id_null);
-
- setEditGroup(id);
-
- getChild<LLButton>(BTN_SET_GROUP)->setEnabled(experience[LLExperienceCache::AGENT_ID].asUUID() == gAgent.getID());
-
- LLCheckBoxCtrl* enable = getChild<LLCheckBoxCtrl>(EDIT BTN_ENABLE);
- S32 properties = mExperienceDetails[LLExperienceCache::PROPERTIES].asInteger();
- enable->set(!(properties & LLExperienceCache::PROPERTY_DISABLED));
-
- enable = getChild<LLCheckBoxCtrl>(EDIT BTN_PRIVATE);
- enable->set(properties & LLExperienceCache::PROPERTY_PRIVATE);
-
- topPanel->setVisible(true);
- child=getChild<LLTextBox>(TF_GRID_WIDE);
- child->setVisible(true);
-
- if(properties & LLExperienceCache::PROPERTY_GRID)
- {
- child->setText(LLTrans::getString("Grid-Scope"));
- }
- else
- {
- child->setText(LLTrans::getString("Land-Scope"));
- }
-
- if(getChild<LLButton>(BTN_EDIT)->getVisible())
- {
- topPanel->setVisible(true);
- }
-
- if(properties & LLExperienceCache::PROPERTY_PRIVILEGED)
- {
- child = getChild<LLTextBox>(TF_PRIVILEGED);
- child->setVisible(true);
- }
- else
- {
- LLViewerRegion* region = gAgent.getRegion();
- if (region)
- {
- LLExperienceCache::instance().getExperiencePermission(mExperienceId, boost::bind(
- &LLFloaterExperienceProfile::experiencePermissionResults, mExperienceId, _1));
- }
- }
-
- value=experience[LLExperienceCache::METADATA].asString();
- if(value.empty())
- return;
-
- LLPointer<LLSDParser> parser = new LLSDXMLParser();
-
- LLSD data;
-
- std::istringstream is(value);
- if(LLSDParser::PARSE_FAILURE != parser->parse(is, data, value.size()))
- {
- value="";
- if(data.has(TF_MRKT))
- {
- value=data[TF_MRKT].asString();
-
- child = getChild<LLTextBox>(TF_MRKT);
- child->setText(value);
- if(value.size())
- {
- marketplacePanel->setVisible(true);
- }
- else
- {
- marketplacePanel->setVisible(false);
- }
- }
- else
- {
- marketplacePanel->setVisible(false);
- }
-
- linechild = getChild<LLLineEditor>(EDIT TF_MRKT);
- linechild->setText(value);
-
- if(data.has(IMG_LOGO))
- {
- LLTextureCtrl* logo = getChild<LLTextureCtrl>(IMG_LOGO);
-
- LLUUID id = data[IMG_LOGO].asUUID();
- logo->setImageAssetID(id);
- imagePanel->setVisible(true);
-
- logo = getChild<LLTextureCtrl>(EDIT IMG_LOGO);
- logo->setImageAssetID(data[IMG_LOGO].asUUID());
-
- imagePanel->setVisible(id.notNull());
- }
- }
- else
- {
- marketplacePanel->setVisible(false);
- imagePanel->setVisible(false);
- }
-
- mDirty=false;
- mForceClose = false;
- getChild<LLButton>(BTN_SAVE)->setEnabled(mDirty);
-}
-
-void LLFloaterExperienceProfile::setPreferences( const LLSD& content )
-{
- S32 properties = mExperienceDetails[LLExperienceCache::PROPERTIES].asInteger();
- if(properties & LLExperienceCache::PROPERTY_PRIVILEGED)
- {
- return;
- }
-
- const LLSD& experiences = content["experiences"];
- const LLSD& blocked = content["blocked"];
-
-
- for(LLSD::array_const_iterator it = experiences.beginArray(); it != experiences.endArray() ; ++it)
- {
- if(it->asUUID()==mExperienceId)
- {
- experienceAllowed();
- return;
- }
- }
-
- for(LLSD::array_const_iterator it = blocked.beginArray(); it != blocked.endArray() ; ++it)
- {
- if(it->asUUID()==mExperienceId)
- {
- experienceBlocked();
- return;
- }
- }
-
- experienceForgotten();
-}
-
-void LLFloaterExperienceProfile::onFieldChanged()
-{
- updatePackage();
-
- if(!getChild<LLButton>(BTN_EDIT)->getVisible())
- {
- return;
- }
- LLSD::map_const_iterator st = mExperienceDetails.beginMap();
- LLSD::map_const_iterator dt = mPackage.beginMap();
-
- mDirty = false;
- while( !mDirty && st != mExperienceDetails.endMap() && dt != mPackage.endMap())
- {
- mDirty = st->first != dt->first || st->second.asString() != dt->second.asString();
- ++st;++dt;
- }
-
- if(!mDirty && (st != mExperienceDetails.endMap() || dt != mPackage.endMap()))
- {
- mDirty = true;
- }
-
- getChild<LLButton>(BTN_SAVE)->setEnabled(mDirty);
-}
-
-
-bool LLFloaterExperienceProfile::canClose()
-{
- if(mForceClose || !mDirty)
- {
- return true;
- }
- else
- {
- // Bring up view-modal dialog: Save changes? Yes, No, Cancel
- LLNotificationsUtil::add("SaveChanges", LLSD(), LLSD(), boost::bind(&LLFloaterExperienceProfile::handleSaveChangesDialog, this, _1, _2, CLOSE));
- return false;
- }
-}
-
-bool LLFloaterExperienceProfile::handleSaveChangesDialog( const LLSD& notification, const LLSD& response, PostSaveAction action )
-{
- S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
- switch( option )
- {
- case 0: // "Yes"
- // close after saving
- doSave( action );
- break;
-
- case 1: // "No"
- if(action != NOTHING)
- {
- mForceClose = true;
- if(action==CLOSE)
- {
- closeFloater();
- }
- else
- {
- changeToView();
- }
- }
- break;
-
- case 2: // "Cancel"
- default:
- // If we were quitting, we didn't really mean it.
- LLAppViewer::instance()->abortQuit();
- break;
- }
- return false;
-}
-
-void LLFloaterExperienceProfile::doSave( int success_action )
-{
- mSaveCompleteAction=success_action;
-
- LLViewerRegion* region = gAgent.getRegion();
- if (!region)
- return;
-
- LLExperienceCache::instance().updateExperience(mPackage, boost::bind(
- &LLFloaterExperienceProfile::experienceUpdateResult,
- getDerivedHandle<LLFloaterExperienceProfile>(), _1));
-}
-
-void LLFloaterExperienceProfile::onSaveComplete( const LLSD& content )
-{
- LLUUID id = getExperienceId();
-
- if(content.has("removed"))
- {
- const LLSD& removed = content["removed"];
- LLSD::map_const_iterator it = removed.beginMap();
- for(/**/; it != removed.endMap(); ++it)
- {
- const std::string& field = it->first;
- if(field == LLExperienceCache::EXPERIENCE_ID)
- {
- //this message should be removed by the experience api
- continue;
- }
- const LLSD& data = it->second;
- std::string error_tag = data["error_tag"].asString()+ "ExperienceProfileMessage";
- LLSD fields;
- if( LLNotifications::instance().getTemplate(error_tag))
- {
- fields["field"] = field;
- fields["extra_info"] = data["extra_info"];
- LLNotificationsUtil::add(error_tag, fields);
- }
- else
- {
- fields["MESSAGE"]=data["en"];
- LLNotificationsUtil::add("GenericAlert", fields);
- }
- }
- }
-
- if(!content.has("experience_keys"))
- {
- LL_WARNS() << "LLFloaterExperienceProfile::onSaveComplete called with bad content" << LL_ENDL;
- return;
- }
-
- const LLSD& experiences = content["experience_keys"];
-
- LLSD::array_const_iterator it = experiences.beginArray();
- if(it == experiences.endArray())
- {
- LL_WARNS() << "LLFloaterExperienceProfile::onSaveComplete called with empty content" << LL_ENDL;
- return;
- }
-
- if(!it->has(LLExperienceCache::EXPERIENCE_ID) || ((*it)[LLExperienceCache::EXPERIENCE_ID].asUUID() != id))
- {
- LL_WARNS() << "LLFloaterExperienceProfile::onSaveComplete called with unexpected experience id" << LL_ENDL;
- return;
- }
-
- refreshExperience(*it);
- LLExperienceCache::instance().insert(*it);
- LLExperienceCache::instance().fetch(id, true);
-
- if(mSaveCompleteAction==VIEW)
- {
- LLTabContainer* tabs = getChild<LLTabContainer>("tab_container");
- tabs->selectTabByName("panel_experience_info");
- }
- else if(mSaveCompleteAction == CLOSE)
- {
- closeFloater();
- }
-}
-
-void LLFloaterExperienceProfile::changeToView()
-{
- if(mForceClose || !mDirty)
- {
- refreshExperience(mExperienceDetails);
- LLTabContainer* tabs = getChild<LLTabContainer>("tab_container");
-
- tabs->selectTabByName("panel_experience_info");
- }
- else
- {
- // Bring up view-modal dialog: Save changes? Yes, No, Cancel
- LLNotificationsUtil::add("SaveChanges", LLSD(), LLSD(), boost::bind(&LLFloaterExperienceProfile::handleSaveChangesDialog, this, _1, _2, VIEW));
- }
-}
-
-void LLFloaterExperienceProfile::changeToEdit()
-{
- LLTabContainer* tabs = getChild<LLTabContainer>("tab_container");
-
- tabs->selectTabByName("edit_panel_experience_info");
-}
-
-void LLFloaterExperienceProfile::onClickLocation()
-{
- LLViewerRegion* region = gAgent.getRegion();
- if(region)
- {
- LLTextBox* child = getChild<LLTextBox>(EDIT TF_SLURL);
- mLocationSLURL = LLSLURL(region->getName(), gAgent.getPositionGlobal()).getSLURLString();
- child->setText(mLocationSLURL);
- onFieldChanged();
- }
-}
-
-void LLFloaterExperienceProfile::onClickClear()
-{
- LLTextBox* child = getChild<LLTextBox>(EDIT TF_SLURL);
- mLocationSLURL = "";
- child->setText(getString("empty_slurl"));
- onFieldChanged();
-}
-
-void LLFloaterExperienceProfile::updatePermission( const LLSD& permission )
-{
- if(permission.has("experience"))
- {
- if(permission["experience"].asUUID() != mExperienceId)
- {
- return;
- }
-
- std::string str = permission[mExperienceId.asString()]["permission"].asString();
- if(str == "Allow")
- {
- experienceAllowed();
- }
- else if(str == "Block")
- {
- experienceBlocked();
- }
- else if(str == "Forget")
- {
- experienceForgotten();
- }
- }
- else
- {
- setPreferences(permission);
- }
-}
-
-void LLFloaterExperienceProfile::experienceAllowed()
-{
- LLButton* button=getChild<LLButton>(BTN_ALLOW);
- button->setEnabled(false);
-
- button=getChild<LLButton>(BTN_FORGET);
- button->setEnabled(true);
-
- button=getChild<LLButton>(BTN_BLOCK);
- button->setEnabled(true);
-}
-
-void LLFloaterExperienceProfile::experienceForgotten()
-{
- LLButton* button=getChild<LLButton>(BTN_ALLOW);
- button->setEnabled(true);
-
- button=getChild<LLButton>(BTN_FORGET);
- button->setEnabled(false);
-
- button=getChild<LLButton>(BTN_BLOCK);
- button->setEnabled(true);
-}
-
-void LLFloaterExperienceProfile::experienceBlocked()
-{
- LLButton* button=getChild<LLButton>(BTN_ALLOW);
- button->setEnabled(true);
-
- button=getChild<LLButton>(BTN_FORGET);
- button->setEnabled(true);
-
- button=getChild<LLButton>(BTN_BLOCK);
- button->setEnabled(false);
-}
-
-void LLFloaterExperienceProfile::onClose( bool app_quitting )
-{
- LLEventPumps::instance().obtain("experience_permission").stopListening(mExperienceId.asString()+"-profile");
- LLFloater::onClose(app_quitting);
-}
-
-void LLFloaterExperienceProfile::updatePackage()
-{
- mPackage[LLExperienceCache::NAME] = getChild<LLLineEditor>(EDIT TF_NAME)->getText();
- mPackage[LLExperienceCache::DESCRIPTION] = getChild<LLTextEditor>(EDIT TF_DESC)->getText();
- if(mLocationSLURL.empty())
- {
- mPackage[LLExperienceCache::SLURL] = LLStringUtil::null;
- }
- else
- {
- mPackage[LLExperienceCache::SLURL] = mLocationSLURL;
- }
-
- mPackage[LLExperienceCache::MATURITY] = getChild<LLComboBox>(EDIT TF_MATURITY)->getSelectedValue().asInteger();
-
- LLSD metadata;
-
- metadata[TF_MRKT] = getChild<LLLineEditor>(EDIT TF_MRKT)->getText();
- metadata[IMG_LOGO] = getChild<LLTextureCtrl>(EDIT IMG_LOGO)->getImageAssetID();
-
- LLPointer<LLSDXMLFormatter> formatter = new LLSDXMLFormatter();
-
- std::ostringstream os;
- if(formatter->format(metadata, os))
- {
- mPackage[LLExperienceCache::METADATA]=os.str();
- }
-
- int properties = mPackage[LLExperienceCache::PROPERTIES].asInteger();
- LLCheckBoxCtrl* enable = getChild<LLCheckBoxCtrl>(EDIT BTN_ENABLE);
- if(enable->get())
- {
- properties &= ~LLExperienceCache::PROPERTY_DISABLED;
- }
- else
- {
- properties |= LLExperienceCache::PROPERTY_DISABLED;
- }
-
- enable = getChild<LLCheckBoxCtrl>(EDIT BTN_PRIVATE);
- if(enable->get())
- {
- properties |= LLExperienceCache::PROPERTY_PRIVATE;
- }
- else
- {
- properties &= ~LLExperienceCache::PROPERTY_PRIVATE;
- }
-
- mPackage[LLExperienceCache::PROPERTIES] = properties;
-}
-
-void LLFloaterExperienceProfile::onPickGroup()
-{
- LLFloater* parent_floater = gFloaterView->getParentFloater(this);
-
- LLFloaterGroupPicker* widget = LLFloaterReg::showTypedInstance<LLFloaterGroupPicker>("group_picker", LLSD(gAgent.getID()));
- if (widget)
- {
- widget->setSelectGroupCallback(boost::bind(&LLFloaterExperienceProfile::setEditGroup, this, _1));
- if (parent_floater)
- {
- LLRect new_rect = gFloaterView->findNeighboringPosition(parent_floater, widget);
- widget->setOrigin(new_rect.mLeft, new_rect.mBottom);
- parent_floater->addDependentFloater(widget);
- }
- }
-}
-
-void LLFloaterExperienceProfile::setEditGroup( LLUUID group_id )
-{
- LLTextBox* child = getChild<LLTextBox>(EDIT TF_GROUP);
- std::string value = LLSLURL("group", group_id, "inspect").getSLURLString();
- child->setText(value);
- mPackage[LLExperienceCache::GROUP_ID] = group_id;
- onFieldChanged();
-}
-
-void LLFloaterExperienceProfile::onReportExperience()
-{
- LLFloaterReporter::showFromExperience(mExperienceId);
-}
-
-/*static*/
-bool LLFloaterExperienceProfile::hasPermission(const LLSD& content, const std::string &name, const LLUUID &test)
-{
- if (!content.has(name))
- return false;
-
- const LLSD& list = content[name];
- LLSD::array_const_iterator it = list.beginArray();
- while (it != list.endArray())
- {
- if (it->asUUID() == test)
- {
- return true;
- }
- ++it;
- }
- return false;
-}
-
-/*static*/
-void LLFloaterExperienceProfile::experiencePermissionResults(LLUUID exprienceId, LLSD result)
-{
- std::string permission("Forget");
- if (hasPermission(result, "experiences", exprienceId))
- permission = "Allow";
- else if (hasPermission(result, "blocked", exprienceId))
- permission = "Block";
-
- LLSD experience;
- LLSD message;
- experience["permission"] = permission;
- message["experience"] = exprienceId;
- message[exprienceId.asString()] = experience;
-
- LLEventPumps::instance().obtain("experience_permission").post(message);
-}
-
-/*static*/
-void LLFloaterExperienceProfile::experienceIsAdmin(LLHandle<LLFloaterExperienceProfile> handle, const LLSD &result)
-{
- LLFloaterExperienceProfile* parent = handle.get();
- if (!parent)
- return;
-
- bool enabled = true;
- LLViewerRegion* region = gAgent.getRegion();
- if (!region)
- {
- enabled = false;
- }
- else
- {
- std::string url = region->getCapability("UpdateExperience");
- if (url.empty())
- enabled = false;
- }
- if (enabled && result["status"].asBoolean())
- {
- parent->getChild<LLLayoutPanel>(PNL_TOP)->setVisible(true);
- parent->getChild<LLButton>(BTN_EDIT)->setVisible(true);
- }
-}
-
-/*static*/
-void LLFloaterExperienceProfile::experienceUpdateResult(LLHandle<LLFloaterExperienceProfile> handle, const LLSD &result)
-{
- LLFloaterExperienceProfile* parent = handle.get();
- if (parent)
- {
- parent->onSaveComplete(result);
- }
-}
+/**
+ * @file llfloaterexperienceprofile.cpp
+ * @brief llfloaterexperienceprofile and related class definitions
+ *
+ * $LicenseInfo:firstyear=2013&license=viewerlgpl$
+ * Second Life Viewer Source Code
+ * Copyright (C) 2013, Linden Research, Inc.
+ *
+ * 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
+ *
+ * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
+ * $/LicenseInfo$
+ */
+
+
+#include "llviewerprecompiledheaders.h"
+#include "llfloaterexperienceprofile.h"
+
+#include "llagent.h"
+#include "llappviewer.h"
+#include "llcheckboxctrl.h"
+#include "llcombobox.h"
+#include "llcommandhandler.h"
+#include "llexpandabletextbox.h"
+#include "llexperiencecache.h"
+#include "llfloaterreg.h"
+#include "lllayoutstack.h"
+#include "lllineeditor.h"
+#include "llnotificationsutil.h"
+#include "llsdserialize.h"
+#include "llslurl.h"
+#include "lltabcontainer.h"
+#include "lltextbox.h"
+#include "lltexturectrl.h"
+#include "lltrans.h"
+#include "llviewerregion.h"
+#include "llevents.h"
+#include "llfloatergroups.h"
+#include "llnotifications.h"
+#include "llfloaterreporter.h"
+
+#define XML_PANEL_EXPERIENCE_PROFILE "floater_experienceprofile.xml"
+#define TF_NAME "experience_title"
+#define TF_DESC "experience_description"
+#define TF_SLURL "LocationTextText"
+#define TF_MRKT "marketplace"
+#define TF_MATURITY "ContentRatingText"
+#define TF_OWNER "OwnerText"
+#define TF_GROUP "GroupText"
+#define TF_GRID_WIDE "grid_wide"
+#define TF_PRIVILEGED "privileged"
+#define EDIT "edit_"
+
+#define IMG_LOGO "logo"
+
+#define PNL_TOP "top panel"
+#define PNL_IMAGE "image_panel"
+#define PNL_DESC "description panel"
+#define PNL_LOC "location panel"
+#define PNL_MRKT "marketplace panel"
+#define PNL_GROUP "group_panel"
+#define PNL_PERMS "perm panel"
+
+#define BTN_ALLOW "allow_btn"
+#define BTN_BLOCK "block_btn"
+#define BTN_CANCEL "cancel_btn"
+#define BTN_CLEAR_LOCATION "clear_btn"
+#define BTN_EDIT "edit_btn"
+#define BTN_ENABLE "enable_btn"
+#define BTN_FORGET "forget_btn"
+#define BTN_PRIVATE "private_btn"
+#define BTN_REPORT "report_btn"
+#define BTN_SAVE "save_btn"
+#define BTN_SET_GROUP "Group_btn"
+#define BTN_SET_LOCATION "location_btn"
+
+
+class LLExperienceHandler : public LLCommandHandler
+{
+public:
+ LLExperienceHandler() : LLCommandHandler("experience", UNTRUSTED_THROTTLE) { }
+
+ bool handle(const LLSD& params,
+ const LLSD& query_map,
+ const std::string& grid,
+ LLMediaCtrl* web)
+ {
+ if(params.size() != 2 || params[1].asString() != "profile")
+ return false;
+
+ LLExperienceCache::instance().get(params[0].asUUID(), boost::bind(&LLExperienceHandler::experienceCallback, this, _1));
+ return true;
+ }
+
+ void experienceCallback(const LLSD& experienceDetails)
+ {
+ if(!experienceDetails.has(LLExperienceCache::MISSING))
+ {
+ LLFloaterReg::showInstance("experience_profile", experienceDetails[LLExperienceCache::EXPERIENCE_ID].asUUID(), true);
+ }
+ }
+};
+
+LLExperienceHandler gExperienceHandler;
+
+
+LLFloaterExperienceProfile::LLFloaterExperienceProfile(const LLSD& data)
+ : LLFloater(data)
+ , mSaveCompleteAction(NOTHING)
+ , mDirty(false)
+ , mForceClose(false)
+{
+ if (data.has("experience_id"))
+ {
+ mExperienceId = data["experience_id"].asUUID();
+ mPostEdit = data.has("edit_experience") && data["edit_experience"].asBoolean();
+ }
+ else
+ {
+ mExperienceId = data.asUUID();
+ mPostEdit = false;
+ }
+}
+
+
+LLFloaterExperienceProfile::~LLFloaterExperienceProfile()
+{
+
+}
+
+bool LLFloaterExperienceProfile::postBuild()
+{
+
+ if (mExperienceId.notNull())
+ {
+ LLExperienceCache::instance().fetch(mExperienceId, true);
+ LLExperienceCache::instance().get(mExperienceId, boost::bind(&LLFloaterExperienceProfile::experienceCallback,
+ getDerivedHandle<LLFloaterExperienceProfile>(), _1));
+
+ LLViewerRegion* region = gAgent.getRegion();
+ if (region)
+ {
+ LLExperienceCache::instance().getExperienceAdmin(mExperienceId, boost::bind(
+ &LLFloaterExperienceProfile::experienceIsAdmin, getDerivedHandle<LLFloaterExperienceProfile>(), _1));
+ }
+ }
+
+ childSetAction(BTN_EDIT, boost::bind(&LLFloaterExperienceProfile::onClickEdit, this));
+ childSetAction(BTN_ALLOW, boost::bind(&LLFloaterExperienceProfile::onClickPermission, this, "Allow"));
+ childSetAction(BTN_FORGET, boost::bind(&LLFloaterExperienceProfile::onClickForget, this));
+ childSetAction(BTN_BLOCK, boost::bind(&LLFloaterExperienceProfile::onClickPermission, this, "Block"));
+ childSetAction(BTN_CANCEL, boost::bind(&LLFloaterExperienceProfile::onClickCancel, this));
+ childSetAction(BTN_SAVE, boost::bind(&LLFloaterExperienceProfile::onClickSave, this));
+ childSetAction(BTN_SET_LOCATION, boost::bind(&LLFloaterExperienceProfile::onClickLocation, this));
+ childSetAction(BTN_CLEAR_LOCATION, boost::bind(&LLFloaterExperienceProfile::onClickClear, this));
+ childSetAction(BTN_SET_GROUP, boost::bind(&LLFloaterExperienceProfile::onPickGroup, this));
+ childSetAction(BTN_REPORT, boost::bind(&LLFloaterExperienceProfile::onReportExperience, this));
+
+ getChild<LLTextEditor>(EDIT TF_DESC)->setKeystrokeCallback(boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this));
+ getChild<LLUICtrl>(EDIT TF_MATURITY)->setCommitCallback(boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this));
+ getChild<LLLineEditor>(EDIT TF_MRKT)->setKeystrokeCallback(boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
+ getChild<LLLineEditor>(EDIT TF_NAME)->setKeystrokeCallback(boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
+
+ childSetCommitCallback(EDIT BTN_ENABLE, boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
+ childSetCommitCallback(EDIT BTN_PRIVATE, boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
+
+ childSetCommitCallback(EDIT IMG_LOGO, boost::bind(&LLFloaterExperienceProfile::onFieldChanged, this), NULL);
+
+ getChild<LLTextEditor>(EDIT TF_DESC)->setCommitOnFocusLost(true);
+
+
+ LLEventPumps::instance().obtain("experience_permission").listen(mExperienceId.asString()+"-profile",
+ boost::bind(&LLFloaterExperienceProfile::experiencePermission, getDerivedHandle<LLFloaterExperienceProfile>(this), _1));
+
+ if (mPostEdit && mExperienceId.notNull())
+ {
+ mPostEdit = false;
+ changeToEdit();
+ }
+
+ return true;
+}
+
+void LLFloaterExperienceProfile::experienceCallback(LLHandle<LLFloaterExperienceProfile> handle, const LLSD& experience )
+{
+ LLFloaterExperienceProfile* pllpep = handle.get();
+ if(pllpep)
+ {
+ pllpep->refreshExperience(experience);
+ }
+}
+
+
+bool LLFloaterExperienceProfile::experiencePermission( LLHandle<LLFloaterExperienceProfile> handle, const LLSD& permission )
+{
+ LLFloaterExperienceProfile* pllpep = handle.get();
+ if(pllpep)
+ {
+ pllpep->updatePermission(permission);
+ }
+ return false;
+}
+
+bool LLFloaterExperienceProfile::matchesKey(const LLSD& key)
+{
+ if (key.has("experience_id"))
+ {
+ return mExperienceId == key["experience_id"].asUUID();
+ }
+ else if (key.isUUID())
+ {
+ return mExperienceId == key.asUUID();
+ }
+ // Assume NULL uuid
+ return mExperienceId.isNull();
+}
+
+
+void LLFloaterExperienceProfile::onClickEdit()
+{
+ changeToEdit();
+}
+
+
+void LLFloaterExperienceProfile::onClickCancel()
+{
+ changeToView();
+}
+
+void LLFloaterExperienceProfile::onClickSave()
+{
+ doSave(NOTHING);
+}
+
+void LLFloaterExperienceProfile::onClickPermission(const char* perm)
+{
+ LLViewerRegion* region = gAgent.getRegion();
+ if (!region)
+ return;
+ LLExperienceCache::instance().setExperiencePermission(mExperienceId, perm, boost::bind(
+ &LLFloaterExperienceProfile::experiencePermissionResults, mExperienceId, _1));
+}
+
+
+void LLFloaterExperienceProfile::onClickForget()
+{
+ LLViewerRegion* region = gAgent.getRegion();
+ if (!region)
+ return;
+
+ LLExperienceCache::instance().forgetExperiencePermission(mExperienceId, boost::bind(
+ &LLFloaterExperienceProfile::experiencePermissionResults, mExperienceId, _1));
+}
+
+bool LLFloaterExperienceProfile::setMaturityString( U8 maturity, LLTextBox* child, LLComboBox* combo )
+{
+ LLStyle::Params style;
+ std::string access;
+ if(maturity <= SIM_ACCESS_PG)
+ {
+ style.image(LLUI::getUIImage(getString("maturity_icon_general")));
+ access = LLTrans::getString("SIM_ACCESS_PG");
+ combo->setCurrentByIndex(2);
+ }
+ else if(maturity <= SIM_ACCESS_MATURE)
+ {
+ style.image(LLUI::getUIImage(getString("maturity_icon_moderate")));
+ access = LLTrans::getString("SIM_ACCESS_MATURE");
+ combo->setCurrentByIndex(1);
+ }
+ else if(maturity <= SIM_ACCESS_ADULT)
+ {
+ style.image(LLUI::getUIImage(getString("maturity_icon_adult")));
+ access = LLTrans::getString("SIM_ACCESS_ADULT");
+ combo->setCurrentByIndex(0);
+ }
+ else
+ {
+ return false;
+ }
+
+ child->setText(LLStringUtil::null);
+
+ child->appendImageSegment(style);
+
+ child->appendText(access, false);
+
+ return true;
+}
+
+
+void LLFloaterExperienceProfile::refreshExperience( const LLSD& experience )
+{
+ mExperienceDetails = experience;
+ mPackage = experience;
+
+
+ LLLayoutPanel* imagePanel = getChild<LLLayoutPanel>(PNL_IMAGE);
+ LLLayoutPanel* descriptionPanel = getChild<LLLayoutPanel>(PNL_DESC);
+ LLLayoutPanel* locationPanel = getChild<LLLayoutPanel>(PNL_LOC);
+ LLLayoutPanel* marketplacePanel = getChild<LLLayoutPanel>(PNL_MRKT);
+ LLLayoutPanel* topPanel = getChild<LLLayoutPanel>(PNL_TOP);
+
+
+ imagePanel->setVisible(false);
+ descriptionPanel->setVisible(false);
+ locationPanel->setVisible(false);
+ marketplacePanel->setVisible(false);
+ topPanel->setVisible(false);
+
+
+ LLTextBox* child = getChild<LLTextBox>(TF_NAME);
+ //child->setText(experience[LLExperienceCache::NAME].asString());
+ child->setText(LLSLURL("experience", experience[LLExperienceCache::EXPERIENCE_ID], "profile").getSLURLString());
+
+ LLLineEditor* linechild = getChild<LLLineEditor>(EDIT TF_NAME);
+ linechild->setText(experience[LLExperienceCache::NAME].asString());
+
+ std::string value = experience[LLExperienceCache::DESCRIPTION].asString();
+ LLExpandableTextBox* exchild = getChild<LLExpandableTextBox>(TF_DESC);
+ exchild->setText(value);
+ descriptionPanel->setVisible(value.length()>0);
+
+ LLTextEditor* edit_child = getChild<LLTextEditor>(EDIT TF_DESC);
+ edit_child->setText(value);
+
+ mLocationSLURL = experience[LLExperienceCache::SLURL].asString();
+ child = getChild<LLTextBox>(TF_SLURL);
+ bool has_slurl = mLocationSLURL.length()>0;
+ locationPanel->setVisible(has_slurl);
+ mLocationSLURL = LLSLURL(mLocationSLURL).getSLURLString();
+ child->setText(mLocationSLURL);
+
+
+ child = getChild<LLTextBox>(EDIT TF_SLURL);
+ if(has_slurl)
+ {
+ child->setText(mLocationSLURL);
+ }
+ else
+ {
+ child->setText(getString("empty_slurl"));
+ }
+
+ setMaturityString((U8)(experience[LLExperienceCache::MATURITY].asInteger()), getChild<LLTextBox>(TF_MATURITY), getChild<LLComboBox>(EDIT TF_MATURITY));
+
+ LLUUID id = experience[LLExperienceCache::AGENT_ID].asUUID();
+ child = getChild<LLTextBox>(TF_OWNER);
+ value = LLSLURL("agent", id, "inspect").getSLURLString();
+ child->setText(value);
+
+
+ id = experience[LLExperienceCache::GROUP_ID].asUUID();
+ bool id_null = id.isNull();
+ child = getChild<LLTextBox>(TF_GROUP);
+ value = LLSLURL("group", id, "inspect").getSLURLString();
+ child->setText(value);
+ getChild<LLLayoutPanel>(PNL_GROUP)->setVisible(!id_null);
+
+ setEditGroup(id);
+
+ getChild<LLButton>(BTN_SET_GROUP)->setEnabled(experience[LLExperienceCache::AGENT_ID].asUUID() == gAgent.getID());
+
+ LLCheckBoxCtrl* enable = getChild<LLCheckBoxCtrl>(EDIT BTN_ENABLE);
+ S32 properties = mExperienceDetails[LLExperienceCache::PROPERTIES].asInteger();
+ enable->set(!(properties & LLExperienceCache::PROPERTY_DISABLED));
+
+ enable = getChild<LLCheckBoxCtrl>(EDIT BTN_PRIVATE);
+ enable->set(properties & LLExperienceCache::PROPERTY_PRIVATE);
+
+ topPanel->setVisible(true);
+ child=getChild<LLTextBox>(TF_GRID_WIDE);
+ child->setVisible(true);
+
+ if(properties & LLExperienceCache::PROPERTY_GRID)
+ {
+ child->setText(LLTrans::getString("Grid-Scope"));
+ }
+ else
+ {
+ child->setText(LLTrans::getString("Land-Scope"));
+ }
+
+ if(getChild<LLButton>(BTN_EDIT)->getVisible())
+ {
+ topPanel->setVisible(true);
+ }
+
+ if(properties & LLExperienceCache::PROPERTY_PRIVILEGED)
+ {
+ child = getChild<LLTextBox>(TF_PRIVILEGED);
+ child->setVisible(true);
+ }
+ else
+ {
+ LLViewerRegion* region = gAgent.getRegion();
+ if (region)
+ {
+ LLExperienceCache::instance().getExperiencePermission(mExperienceId, boost::bind(
+ &LLFloaterExperienceProfile::experiencePermissionResults, mExperienceId, _1));
+ }
+ }
+
+ value=experience[LLExperienceCache::METADATA].asString();
+ if(value.empty())
+ return;
+
+ LLPointer<LLSDParser> parser = new LLSDXMLParser();
+
+ LLSD data;
+
+ std::istringstream is(value);
+ if(LLSDParser::PARSE_FAILURE != parser->parse(is, data, value.size()))
+ {
+ value="";
+ if(data.has(TF_MRKT))
+ {
+ value=data[TF_MRKT].asString();
+
+ child = getChild<LLTextBox>(TF_MRKT);
+ child->setText(value);
+ if(value.size())
+ {
+ marketplacePanel->setVisible(true);
+ }
+ else
+ {
+ marketplacePanel->setVisible(false);
+ }
+ }
+ else
+ {
+ marketplacePanel->setVisible(false);
+ }
+
+ linechild = getChild<LLLineEditor>(EDIT TF_MRKT);
+ linechild->setText(value);
+
+ if(data.has(IMG_LOGO))
+ {
+ LLTextureCtrl* logo = getChild<LLTextureCtrl>(IMG_LOGO);
+
+ LLUUID id = data[IMG_LOGO].asUUID();
+ logo->setImageAssetID(id);
+ imagePanel->setVisible(true);
+
+ logo = getChild<LLTextureCtrl>(EDIT IMG_LOGO);
+ logo->setImageAssetID(data[IMG_LOGO].asUUID());
+
+ imagePanel->setVisible(id.notNull());
+ }
+ }
+ else
+ {
+ marketplacePanel->setVisible(false);
+ imagePanel->setVisible(false);
+ }
+
+ mDirty=false;
+ mForceClose = false;
+ getChild<LLButton>(BTN_SAVE)->setEnabled(mDirty);
+}
+
+void LLFloaterExperienceProfile::setPreferences( const LLSD& content )
+{
+ S32 properties = mExperienceDetails[LLExperienceCache::PROPERTIES].asInteger();
+ if(properties & LLExperienceCache::PROPERTY_PRIVILEGED)
+ {
+ return;
+ }
+
+ const LLSD& experiences = content["experiences"];
+ const LLSD& blocked = content["blocked"];
+
+
+ for(LLSD::array_const_iterator it = experiences.beginArray(); it != experiences.endArray() ; ++it)
+ {
+ if(it->asUUID()==mExperienceId)
+ {
+ experienceAllowed();
+ return;
+ }
+ }
+
+ for(LLSD::array_const_iterator it = blocked.beginArray(); it != blocked.endArray() ; ++it)
+ {
+ if(it->asUUID()==mExperienceId)
+ {
+ experienceBlocked();
+ return;
+ }
+ }
+
+ experienceForgotten();
+}
+
+void LLFloaterExperienceProfile::onFieldChanged()
+{
+ updatePackage();
+
+ if(!getChild<LLButton>(BTN_EDIT)->getVisible())
+ {
+ return;
+ }
+ LLSD::map_const_iterator st = mExperienceDetails.beginMap();
+ LLSD::map_const_iterator dt = mPackage.beginMap();
+
+ mDirty = false;
+ while( !mDirty && st != mExperienceDetails.endMap() && dt != mPackage.endMap())
+ {
+ mDirty = st->first != dt->first || st->second.asString() != dt->second.asString();
+ ++st;++dt;
+ }
+
+ if(!mDirty && (st != mExperienceDetails.endMap() || dt != mPackage.endMap()))
+ {
+ mDirty = true;
+ }
+
+ getChild<LLButton>(BTN_SAVE)->setEnabled(mDirty);
+}
+
+
+bool LLFloaterExperienceProfile::canClose()
+{
+ if(mForceClose || !mDirty)
+ {
+ return true;
+ }
+ else
+ {
+ // Bring up view-modal dialog: Save changes? Yes, No, Cancel
+ LLNotificationsUtil::add("SaveChanges", LLSD(), LLSD(), boost::bind(&LLFloaterExperienceProfile::handleSaveChangesDialog, this, _1, _2, CLOSE));
+ return false;
+ }
+}
+
+bool LLFloaterExperienceProfile::handleSaveChangesDialog( const LLSD& notification, const LLSD& response, PostSaveAction action )
+{
+ S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
+ switch( option )
+ {
+ case 0: // "Yes"
+ // close after saving
+ doSave( action );
+ break;
+
+ case 1: // "No"
+ if(action != NOTHING)
+ {
+ mForceClose = true;
+ if(action==CLOSE)
+ {
+ closeFloater();
+ }
+ else
+ {
+ changeToView();
+ }
+ }
+ break;
+
+ case 2: // "Cancel"
+ default:
+ // If we were quitting, we didn't really mean it.
+ LLAppViewer::instance()->abortQuit();
+ break;
+ }
+ return false;
+}
+
+void LLFloaterExperienceProfile::doSave( int success_action )
+{
+ mSaveCompleteAction=success_action;
+
+ LLViewerRegion* region = gAgent.getRegion();
+ if (!region)
+ return;
+
+ LLExperienceCache::instance().updateExperience(mPackage, boost::bind(
+ &LLFloaterExperienceProfile::experienceUpdateResult,
+ getDerivedHandle<LLFloaterExperienceProfile>(), _1));
+}
+
+void LLFloaterExperienceProfile::onSaveComplete( const LLSD& content )
+{
+ LLUUID id = getExperienceId();
+
+ if(content.has("removed"))
+ {
+ const LLSD& removed = content["removed"];
+ LLSD::map_const_iterator it = removed.beginMap();
+ for(/**/; it != removed.endMap(); ++it)
+ {
+ const std::string& field = it->first;
+ if(field == LLExperienceCache::EXPERIENCE_ID)
+ {
+ //this message should be removed by the experience api
+ continue;
+ }
+ const LLSD& data = it->second;
+ std::string error_tag = data["error_tag"].asString()+ "ExperienceProfileMessage";
+ LLSD fields;
+ if( LLNotifications::instance().getTemplate(error_tag))
+ {
+ fields["field"] = field;
+ fields["extra_info"] = data["extra_info"];
+ LLNotificationsUtil::add(error_tag, fields);
+ }
+ else
+ {
+ fields["MESSAGE"]=data["en"];
+ LLNotificationsUtil::add("GenericAlert", fields);
+ }
+ }
+ }
+
+ if(!content.has("experience_keys"))
+ {
+ LL_WARNS() << "LLFloaterExperienceProfile::onSaveComplete called with bad content" << LL_ENDL;
+ return;
+ }
+
+ const LLSD& experiences = content["experience_keys"];
+
+ LLSD::array_const_iterator it = experiences.beginArray();
+ if(it == experiences.endArray())
+ {
+ LL_WARNS() << "LLFloaterExperienceProfile::onSaveComplete called with empty content" << LL_ENDL;
+ return;
+ }
+
+ if(!it->has(LLExperienceCache::EXPERIENCE_ID) || ((*it)[LLExperienceCache::EXPERIENCE_ID].asUUID() != id))
+ {
+ LL_WARNS() << "LLFloaterExperienceProfile::onSaveComplete called with unexpected experience id" << LL_ENDL;
+ return;
+ }
+
+ refreshExperience(*it);
+ LLExperienceCache::instance().insert(*it);
+ LLExperienceCache::instance().fetch(id, true);
+
+ if(mSaveCompleteAction==VIEW)
+ {
+ LLTabContainer* tabs = getChild<LLTabContainer>("tab_container");
+ tabs->selectTabByName("panel_experience_info");
+ }
+ else if(mSaveCompleteAction == CLOSE)
+ {
+ closeFloater();
+ }
+}
+
+void LLFloaterExperienceProfile::changeToView()
+{
+ if(mForceClose || !mDirty)
+ {
+ refreshExperience(mExperienceDetails);
+ LLTabContainer* tabs = getChild<LLTabContainer>("tab_container");
+
+ tabs->selectTabByName("panel_experience_info");
+ }
+ else
+ {
+ // Bring up view-modal dialog: Save changes? Yes, No, Cancel
+ LLNotificationsUtil::add("SaveChanges", LLSD(), LLSD(), boost::bind(&LLFloaterExperienceProfile::handleSaveChangesDialog, this, _1, _2, VIEW));
+ }
+}
+
+void LLFloaterExperienceProfile::changeToEdit()
+{
+ LLTabContainer* tabs = getChild<LLTabContainer>("tab_container");
+
+ tabs->selectTabByName("edit_panel_experience_info");
+}
+
+void LLFloaterExperienceProfile::onClickLocation()
+{
+ LLViewerRegion* region = gAgent.getRegion();
+ if(region)
+ {
+ LLTextBox* child = getChild<LLTextBox>(EDIT TF_SLURL);
+ mLocationSLURL = LLSLURL(region->getName(), gAgent.getPositionGlobal()).getSLURLString();
+ child->setText(mLocationSLURL);
+ onFieldChanged();
+ }
+}
+
+void LLFloaterExperienceProfile::onClickClear()
+{
+ LLTextBox* child = getChild<LLTextBox>(EDIT TF_SLURL);
+ mLocationSLURL = "";
+ child->setText(getString("empty_slurl"));
+ onFieldChanged();
+}
+
+void LLFloaterExperienceProfile::updatePermission( const LLSD& permission )
+{
+ if(permission.has("experience"))
+ {
+ if(permission["experience"].asUUID() != mExperienceId)
+ {
+ return;
+ }
+
+ std::string str = permission[mExperienceId.asString()]["permission"].asString();
+ if(str == "Allow")
+ {
+ experienceAllowed();
+ }
+ else if(str == "Block")
+ {
+ experienceBlocked();
+ }
+ else if(str == "Forget")
+ {
+ experienceForgotten();
+ }
+ }
+ else
+ {
+ setPreferences(permission);
+ }
+}
+
+void LLFloaterExperienceProfile::experienceAllowed()
+{
+ LLButton* button=getChild<LLButton>(BTN_ALLOW);
+ button->setEnabled(false);
+
+ button=getChild<LLButton>(BTN_FORGET);
+ button->setEnabled(true);
+
+ button=getChild<LLButton>(BTN_BLOCK);
+ button->setEnabled(true);
+}
+
+void LLFloaterExperienceProfile::experienceForgotten()
+{
+ LLButton* button=getChild<LLButton>(BTN_ALLOW);
+ button->setEnabled(true);
+
+ button=getChild<LLButton>(BTN_FORGET);
+ button->setEnabled(false);
+
+ button=getChild<LLButton>(BTN_BLOCK);
+ button->setEnabled(true);
+}
+
+void LLFloaterExperienceProfile::experienceBlocked()
+{
+ LLButton* button=getChild<LLButton>(BTN_ALLOW);
+ button->setEnabled(true);
+
+ button=getChild<LLButton>(BTN_FORGET);
+ button->setEnabled(true);
+
+ button=getChild<LLButton>(BTN_BLOCK);
+ button->setEnabled(false);
+}
+
+void LLFloaterExperienceProfile::onClose( bool app_quitting )
+{
+ LLEventPumps::instance().obtain("experience_permission").stopListening(mExperienceId.asString()+"-profile");
+ LLFloater::onClose(app_quitting);
+}
+
+void LLFloaterExperienceProfile::updatePackage()
+{
+ mPackage[LLExperienceCache::NAME] = getChild<LLLineEditor>(EDIT TF_NAME)->getText();
+ mPackage[LLExperienceCache::DESCRIPTION] = getChild<LLTextEditor>(EDIT TF_DESC)->getText();
+ if(mLocationSLURL.empty())
+ {
+ mPackage[LLExperienceCache::SLURL] = LLStringUtil::null;
+ }
+ else
+ {
+ mPackage[LLExperienceCache::SLURL] = mLocationSLURL;
+ }
+
+ mPackage[LLExperienceCache::MATURITY] = getChild<LLComboBox>(EDIT TF_MATURITY)->getSelectedValue().asInteger();
+
+ LLSD metadata;
+
+ metadata[TF_MRKT] = getChild<LLLineEditor>(EDIT TF_MRKT)->getText();
+ metadata[IMG_LOGO] = getChild<LLTextureCtrl>(EDIT IMG_LOGO)->getImageAssetID();
+
+ LLPointer<LLSDXMLFormatter> formatter = new LLSDXMLFormatter();
+
+ std::ostringstream os;
+ if(formatter->format(metadata, os))
+ {
+ mPackage[LLExperienceCache::METADATA]=os.str();
+ }
+
+ int properties = mPackage[LLExperienceCache::PROPERTIES].asInteger();
+ LLCheckBoxCtrl* enable = getChild<LLCheckBoxCtrl>(EDIT BTN_ENABLE);
+ if(enable->get())
+ {
+ properties &= ~LLExperienceCache::PROPERTY_DISABLED;
+ }
+ else
+ {
+ properties |= LLExperienceCache::PROPERTY_DISABLED;
+ }
+
+ enable = getChild<LLCheckBoxCtrl>(EDIT BTN_PRIVATE);
+ if(enable->get())
+ {
+ properties |= LLExperienceCache::PROPERTY_PRIVATE;
+ }
+ else
+ {
+ properties &= ~LLExperienceCache::PROPERTY_PRIVATE;
+ }
+
+ mPackage[LLExperienceCache::PROPERTIES] = properties;
+}
+
+void LLFloaterExperienceProfile::onPickGroup()
+{
+ LLFloater* parent_floater = gFloaterView->getParentFloater(this);
+
+ LLFloaterGroupPicker* widget = LLFloaterReg::showTypedInstance<LLFloaterGroupPicker>("group_picker", LLSD(gAgent.getID()));
+ if (widget)
+ {
+ widget->setSelectGroupCallback(boost::bind(&LLFloaterExperienceProfile::setEditGroup, this, _1));
+ if (parent_floater)
+ {
+ LLRect new_rect = gFloaterView->findNeighboringPosition(parent_floater, widget);
+ widget->setOrigin(new_rect.mLeft, new_rect.mBottom);
+ parent_floater->addDependentFloater(widget);
+ }
+ }
+}
+
+void LLFloaterExperienceProfile::setEditGroup( LLUUID group_id )
+{
+ LLTextBox* child = getChild<LLTextBox>(EDIT TF_GROUP);
+ std::string value = LLSLURL("group", group_id, "inspect").getSLURLString();
+ child->setText(value);
+ mPackage[LLExperienceCache::GROUP_ID] = group_id;
+ onFieldChanged();
+}
+
+void LLFloaterExperienceProfile::onReportExperience()
+{
+ LLFloaterReporter::showFromExperience(mExperienceId);
+}
+
+/*static*/
+bool LLFloaterExperienceProfile::hasPermission(const LLSD& content, const std::string &name, const LLUUID &test)
+{
+ if (!content.has(name))
+ return false;
+
+ const LLSD& list = content[name];
+ LLSD::array_const_iterator it = list.beginArray();
+ while (it != list.endArray())
+ {
+ if (it->asUUID() == test)
+ {
+ return true;
+ }
+ ++it;
+ }
+ return false;
+}
+
+/*static*/
+void LLFloaterExperienceProfile::experiencePermissionResults(LLUUID exprienceId, LLSD result)
+{
+ std::string permission("Forget");
+ if (hasPermission(result, "experiences", exprienceId))
+ permission = "Allow";
+ else if (hasPermission(result, "blocked", exprienceId))
+ permission = "Block";
+
+ LLSD experience;
+ LLSD message;
+ experience["permission"] = permission;
+ message["experience"] = exprienceId;
+ message[exprienceId.asString()] = experience;
+
+ LLEventPumps::instance().obtain("experience_permission").post(message);
+}
+
+/*static*/
+void LLFloaterExperienceProfile::experienceIsAdmin(LLHandle<LLFloaterExperienceProfile> handle, const LLSD &result)
+{
+ LLFloaterExperienceProfile* parent = handle.get();
+ if (!parent)
+ return;
+
+ bool enabled = true;
+ LLViewerRegion* region = gAgent.getRegion();
+ if (!region)
+ {
+ enabled = false;
+ }
+ else
+ {
+ std::string url = region->getCapability("UpdateExperience");
+ if (url.empty())
+ enabled = false;
+ }
+ if (enabled && result["status"].asBoolean())
+ {
+ parent->getChild<LLLayoutPanel>(PNL_TOP)->setVisible(true);
+ parent->getChild<LLButton>(BTN_EDIT)->setVisible(true);
+ }
+}
+
+/*static*/
+void LLFloaterExperienceProfile::experienceUpdateResult(LLHandle<LLFloaterExperienceProfile> handle, const LLSD &result)
+{
+ LLFloaterExperienceProfile* parent = handle.get();
+ if (parent)
+ {
+ parent->onSaveComplete(result);
+ }
+}