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"
25 #include "stg/common.h"
27 extern volatile time_t stgTime; // So sad...
29 using STG::PARSER::SEND_MESSAGE;
31 int SEND_MESSAGE::Start(void *, const char *el, const char **attr)
33 if (strcasecmp(el, tag.c_str()) != 0)
36 for (size_t i = 0; i < 14; i++)
39 m_result = res_params_error;
41 printfd(__FILE__, "To few parameters\n");
45 for (size_t i = 0; i < 14; i += 2)
47 if (strcasecmp(attr[i], "login") == 0)
48 ParseLogins(attr[i + 1]);
50 if (strcasecmp(attr[i], "MsgVer") == 0)
52 str2x(attr[i + 1], m_msg.header.ver);
53 if (m_msg.header.ver != 1)
54 m_result = res_params_error;
57 if (strcasecmp(attr[i], "MsgType") == 0)
59 str2x(attr[i + 1], m_msg.header.type);
60 if (m_msg.header.type != 1)
61 m_result = res_params_error;
64 if (strcasecmp(attr[i], "Repeat") == 0)
66 str2x(attr[i + 1], m_msg.header.repeat);
67 if (m_msg.header.repeat < 0)
68 m_result = res_params_error;
71 if (strcasecmp(attr[i], "RepeatPeriod") == 0)
72 str2x(attr[i + 1], m_msg.header.repeatPeriod);
74 if (strcasecmp(attr[i], "ShowTime") == 0)
75 str2x(attr[i + 1], m_msg.header.showTime);
77 if (strcasecmp(attr[i], "Text") == 0)
79 Decode21str(m_msg.text, attr[i + 1]);
86 int SEND_MESSAGE::End(void *, const char *el)
88 if (strcasecmp(el, tag.c_str()) != 0)
91 m_result = res_unknown;
92 for (unsigned i = 0; i < m_logins.size(); i++)
94 if (m_users.FindByName(m_logins[i], &m_user))
96 printfd(__FILE__, "User not found. %s\n", m_logins[i].c_str());
99 m_msg.header.creationTime = static_cast<unsigned int>(stgTime);
100 m_user->AddMessage(&m_msg);
107 int SEND_MESSAGE::ParseLogins(const char * login)
110 char * l = new char[strlen(login) + 1];
116 m_logins.push_back(p);
117 p = strtok(NULL, ":");
124 void SEND_MESSAGE::CreateAnswer()
129 answer = "<SendMessageResult value=\"ok\"/>";
131 case res_params_error:
132 answer = "<SendMessageResult value=\"Parameters error.\"/>";
135 answer = "<SendMessageResult value=\"Unknown user.\"/>";