summaryrefslogtreecommitdiff
path: root/indra/newview/llcurrencyuimanager.cpp
blob: 8a4ab091a3a272b3f952330eb4f3a50c43a62cc0 (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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
/**
 * @file llcurrencyuimanager.cpp
 * @brief LLCurrencyUIManager class implementation
 *
 * $LicenseInfo:firstyear=2006&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 "lluictrlfactory.h"
#include "lltextbox.h"
#include "lllineeditor.h"
#include "llresmgr.h" // for LLLocale
#include "lltrans.h"
#include "llviewercontrol.h"
#include "llversioninfo.h"

#include "llcurrencyuimanager.h"

// viewer includes
#include "llagent.h"
#include "llconfirmationmanager.h"
#include "llframetimer.h"
#include "lllineeditor.h"
#include "llviewchildren.h"
#include "llxmlrpctransaction.h"
#include "llviewernetwork.h"
#include "llpanel.h"
#include "stringize.h"


const F64 CURRENCY_ESTIMATE_FREQUENCY = 2.0;
    // how long of a pause in typing a currency buy amount before an
    // esimate is fetched from the server

class LLCurrencyUIManager::Impl
{
public:
    Impl(LLPanel& dialog);
    virtual ~Impl();

    LLPanel&        mPanel;

    bool            mHidden;

    bool            mError;
    std::string     mErrorMessage;
    std::string     mErrorURI;

    std::string     mZeroMessage;

    // user's choices
    S32             mUserCurrencyBuy;
    bool            mUserEnteredCurrencyBuy;

    // from website

    // pre-viewer 2.0, the server returned estimates as an
    // integer US cents value, e.g., "1000" for $10.00
    // post-viewer 2.0, the server may also return estimates
    // as a string with currency embedded, e.g., "10.00 Euros"
    bool            mUSDCurrencyEstimated;
    S32             mUSDCurrencyEstimatedCost;
    bool            mLocalCurrencyEstimated;
    std::string     mLocalCurrencyEstimatedCost;
    bool            mSupportsInternationalBilling;
    std::string     mSiteConfirm;

    bool            mBought;

    enum TransactionType
    {
        TransactionNone,
        TransactionCurrency,
        TransactionBuy
    };

    TransactionType      mTransactionType;
    LLXMLRPCTransaction* mTransaction;

    bool         mCurrencyChanged;
    LLFrameTimer mCurrencyKeyTimer;


    void updateCurrencyInfo();
    void finishCurrencyInfo();

    void startCurrencyBuy(const std::string& password);
    void finishCurrencyBuy();

    void clearEstimate();
    bool hasEstimate() const;
    std::string getLocalEstimate() const;

    void startTransaction(TransactionType type, const char* method, const LLSD& params);

    // return true if update needed
    bool checkTransaction();

    void setError(const std::string& message, const std::string& uri);
    void clearError();

    // return true if update needed
    bool considerUpdateCurrency();

    void currencyKey(S32);
    static void onCurrencyKey(LLLineEditor* caller, void* data);

    void prepare();
    void updateUI();
};

// is potentially not fully constructed.
LLCurrencyUIManager::Impl::Impl(LLPanel& dialog)
    : mPanel(dialog),
    mHidden(false),
    mError(false),
    mUserCurrencyBuy(2000), // note, this is a default, real value set in llfloaterbuycurrency.cpp
    mUserEnteredCurrencyBuy(false),
    mSupportsInternationalBilling(false),
    mBought(false),
    mTransactionType(TransactionNone), mTransaction(0),
    mCurrencyChanged(false)
{
    clearEstimate();
}

LLCurrencyUIManager::Impl::~Impl()
{
    delete mTransaction;
}

void LLCurrencyUIManager::Impl::updateCurrencyInfo()
{
    clearEstimate();
    mBought = false;
    mCurrencyChanged = false;

    if (mUserCurrencyBuy == 0)
    {
        mLocalCurrencyEstimated = true;
        return;
    }

    const LLVersionInfo& vi(LLVersionInfo::instance());

    LLSD params = LLSD::emptyMap();
    params["agentId"] = gAgent.getID().asString();
    params["secureSessionId"] = gAgent.getSecureSessionID().asString();
    params["language"] = LLUI::getLanguage();
    params["currencyBuy"] = mUserCurrencyBuy;
    params["viewerChannel"] = vi.getChannel();
    params["viewerMajorVersion"] = vi.getMajor();
    params["viewerMinorVersion"] = vi.getMinor();
    params["viewerPatchVersion"] = vi.getPatch();
    // With GitHub builds, the build number is too big to fit in a 32-bit int,
    // and XMLRPC value doesn't deal with integers wider than int. Use string.
    params["viewerBuildVersion"] = std::to_string(vi.getBuild());

    startTransaction(TransactionCurrency, "getCurrencyQuote", params);
}

void LLCurrencyUIManager::Impl::finishCurrencyInfo()
{
    const LLSD& result = mTransaction->response();

    bool success = result["success"].asBoolean();
    if (!success)
    {
        setError(
            result["errorMessage"].asString(),
            result["errorURI"].asString()
        );
        return;
    }

    const LLSD& currency = result["currency"];

    // old XML-RPC server: estimatedCost = value in US cents
    mUSDCurrencyEstimated = currency.has("estimatedCost");
    if (mUSDCurrencyEstimated)
    {
        mUSDCurrencyEstimatedCost = currency["estimatedCost"].asInteger();
    }

    // newer XML-RPC server: estimatedLocalCost = local currency string
    mLocalCurrencyEstimated = currency.has("estimatedLocalCost");
    if (mLocalCurrencyEstimated)
    {
        mLocalCurrencyEstimatedCost = currency["estimatedLocalCost"].asString();
        mSupportsInternationalBilling = true;
    }

    S32 newCurrencyBuy = currency["currencyBuy"].asInteger();
    if (newCurrencyBuy != mUserCurrencyBuy)
    {
        mUserCurrencyBuy = newCurrencyBuy;
        mUserEnteredCurrencyBuy = false;
    }

    mSiteConfirm = result["confirm"].asString();
}

void LLCurrencyUIManager::Impl::startCurrencyBuy(const std::string& password)
{
    const LLVersionInfo& vi(LLVersionInfo::instance());

    LLSD params = LLSD::emptyMap();
    params["agentId"] = gAgent.getID().asString();
    params["secureSessionId"] = gAgent.getSecureSessionID().asString();
    params["language"] = LLUI::getLanguage();
    params["currencyBuy"] = mUserCurrencyBuy;
    params["confirm"] = mSiteConfirm;
    params["viewerChannel"] = vi.getChannel();
    params["viewerMajorVersion"] = vi.getMajor();
    params["viewerMinorVersion"] = vi.getMinor();
    params["viewerPatchVersion"] = vi.getPatch();
    // With GitHub builds, the build number is too big to fit in a 32-bit int,
    // and XMLRPC value doesn't deal with integers wider than int. Use string.
    params["viewerBuildVersion"] = std::to_string(vi.getBuild());

    if (mUSDCurrencyEstimated)
    {
        params["estimatedCost"] = mUSDCurrencyEstimatedCost;
    }

    if (mLocalCurrencyEstimated)
    {
        params["estimatedLocalCost"] = mLocalCurrencyEstimatedCost;
    }

    if (!password.empty())
    {
        params["password"] = password;
    }

    startTransaction(TransactionBuy, "buyCurrency", params);

    clearEstimate();
    mCurrencyChanged = false;
}

void LLCurrencyUIManager::Impl::finishCurrencyBuy()
{
    const LLSD& result = mTransaction->response();

    bool success = result["success"].asBoolean();
    if (!success)
    {
        setError(
            result["errorMessage"].asString(),
            result["errorURI"].asString()
        );
    }
    else
    {
        mUserCurrencyBuy = 0;
        mUserEnteredCurrencyBuy = false;
        mBought = true;
    }
}

void LLCurrencyUIManager::Impl::startTransaction(TransactionType type,
        const char* method, const LLSD& params)
{
    static std::string transactionURI;
    if (transactionURI.empty())
    {
        transactionURI = LLGridManager::getInstance()->getHelperURI() + "currency.php";
    }

    delete mTransaction;

    mTransactionType = type;
    mTransaction = new LLXMLRPCTransaction(transactionURI, method, params);

    clearError();
}

void LLCurrencyUIManager::Impl::clearEstimate()
{
    mUSDCurrencyEstimated = false;
    mUSDCurrencyEstimatedCost = 0;
    mLocalCurrencyEstimated = false;
    mLocalCurrencyEstimatedCost = "0";
}

bool LLCurrencyUIManager::Impl::hasEstimate() const
{
    return (mUSDCurrencyEstimated || mLocalCurrencyEstimated);
}

std::string LLCurrencyUIManager::Impl::getLocalEstimate() const
{
    if (mLocalCurrencyEstimated)
    {
        // we have the new-style local currency string
        return mLocalCurrencyEstimatedCost;
    }
    if (mUSDCurrencyEstimated)
    {
        // we have the old-style USD-specific value
        LLStringUtil::format_map_t args;
        {
            LLLocale locale_override(LLStringUtil::getLocale());
            args["[AMOUNT]"] = llformat("%#.2f", mUSDCurrencyEstimatedCost / 100.0);
        }
        return LLTrans::getString("LocalEstimateUSD", args);
    }
    return "";
}

bool LLCurrencyUIManager::Impl::checkTransaction()
{
    if (!mTransaction)
    {
        return false;
    }

    if (!mTransaction->process())
    {
        return false;
    }

    if (mTransaction->status(NULL) != LLXMLRPCTransaction::StatusComplete)
    {
        setError(mTransaction->statusMessage(), mTransaction->statusURI());
    }
    else
    {
        switch (mTransactionType)
        {
        case TransactionCurrency:
            finishCurrencyInfo();
            break;
        case TransactionBuy:
            finishCurrencyBuy();
            break;
        default:;
        }
    }

    delete mTransaction;
    mTransaction = NULL;
    mTransactionType = TransactionNone;

    return true;
}

void LLCurrencyUIManager::Impl::setError(
    const std::string& message, const std::string& uri)
{
    mError = true;
    mErrorMessage = message;
    mErrorURI = uri;
}

void LLCurrencyUIManager::Impl::clearError()
{
    mError = false;
    mErrorMessage.clear();
    mErrorURI.clear();
}

bool LLCurrencyUIManager::Impl::considerUpdateCurrency()
{
    if (mCurrencyChanged && !mTransaction &&
        mCurrencyKeyTimer.getElapsedTimeF32() >= CURRENCY_ESTIMATE_FREQUENCY)
    {
        updateCurrencyInfo();
        return true;
    }

    return false;
}

void LLCurrencyUIManager::Impl::currencyKey(S32 value)
{
    mUserEnteredCurrencyBuy = true;
    mCurrencyKeyTimer.reset();

    if (mUserCurrencyBuy == value)
    {
        return;
    }

    mUserCurrencyBuy = value;

    if (hasEstimate())
    {
        clearEstimate();
        //cannot just simply refresh the whole UI, as the edit field will
        // get reset and the cursor will change...

        mPanel.getChildView("currency_est")->setVisible(false);
        mPanel.getChildView("getting_data")->setVisible(true);
    }

    mCurrencyChanged = true;
}

// static
void LLCurrencyUIManager::Impl::onCurrencyKey(LLLineEditor* caller, void* data)
{
    S32 value = atoi(caller->getText().c_str());
    LLCurrencyUIManager::Impl* self = (LLCurrencyUIManager::Impl*)data;
    self->currencyKey(value);
}

void LLCurrencyUIManager::Impl::prepare()
{
    LLLineEditor* lindenAmount = mPanel.getChild<LLLineEditor>("currency_amt");
    if (lindenAmount)
    {
        lindenAmount->setPrevalidate(LLTextValidate::validateNonNegativeS32);
        lindenAmount->setKeystrokeCallback(onCurrencyKey, this);
    }
}

void LLCurrencyUIManager::Impl::updateUI()
{
    if (mHidden)
    {
        mPanel.getChildView("currency_action")->setVisible(false);
        mPanel.getChildView("currency_amt")->setVisible(false);
        mPanel.getChildView("currency_est")->setVisible(false);
        return;
    }

    mPanel.getChildView("currency_action")->setVisible(true);

    LLLineEditor* lindenAmount = mPanel.getChild<LLLineEditor>("currency_amt");
    if (lindenAmount)
    {
        lindenAmount->setVisible(true);
        lindenAmount->setLabel(mZeroMessage);

        if (!mUserEnteredCurrencyBuy)
        {
            if (mUserCurrencyBuy == 0)
            {
                lindenAmount->setText(LLStringUtil::null);
            }
            else
            {
                lindenAmount->setText(llformat("%d", mUserCurrencyBuy));
            }

            lindenAmount->selectAll();
        }
    }

    std::string estimated = (mUserCurrencyBuy == 0) ? mPanel.getString("estimated_zero") : getLocalEstimate();
    mPanel.getChild<LLUICtrl>("currency_est")->setTextArg("[LOCALAMOUNT]", estimated);
    mPanel.getChildView("currency_est")->setVisible( hasEstimate() || mUserCurrencyBuy == 0);

    mPanel.getChildView("currency_links")->setVisible( mSupportsInternationalBilling);
    mPanel.getChildView("exchange_rate_note")->setVisible( mSupportsInternationalBilling);

    if (mPanel.getChildView("buy_btn")->getEnabled()
        ||mPanel.getChildView("currency_est")->getVisible()
        || mPanel.getChildView("error_web")->getVisible())
    {
        mPanel.getChildView("getting_data")->setVisible(false);
    }
}



LLCurrencyUIManager::LLCurrencyUIManager(LLPanel& dialog)
    : impl(* new Impl(dialog))
{
}

LLCurrencyUIManager::~LLCurrencyUIManager()
{
    delete &impl;
}

void LLCurrencyUIManager::setAmount(int amount, bool noEstimate)
{
    impl.mUserCurrencyBuy = amount;
    impl.mUserEnteredCurrencyBuy = false;
    impl.updateUI();

    impl.mCurrencyChanged = !noEstimate;
}

int LLCurrencyUIManager::getAmount()
{
    return impl.mUserCurrencyBuy;
}

void LLCurrencyUIManager::setZeroMessage(const std::string& message)
{
    impl.mZeroMessage = message;
}

void LLCurrencyUIManager::setUSDEstimate(int amount)
{
    impl.mUSDCurrencyEstimatedCost = amount;
    impl.mUSDCurrencyEstimated = true;
    impl.updateUI();

    impl.mCurrencyChanged = false;
}

int LLCurrencyUIManager::getUSDEstimate()
{
    return impl.mUSDCurrencyEstimated ? impl.mUSDCurrencyEstimatedCost : 0;
}

void LLCurrencyUIManager::setLocalEstimate(const std::string &amount)
{
    impl.mLocalCurrencyEstimatedCost = amount;
    impl.mLocalCurrencyEstimated = true;
    impl.updateUI();

    impl.mCurrencyChanged = false;
}

std::string LLCurrencyUIManager::getLocalEstimate() const
{
    return impl.getLocalEstimate();
}

void LLCurrencyUIManager::prepare()
{
    impl.prepare();
}

void LLCurrencyUIManager::updateUI(bool show)
{
    impl.mHidden = !show;
    impl.updateUI();
}

bool LLCurrencyUIManager::process()
{
    bool changed = false;
    changed |= impl.checkTransaction();
    changed |= impl.considerUpdateCurrency();
    return changed;
}

void LLCurrencyUIManager::buy(const std::string& buy_msg)
{
    if (!canBuy())
    {
        return;
    }

    LLUIString msg = buy_msg;
    msg.setArg("[LINDENS]", llformat("%d", impl.mUserCurrencyBuy));
    msg.setArg("[LOCALAMOUNT]", getLocalEstimate());
    LLConfirmationManager::confirm(impl.mSiteConfirm,
                                   msg,
                                   impl,
                                   &LLCurrencyUIManager::Impl::startCurrencyBuy);
}


bool LLCurrencyUIManager::inProcess()
{
    return impl.mTransactionType != Impl::TransactionNone;
}

bool LLCurrencyUIManager::canCancel()
{
    return !buying();
}

bool LLCurrencyUIManager::canBuy()
{
    return !inProcess() && impl.hasEstimate() && impl.mUserCurrencyBuy > 0;
}

bool LLCurrencyUIManager::buying()
{
    return impl.mTransactionType == Impl::TransactionBuy;
}

bool LLCurrencyUIManager::bought()
{
    return impl.mBought;
}

void LLCurrencyUIManager::clearError()
{
    impl.clearError();
}

bool LLCurrencyUIManager::hasError()
{
    return impl.mError;
}

std::string LLCurrencyUIManager::errorMessage()
{
    return impl.mErrorMessage;
}

std::string LLCurrencyUIManager::errorURI()
{
    return impl.mErrorURI;
}