/indra/newview/llfloatermodeluploadbase.cpp
C++ | 58 lines | 27 code | 5 blank | 26 comment | 1 complexity | f74cfdea4673462db4a148e710ae0830 MD5 | raw file
Possible License(s): LGPL-2.1
- /**
- * @file llfloatermodeluploadbase.cpp
- * @brief LLFloaterUploadModelBase class definition
- *
- * $LicenseInfo:firstyear=2011&license=viewerlgpl$
- * Second Life Viewer Source Code
- * Copyright (C) 2011, 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 "llfloatermodeluploadbase.h"
- #include "llagent.h"
- #include "llviewerregion.h"
- #include "llnotificationsutil.h"
- LLFloaterModelUploadBase::LLFloaterModelUploadBase(const LLSD& key)
- :LLFloater(key),
- mHasUploadPerm(false)
- {
- }
- void LLFloaterModelUploadBase::requestAgentUploadPermissions()
- {
- std::string capability = "MeshUploadFlag";
- std::string url = gAgent.getRegion()->getCapability(capability);
- if (!url.empty())
- {
- llinfos<< typeid(*this).name() <<"::requestAgentUploadPermissions() requesting for upload model permissions from: "<< url <<llendl;
- LLHTTPClient::get(url, new LLUploadModelPremissionsResponder(getPermObserverHandle()));
- }
- else
- {
- LLSD args;
- args["CAPABILITY"] = capability;
- LLNotificationsUtil::add("RegionCapabilityRequestError", args);
- // BAP HACK avoid being blocked by broken server side stuff
- mHasUploadPerm = true;
- }
- }