summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterperms.cpp
blob: 7311f0deb65cf4cf8248e2b54a49ed02749a0b25 (plain)
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
/**
 * @file llfloaterperms.cpp
 * @brief Asset creation permission preferences.
 * @author Jonathan Yap
 *
 * $LicenseInfo:firstyear=2001&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2010, 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 "llcheckboxctrl.h"
#include "llfloaterperms.h"
#include "llviewercontrol.h"
#include "llviewerwindow.h"
#include "lluictrlfactory.h"
#include "llpermissions.h"
#include "llagent.h"
#include "llviewerregion.h"
#include "llnotificationsutil.h"
#include "llsdserialize.h"
#include "llvoavatar.h"
#include "llcorehttputil.h"
#include "lleventfilter.h"
#include "lleventcoro.h"

LLFloaterPerms::LLFloaterPerms(const LLSD& seed)
: LLFloater(seed)
{
}

bool LLFloaterPerms::postBuild()
{
    return true;
}

//static
U32 LLFloaterPerms::getGroupPerms(std::string prefix)
{
    return gSavedSettings.getBOOL(prefix+"ShareWithGroup") ? PERM_COPY | PERM_MOVE | PERM_MODIFY : PERM_NONE;
}

//static
U32 LLFloaterPerms::getEveryonePerms(std::string prefix)
{
    return gSavedSettings.getBOOL(prefix+"EveryoneCopy") ? PERM_COPY : PERM_NONE;
}

//static
U32 LLFloaterPerms::getNextOwnerPerms(std::string prefix)
{
    U32 flags = PERM_MOVE;
    if ( gSavedSettings.getBOOL(prefix+"NextOwnerCopy") )
    {
        flags |= PERM_COPY;
    }
    if ( gSavedSettings.getBOOL(prefix+"NextOwnerModify") )
    {
        flags |= PERM_MODIFY;
    }
    if ( gSavedSettings.getBOOL(prefix+"NextOwnerTransfer") )
    {
        flags |= PERM_TRANSFER;
    }
    return flags;
}

//static
U32 LLFloaterPerms::getNextOwnerPermsInverted(std::string prefix)
{
    // Sets bits for permissions that are off
    U32 flags = PERM_MOVE;
    if ( !gSavedSettings.getBOOL(prefix+"NextOwnerCopy") )
    {
        flags |= PERM_COPY;
    }
    if ( !gSavedSettings.getBOOL(prefix+"NextOwnerModify") )
    {
        flags |= PERM_MODIFY;
    }
    if ( !gSavedSettings.getBOOL(prefix+"NextOwnerTransfer") )
    {
        flags |= PERM_TRANSFER;
    }
    return flags;
}

static bool mCapSent = false;

LLFloaterPermsDefault::LLFloaterPermsDefault(const LLSD& seed)
    : LLFloater(seed)
{
    mCommitCallbackRegistrar.add("PermsDefault.Copy", boost::bind(&LLFloaterPermsDefault::onCommitCopy, this, _2));
    mCommitCallbackRegistrar.add("PermsDefault.OK", boost::bind(&LLFloaterPermsDefault::onClickOK, this));
    mCommitCallbackRegistrar.add("PermsDefault.Cancel", boost::bind(&LLFloaterPermsDefault::onClickCancel, this));
}


// String equivalents of enum Categories - initialization order must match enum order!
const std::string LLFloaterPermsDefault::sCategoryNames[CAT_LAST] =
{
    "Objects",
    "Uploads",
    "Scripts",
    "Notecards",
    "Gestures",
    "Wearables",
    "Settings",
    "Materials"
};

bool LLFloaterPermsDefault::postBuild()
{
    if(!gSavedSettings.getBOOL("DefaultUploadPermissionsConverted"))
    {
        gSavedSettings.setBOOL("UploadsEveryoneCopy", gSavedSettings.getBOOL("EveryoneCopy"));
        gSavedSettings.setBOOL("UploadsNextOwnerCopy", gSavedSettings.getBOOL("NextOwnerCopy"));
        gSavedSettings.setBOOL("UploadsNextOwnerModify", gSavedSettings.getBOOL("NextOwnerModify"));
        gSavedSettings.setBOOL("UploadsNextOwnerTransfer", gSavedSettings.getBOOL("NextOwnerTransfer"));
        gSavedSettings.setBOOL("UploadsShareWithGroup", gSavedSettings.getBOOL("ShareWithGroup"));
        gSavedSettings.setBOOL("DefaultUploadPermissionsConverted", true);
    }

    mCloseSignal.connect(boost::bind(&LLFloaterPermsDefault::cancel, this));

    refresh();

    return true;
}

void LLFloaterPermsDefault::onClickOK()
{
    ok();
    closeFloater();
}

void LLFloaterPermsDefault::onClickCancel()
{
    cancel();
    closeFloater();
}

void LLFloaterPermsDefault::onCommitCopy(const LLSD& user_data)
{
    // Implements fair use
    std::string prefix = user_data.asString();

    bool copyable = gSavedSettings.getBOOL(prefix+"NextOwnerCopy");
    if(!copyable)
    {
        gSavedSettings.setBOOL(prefix+"NextOwnerTransfer", true);
    }
    LLCheckBoxCtrl* xfer = getChild<LLCheckBoxCtrl>(prefix+"_transfer");
    xfer->setEnabled(copyable);
}

constexpr int MAX_HTTP_RETRIES = 5;
constexpr float RETRY_TIMEOUT = 5.0;

void LLFloaterPermsDefault::sendInitialPerms()
{
    if(!mCapSent)
    {
        updateCap();
    }
}

void LLFloaterPermsDefault::updateCap()
{
    if (!gAgent.getRegion())
    {
        LL_WARNS("Avatar") << "Region not set, cannot request capability update" << LL_ENDL;
        return;
    }
    std::string object_url = gAgent.getRegion()->getCapability("AgentPreferences");

    if(!object_url.empty())
    {
        LLCoros::instance().launch("LLFloaterPermsDefault::updateCapCoro",
            boost::bind(&LLFloaterPermsDefault::updateCapCoro, object_url));
    }
    else
    {
        LL_DEBUGS("ObjectPermissionsFloater") << "AgentPreferences cap not available." << LL_ENDL;
    }
}

/*static*/
void LLFloaterPermsDefault::updateCapCoro(std::string url)
{
    int retryCount = 0;
    std::string previousReason;
    LLCore::HttpRequest::policy_t httpPolicy(LLCore::HttpRequest::DEFAULT_POLICY_ID);
    LLCoreHttpUtil::HttpCoroutineAdapter::ptr_t
        httpAdapter(new LLCoreHttpUtil::HttpCoroutineAdapter("genericPostCoro", httpPolicy));
    LLCore::HttpRequest::ptr_t httpRequest(new LLCore::HttpRequest);

    LLSD postData = LLSD::emptyMap();
    postData["default_object_perm_masks"]["Group"] =
        (LLSD::Integer)LLFloaterPerms::getGroupPerms(sCategoryNames[CAT_OBJECTS]);
    postData["default_object_perm_masks"]["Everyone"] =
        (LLSD::Integer)LLFloaterPerms::getEveryonePerms(sCategoryNames[CAT_OBJECTS]);
    postData["default_object_perm_masks"]["NextOwner"] =
        (LLSD::Integer)LLFloaterPerms::getNextOwnerPerms(sCategoryNames[CAT_OBJECTS]);

    {
        LL_DEBUGS("ObjectPermissionsFloater") << "Sending default permissions to '"
            << url << "'\n";
        std::ostringstream sent_perms_log;
        LLSDSerialize::toPrettyXML(postData, sent_perms_log);
        LL_CONT << sent_perms_log.str() << LL_ENDL;
    }

    while (true)
    {
        ++retryCount;
        LLSD result = httpAdapter->postAndSuspend(httpRequest, url, postData);

        LLSD httpResults = result[LLCoreHttpUtil::HttpCoroutineAdapter::HTTP_RESULTS];
        LLCore::HttpStatus status = LLCoreHttpUtil::HttpCoroutineAdapter::getStatusFromLLSD(httpResults);

        if (!status)
        {
            const std::string& reason = status.toString();
            // Do not display the same error more than once in a row
            if ((reason != previousReason) && mCapSent)
            {
                previousReason = reason;
                LLSD args;
                args["REASON"] = reason;
                LLNotificationsUtil::add("DefaultObjectPermissions", args);
            }

            llcoro::suspendUntilTimeout(RETRY_TIMEOUT);
            if (retryCount < MAX_HTTP_RETRIES)
                continue;

            LL_WARNS("ObjectPermissionsFloater") << "Unable to send default permissions.  Giving up for now." << LL_ENDL;
            return;
        }
        break;
    }

    // Since we have had a successful POST call be sure to display the next error message
    // even if it is the same as a previous one.
    previousReason.clear();
    LLFloaterPermsDefault::setCapSent(true);
    LL_INFOS("ObjectPermissionsFloater") << "Default permissions successfully sent to simulator" << LL_ENDL;
}

