summaryrefslogtreecommitdiff
path: root/indra/newview/lleventnotifier.cpp
blob: 93389bbc0f393475dfc96cdb80bef8ceca38f4a7 (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
/**
 * @file lleventnotifier.cpp
 * @brief Viewer code for managing event notifications
 *
 * $LicenseInfo:firstyear=2004&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 "lleventnotifier.h"

#include "llnotificationsutil.h"
#include "message.h"

#include "llfloaterreg.h"
#include "llfloaterworldmap.h"
#include "llfloaterevent.h"
#include "llagent.h"
#include "llcommandhandler.h"   // secondlife:///app/... support
#include "lltrans.h"

class LLEventHandler : public LLCommandHandler
{
public:
    // requires trusted browser to trigger
    LLEventHandler() : LLCommandHandler("event", UNTRUSTED_THROTTLE) { }
    bool handle(const LLSD& params,
                const LLSD& query_map,
                const std::string& grid,
                LLMediaCtrl* web)
    {
        if (params.size() < 2)
        {
            return false;
        }
        std::string event_command = params[1].asString();
        S32 event_id = params[0].asInteger();
        if(event_command == "details")
        {
            LLFloaterEvent* floater = LLFloaterReg::getTypedInstance<LLFloaterEvent>("event");
            if (floater)
            {
                floater->setEventID(event_id);
                LLFloaterReg::showTypedInstance<LLFloaterEvent>("event");
                return true;
            }
        }
        else if(event_command == "notify")
        {
            // we're adding or removing a notification, so grab the date, name and notification bool
            if (params.size() < 3)
            {
                return false;
            }
            if(params[2].asString() == "enable")
            {
                gEventNotifier.add(event_id);
                // tell the server to modify the database as this was a slurl event notification command
                gEventNotifier.serverPushRequest(event_id, true);

            }
            else
            {
                gEventNotifier.remove(event_id);
            }
            return true;
        }


        return false;
    }
};
LLEventHandler gEventHandler;


LLEventNotifier gEventNotifier;

LLEventNotifier::LLEventNotifier()
{
}


LLEventNotifier::~LLEventNotifier()
{
    en_map::iterator iter;

    for (iter = mEventNotifications.begin();
         iter != mEventNotifications.end();
         iter++)
    {
        delete iter->second;
    }
}


void LLEventNotifier::update()
{
    if (mNotificationTimer.getElapsedTimeF32() > 30.f)
    {
        // Check our notifications again and send out updates
        // if they happen.

        F64 alert_time = LLDate::now().secondsSinceEpoch() + 5 * 60;
        en_map::iterator iter;
        for (iter = mEventNotifications.begin();
             iter != mEventNotifications.end();)
        {
            LLEventNotification *np = iter->second;

            iter++;
            if (np->getEventDateEpoch() < alert_time)
            {
                LLSD args;
                args["NAME"] = np->getEventName();

                args["DATE"] = np->getEventDateStr();
                LLNotificationsUtil::add("EventNotification", args, LLSD(),
                    boost::bind(&LLEventNotifier::handleResponse, this, np->getEventID(), _1, _2));
                remove(np->getEventID());

            }
        }
        mNotificationTimer.reset();
    }
}



bool LLEventNotifier::handleResponse(U32 eventId, const LLSD& notification, const LLSD& response)
{
    S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
    switch (option)
    {
        case 0:
        {
            LLFloaterEvent* floater = LLFloaterReg::getTypedInstance<LLFloaterEvent>("event");
            if (floater)
            {
                floater->setEventID(eventId);
                LLFloaterReg::showTypedInstance<LLFloaterEvent>("event");
            }
            break;
        }
        case 1:
            break;
    }
    return true;
}

bool LLEventNotifier::add(U32 eventId, F64 eventEpoch, const std::string& eventDateStr, const std::string &eventName)
{
    LLEventNotification *new_enp = new LLEventNotification(eventId, eventEpoch, eventDateStr, eventName);

    LL_INFOS() << "Add event " << eventName << " id " << eventId << " date " << eventDateStr << LL_ENDL;
    if(!new_enp->isValid())
    {
        delete new_enp;
        return false;
    }

    mEventNotifications[new_enp->getEventID()] = new_enp;
    return true;

}

bool LLEventNotifier::add(const LLEventStruct& event)
{
    if (mNewEventSignal(event)) return false;
    LLEventNotification *new_enp = new LLEventNotification(event.eventId, event.eventEpoch, event.eventDateStr, event.eventName);

    LL_INFOS() << "Add event " << event.eventName << " id " << event.eventId << " date " << event.eventDateStr << LL_ENDL;
    if(!new_enp->isValid())
    {
        delete new_enp;
        return false;
    }

    mEventNotifications[new_enp->getEventID()] = new_enp;
    return true;

}

void LLEventNotifier::add(U32 eventId)
{

    gMessageSystem->newMessageFast(_PREHASH_EventInfoRequest);
    gMessageSystem->nextBlockFast(_PREHASH_AgentData);
    gMessageSystem->addUUIDFast(_PREHASH_AgentID, gAgent.getID() );
    gMessageSystem->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID() );
    gMessageSystem->nextBlockFast(_PREHASH_EventData);
    gMessageSystem->addU32Fast(_PREHASH_EventID, eventId);
    gAgent.sendReliableMessage();

}

//static
void LLEventNotifier::processEventInfoReply(LLMessageSystem *msg, void **)
{
    // extract the agent id
    LLUUID agent_id;
    U32 event_id;
    std::string event_name;
    std::string eventd_date;
    U32 event_time_utc;

    msg->getUUIDFast(_PREHASH_AgentData, _PREHASH_AgentID, agent_id );
    msg->getU32("EventData", "EventID", event_id);
    msg->getString("EventData", "Name", event_name);
    msg->getString("EventData", "Date", eventd_date);
    msg->getU32("EventData", "DateUTC", event_time_utc);

    //gEventNotifier.add(event_id, (F64)event_time_utc, eventd_date, event_name);

    LLEventStruct event(event_id, (F64)event_time_utc, eventd_date, event_name);
    msg->getString("EventData", "Creator", event.creator);
    msg->getString("EventData", "Category", event.category);
    msg->getString("EventData", "Desc", event.desc);
    msg->getU32("EventData", "Duration", event.duration);
    msg->getU32("EventData", "Cover", event.cover);
    msg->getU32("EventData", "Amount", event.amount);
    msg->getString("EventData", "SimName", event.simName);
    msg->getVector3d("EventData", "GlobalPos", event.globalPos);
    msg->getU32("EventData", "EventFlags", event.flags);

    gEventNotifier.add(event);

}


void LLEventNotifier::load(const LLSD& event_options)
{
    for(LLSD::array_const_iterator resp_it = event_options.beginArray(),
        end = event_options.endArray(); resp_it != end; ++resp_it)
    {
        LLSD response = *resp_it;
        LLDate date;
        bool is_iso8601_date = false;

        if (response["event_date"].isDate())
        {
            date = response["event_date"].asDate();
            is_iso8601_date = true;
        }
        else if (date.fromString(response["event_date"].asString()))
        {
            is_iso8601_date = true;
        }

        if (is_iso8601_date)
        {
            std::string dateStr;

            dateStr = "[" + LLTrans::getString("LTimeYear") + "]-["
                + LLTrans::getString("LTimeMthNum") + "]-["
                + LLTrans::getString("LTimeDay") + "] ["
                + LLTrans::getString("LTimeHour") + "]:["
                + LLTrans::getString("LTimeMin") + "]:["
                + LLTrans::getString("LTimeSec") + "]";

            LLSD substitution;
            substitution["datetime"] = date;
            LLStringUtil::format(dateStr, substitution);

            //add(response["event_id"].asInteger(), response["event_date_ut"], dateStr, response["event_name"].asString());
            LLEventStruct event(response["event_id"].asInteger(), response["event_date_ut"], dateStr, response["event_name"].asString());
            add(event);
        }
        else
        {
            //add(response["event_id"].asInteger(), response["event_date_ut"], response["event_date"].asString(), response["event_name"].asString());
            LLEventStruct event(response["event_id"].asInteger(), response["event_date_ut"], response["event_date"].asString(), response["event_name"].asString());
            add(event);
        }
    }
}



BOOL LLEventNotifier::hasNotification(const U32 event_id)
{
    if (mEventNotifications.find(event_id) != mEventNotifications.end())
    {
        return TRUE;
    }
    return FALSE;
}

void LLEventNotifier::remove(const U32 event_id)
{
    en_map::iterator iter;
    iter = mEventNotifications.find(event_id);
    if (iter == mEventNotifications.end())
    {
        // We don't have a notification for this event, don't bother.
        return;
    }

    serverPushRequest(event_id, false);
    delete iter->second;
    mEventNotifications.erase(iter);
}


void LLEventNotifier::serverPushRequest(U32 event_id, bool add)
{
    // Push up a message to tell the server we have this notification.
    gMessageSystem->newMessageFast(add ? _PREHASH_EventNotificationAddRequest : _PREHASH_EventNotificationRemoveRequest);
    gMessageSystem->nextBlockFast(_PREHASH_AgentData);
    gMessageSystem->addUUIDFast(_PREHASH_AgentID, gAgent.getID() );
    gMessageSystem->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID());
    gMessageSystem->nextBlockFast(_PREHASH_EventData);
    gMessageSystem->addU32Fast(_PREHASH_EventID, event_id);
    gAgent.sendReliableMessage();
}


LLEventNotification::LLEventNotification(U32 eventId, F64 eventEpoch, std::string eventDateStr, std::string eventName) :
    mEventID(eventId),
    mEventName(std::move(eventName)),
    mEventDateEpoch(eventEpoch),
    mEventDateStr(std::move(eventDateStr))
{

}