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
|
/* Starshatter: The Open Source Project
Copyright (c) 2021-2024, Starshatter: The Open Source Project Contributors
Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors
Copyright (c) 1997-2006, Destroyer Studios LLC.
AUTHOR: John DiCamillo
OVERVIEW
========
HTTP Servlet Engine for Admin Chat
*/
#include "NetAdminChat.h"
#include <FormatUtil.h>
#include <HttpRequest.h>
#include <HttpResponse.h>
#include <HttpServlet.h>
#include <List.h>
#include <NetChat.h>
#include <NetLayer.h>
#include <NetLobbyServer.h>
#include <NetServerConfig.h>
#include <NetUser.h>
#include <NetUtil.h>
#include <Text.h>
// +-------------------------------------------------------------------+
NetAdminChat::NetAdminChat() {}
NetAdminChat::~NetAdminChat() {}
// +-------------------------------------------------------------------+
bool
NetAdminChat::DoGet(HttpRequest& request, HttpResponse& response)
{
if (CheckUser(request, response)) {
NetLobbyServer* lobby = NetLobbyServer::GetInstance();
if (lobby) {
Text msg = request.GetParam("msg");
Text act = request.GetParam("action");
if (msg.length()) {
lobby->AddChat(user, msg);
if (user)
NetUtil::SendChat(0xffff, user->Name(), msg);
}
else if (act.length()) {
if (act == "clear")
lobby->ClearChat();
else if (act == "save")
lobby->SaveChat();
}
}
response.SetStatus(HttpResponse::SC_OK);
response.AddHeader("MIME-Version", "1.0");
response.AddHeader("Content-Type", "text/html");
response.AddHeader("Cache-Control", "no-cache");
response.AddHeader("Expires", "-1");
response.SetContent(GetHead("Chat") +
GetTitleBar(GetStatLine(),
"onLoad=\"self.focus();document.chatForm.msg.focus();\"") +
GetContent() +
GetBodyClose());
}
return true;
}
// +-------------------------------------------------------------------+
Text
NetAdminChat::GetContent()
{
Text content = "<div style=\"overflow-y:scroll; height:240px; padding-right:4pt; padding-left:4pt; padding-bottom:4pt; padding-top:4pt; margin:4pt;\">\n";
int nchat = 0;
NetLobbyServer* lobby = NetLobbyServer::GetInstance();
if (lobby) {
content += "\n<table width=\"90%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">\n";
ListIter<NetChatEntry> iter = lobby->GetChat();
while (++iter) {
NetChatEntry* c = iter.value();
content += " <tr><td nowrap width=\"130\" class=\"tiny\">";
content += FormatTimeString(c->GetTime());
content += "</td><td nowrap width=\"80\" class=\"tiny\">";
content += c->GetUser();
content += "</td><td class=\"tiny\">";
content += c->GetMessage();
content += "</td></tr>\n";
}
content += "</table>\n\n";
}
content += "</div>\n<div class=\"content\">\n\
<form name=\"chatForm\" method=\"post\"action=\"/chat\">\n\
<table border=\"0\">\n\
<tr>\n\
<td valign=\"middle\"> <input type=\"text\" name=\"msg\" size=\"80\"></td>\n\
<td valign=\"middle\"> <input type=\"submit\" value=\"Send\"></td>\n\
</tr>\n\
<tr>\n\
<td colspan=\"2\" valign=\"middle\" class=\"std\"> <a href=\"/chat\">Refresh</a>\
· <a href=\"/chat?action=save\">Save</a> · <a href=\"/chat?action=clear\">Clear</a></td>\n\
</tr>\n\
</table>\n\
</form>\n\
</div>\n\n";
content += GetCopyright();
return content;
}
|