void LLFloaterPermsDefault::setCapSent(bool cap_sent)
{
    mCapSent = cap_sent;
}

void LLFloaterPermsDefault::ok()
{
//  Changes were already applied automatically to saved settings.
//  Refreshing internal values makes it official.
    refresh();

// We know some setting has changed but not which one.  Just in case it was a setting for
// object permissions tell the server what the values are.
    updateCap();
}

void LLFloaterPermsDefault::cancel()
{
    for (U32 iter = CAT_OBJECTS; iter < CAT_LAST; iter++)
    {
        gSavedSettings.setBOOL(sCategoryNames[iter]+"NextOwnerCopy",        mNextOwnerCopy[iter]);
        gSavedSettings.setBOOL(sCategoryNames[iter]+"NextOwnerModify",      mNextOwnerModify[iter]);
        gSavedSettings.setBOOL(sCategoryNames[iter]+"NextOwnerTransfer",    mNextOwnerTransfer[iter]);
        gSavedSettings.setBOOL(sCategoryNames[iter]+"ShareWithGroup",       mShareWithGroup[iter]);
        gSavedSettings.setBOOL(sCategoryNames[iter]+"EveryoneCopy",         mEveryoneCopy[iter]);
    }
}

void LLFloaterPermsDefault::refresh()
{
    for (U32 iter = CAT_OBJECTS; iter < CAT_LAST; iter++)
    {
        mShareWithGroup[iter]    = gSavedSettings.getBOOL(sCategoryNames[iter]+"ShareWithGroup");
        mEveryoneCopy[iter]      = gSavedSettings.getBOOL(sCategoryNames[iter]+"EveryoneCopy");
        mNextOwnerCopy[iter]     = gSavedSettings.getBOOL(sCategoryNames[iter]+"NextOwnerCopy");
        mNextOwnerModify[iter]   = gSavedSettings.getBOOL(sCategoryNames[iter]+"NextOwnerModify");
        mNextOwnerTransfer[iter] = gSavedSettings.getBOOL(sCategoryNames[iter]+"NextOwnerTransfer");
    }
}