summaryrefslogtreecommitdiff
path: root/indra/newview/llpanelgroupcreate.cpp
blob: 4a370525fffcb18ffe97d7c5160eaeb58f00a230 (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
/**
 * @file llpanelgroupcreate.cpp
 *
 * $LicenseInfo:firstyear=2019&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2019, 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 "llpanelgroupcreate.h"

// UI includes
#include "llbutton.h"
#include "llcheckboxctrl.h"
#include "llcombobox.h"
#include "llfloatersidepanelcontainer.h"
#include "llsidetraypanelcontainer.h"
#include "llscrolllistctrl.h"
#include "llspinctrl.h"
#include "lltextbox.h"
#include "lltexteditor.h"
#include "lltexturectrl.h"
#include "lluictrlfactory.h"

// Viewer includes
#include "llagentbenefits.h"
#include "llfloaterreg.h"
#include "llfloater.h"
#include "llgroupmgr.h"
#include "llstatusbar.h" // to re-request balance
#include "lltrans.h"
#include "llnotificationsutil.h"
#include "lluicolortable.h"


const S32 MATURE_CONTENT = 1;
const S32 NON_MATURE_CONTENT = 2;
const S32 DECLINE_TO_STATE = 0;

static LLPanelInjector<LLPanelGroupCreate> t_panel_group_creation("panel_group_creation_sidetray");

LLPanelGroupCreate::LLPanelGroupCreate()
:    LLPanel()
{
}

LLPanelGroupCreate::~LLPanelGroupCreate()
{
}

bool LLPanelGroupCreate::postBuild()
{
    childSetCommitCallback("back", boost::bind(&LLPanelGroupCreate::onBackBtnClick, this), NULL);

    mComboMature = getChild<LLComboBox>("group_mature_check", true);
    mCtrlOpenEnrollment = getChild<LLCheckBoxCtrl>("open_enrollement", true);
    mCtrlEnrollmentFee = getChild<LLCheckBoxCtrl>("check_enrollment_fee", true);
    mEditCharter = getChild<LLTextEditor>("charter", true);
    mSpinEnrollmentFee = getChild<LLSpinCtrl>("spin_enrollment_fee", true);
    mMembershipList = getChild<LLScrollListCtrl>("membership_list", true);

    mCreateButton = getChild<LLButton>("btn_create", true);
    mCreateButton->setCommitCallback(boost::bind(&LLPanelGroupCreate::onBtnCreate, this));

    mGroupNameEditor = getChild<LLLineEditor>("group_name_editor", true);
    mGroupNameEditor->setPrevalidate(LLTextValidate::validateASCIINoLeadingSpace);

    mInsignia = getChild<LLTextureCtrl>("insignia", true);
    mInsignia->setAllowLocalTexture(false);
    mInsignia->setCanApplyImmediately(false);

    return true;
}

void LLPanelGroupCreate::onOpen(const LLSD& key)
{
    mInsignia->setImageAssetID(LLUUID::null);
    mInsignia->setImageAssetName(mInsignia->getDefaultImageName());
    mGroupNameEditor->clear();
    mEditCharter->clear();
    mSpinEnrollmentFee->set(0.f);
    mCtrlEnrollmentFee->set(false);
    mCtrlOpenEnrollment->set(false);
    mMembershipList->clearRows();

    // populate list
    addMembershipRow("Base");
    addMembershipRow("Premium");
    addMembershipRow("Premium_Plus");
    addMembershipRow("Internal");// Present only if you are already in one, needed for testing

    S32 cost = LLAgentBenefitsMgr::current().getCreateGroupCost();
    mCreateButton->setLabelArg("[COST]", llformat("%d", cost));
}

//static
void LLPanelGroupCreate::refreshCreatedGroup(const LLUUID& group_id)
{
    LLSD params;
    params["group_id"] = group_id;
    params["open_tab_name"] = "panel_group_info_sidetray";
    LLFloaterSidePanelContainer::showPanel("people", "panel_group_info_sidetray", params);
    LLStatusBar::sendMoneyBalanceRequest();
}

void LLPanelGroupCreate::addMembershipRow(const std::string &name)
{
    if (LLAgentBenefitsMgr::has(name))
    {
        bool is_current = LLAgentBenefitsMgr::isCurrent(name);

        LLScrollListItem::Params item_params;
        LLScrollListCell::Params cell_params;
        cell_params.font = LLFontGL::getFontSansSerif();
        // Start out right justifying numeric displays
        cell_params.font_halign = LLFontGL::LEFT;
        if (is_current)
        {
            cell_params.color = LLUIColorTable::instance().getColor("DrYellow");
        }

        cell_params.column = "clmn_name";
        std::string mem_str = name + "Membership";
        if (is_current)
        {
            cell_params.value = LLTrans::getString(mem_str) + " " + getString("current_membership");
        }
        else
        {
            cell_params.value = LLTrans::getString(mem_str);
        }
        item_params.columns.add(cell_params);
        cell_params.column = "clmn_price";
        cell_params.value = llformat("L$ %d",LLAgentBenefitsMgr::get(name).getCreateGroupCost());
        item_params.columns.add(cell_params);
        mMembershipList->addRow(item_params);
    }
}

void LLPanelGroupCreate::onBackBtnClick()
{
    LLSideTrayPanelContainer* parent = dynamic_cast<LLSideTrayPanelContainer*>(getParent());
    if(parent)
    {
        parent->openPreviousPanel();
    }
}

bool LLPanelGroupCreate::confirmMatureApply(const LLSD& notification, const LLSD& response)
{
    S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
    // 0 == Yes
    // 1 == No
    // 2 == Cancel
    switch (option)
    {
    case 0:
        mComboMature->setCurrentByIndex(MATURE_CONTENT);
        createGroup();
        break;
    case 1:
        mComboMature->setCurrentByIndex(NON_MATURE_CONTENT);
        createGroup();
        break;
    default:
        break;
    }

    return true;
}

void LLPanelGroupCreate::onBtnCreate()
{
    LL_INFOS() << "Validating group creation" << LL_ENDL;

    // Validate the group name length.
    std::string gr_name = mGroupNameEditor->getText();
    LLStringUtil::trim(gr_name);
    S32 group_name_len = static_cast<S32>(gr_name.size());
    if (group_name_len < DB_GROUP_NAME_MIN_LEN
        || group_name_len > DB_GROUP_NAME_STR_LEN)
    {
        LLSD args;
        args["MIN_LEN"] = DB_GROUP_NAME_MIN_LEN;
        args["MAX_LEN"] = DB_GROUP_NAME_STR_LEN;
        LLNotificationsUtil::add("GroupNameLengthWarning", args);
    }
    else
    // Check to make sure mature has been set
    if (mComboMature &&
        mComboMature->getCurrentIndex() == DECLINE_TO_STATE)
    {
        LLNotificationsUtil::add("SetGroupMature", LLSD(), LLSD(),
            boost::bind(&LLPanelGroupCreate::confirmMatureApply, this, _1, _2));
    }
    else
    {
        createGroup();
    }
}

void LLPanelGroupCreate::createGroup()
{
    LL_INFOS() << "Creating group" << LL_ENDL;

    U32 enrollment_fee = (mCtrlEnrollmentFee->get() ?
        (U32)mSpinEnrollmentFee->get() : 0);
    LLUUID insignia_id = mInsignia->getImageItemID().isNull() ? LLUUID::null : mInsignia->getImageAssetID();

    std::string gr_name = mGroupNameEditor->getText();
    LLStringUtil::trim(gr_name);
    LLGroupMgr::getInstance()->sendCreateGroupRequest(gr_name,
        mEditCharter->getText(),
        true,
        insignia_id,
        enrollment_fee,
        mCtrlOpenEnrollment->get(),
        false,
        mComboMature->getCurrentIndex() == MATURE_CONTENT);
}