2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 * Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
19 * Author : Maxim Mamontov <faust@stargazer.dp.ua>
22 #include "parser_message.h"
24 #include "stg/users.h"
26 extern volatile time_t stgTime; // So sad...
28 using STG::PARSER::SEND_MESSAGE;
30 const char * SEND_MESSAGE::tag = "Message";
32 int SEND_MESSAGE::Start(void *, const char *el, const char **attr)
34 if (strcasecmp(el, m_tag.c_str()) != 0)
37 for (size_t i = 0; i < 14; i++)
40 m_result = res_params_error;
42 printfd(__FILE__, "To few parameters\n");
46 for (size_t i = 0; i < 14; i += 2)
48 if (strcasecmp(attr[i], "login") == 0)
49 ParseLogins(attr[i + 1]);
51 if (strcasecmp(attr[i], "MsgVer") == 0)
53 str2x(attr[i + 1], m_msg.header.ver);
54 if (m_msg.header.ver != 1)
55 m_result = res_params_error;
58 if (strcasecmp(attr[i], "MsgType") == 0)
60 str2x(attr[i + 1], m_msg.header.type);
61 if (m_msg.header.type != 1)
62 m_result = res_params_error;
65 if (strcasecmp(attr[i], "Repeat") == 0)
67 str2x(attr[i + 1], m_msg.header.repeat);
68 if (m_msg.header.repeat < 0)
69 m_result = res_params_error;
72 if (strcasecmp(attr[i], "RepeatPeriod") == 0)
73 str2x(attr[i + 1], m_msg.header.repeatPeriod);
75 if (strcasecmp(attr[i], "ShowTime") == 0)
76 str2x(attr[i + 1], m_msg.header.showTime);
78 if (strcasecmp(attr[i], "Text") == 0)
80 Decode21str(m_msg.text, attr[i + 1]);
87 int SEND_MESSAGE::End(void *, const char *el)
89 if (strcasecmp(el, m_tag.c_str()) != 0)
92 m_result = res_unknown;
93 for (unsigned i = 0; i < m_logins.size(); i++)
95 if (m_users.FindByName(m_logins[i], &m_user))
97 printfd(__FILE__, "User not found. %s\n", m_logins[i].c_str());
100 m_msg.header.creationTime = static_cast<unsigned int>(stgTime);
101 m_user->AddMessage(&m_msg);
108 int SEND_MESSAGE::ParseLogins(const char * login)
111 char * l = new char[strlen(login) + 1];
117 m_logins.push_back(p);
118 p = strtok(NULL, ":");
125 void SEND_MESSAGE::CreateAnswer()
130 m_answer = "<SendMessageResult value=\"ok\"/>";
132 case res_params_error:
133 m_answer = "<SendMessageResult value=\"Parameters error.\"/>";
136 m_answer = "<SendMessageResult value=\"Unknown user.\"/>";