]> git.stg.codes - stg.git/blob - stargazer/plugins/configuration/sgconfig/parser_message.cpp
Public interfaces: part 1
[stg.git] / stargazer / plugins / configuration / sgconfig / parser_message.cpp
1 /*
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.
6  *
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.
11  *
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
15  */
16
17 /*
18  *    Author : Boris Mikhailenko <stg34@stargazer.dp.ua>
19  *    Author : Maxim Mamontov <faust@stargazer.dp.ua>
20  */
21
22 #include "parser_message.h"
23
24 #include "stg/users.h"
25 #include "stg/user.h"
26
27 extern volatile time_t stgTime; // So sad...
28
29 using STG::PARSER::SEND_MESSAGE;
30
31 const char * SEND_MESSAGE::tag = "Message";
32
33 int SEND_MESSAGE::Start(void *, const char *el, const char **attr)
34 {
35     if (strcasecmp(el, m_tag.c_str()) != 0)
36         return -1;
37
38     for (size_t i = 0; i < 14; i++)
39         if (attr[i] == NULL)
40         {
41             m_result = res_params_error;
42             CreateAnswer();
43             printfd(__FILE__, "To few parameters\n");
44             return 0;
45         }
46
47     for (size_t i = 0; i < 14; i += 2)
48     {
49         if (strcasecmp(attr[i], "login") == 0)
50             ParseLogins(attr[i + 1]);
51
52         if (strcasecmp(attr[i], "MsgVer") == 0)
53         {
54             str2x(attr[i + 1], m_msg.header.ver);
55             if (m_msg.header.ver != 1)
56                 m_result = res_params_error;
57         }
58
59         if (strcasecmp(attr[i], "MsgType") == 0)
60         {
61             str2x(attr[i + 1], m_msg.header.type);
62             if (m_msg.header.type != 1)
63                 m_result = res_params_error;
64         }
65
66         if (strcasecmp(attr[i], "Repeat") == 0)
67         {
68             str2x(attr[i + 1], m_msg.header.repeat);
69             if (m_msg.header.repeat < 0)
70                 m_result = res_params_error;
71         }
72
73         if (strcasecmp(attr[i], "RepeatPeriod") == 0)
74             str2x(attr[i + 1], m_msg.header.repeatPeriod);
75
76         if (strcasecmp(attr[i], "ShowTime") == 0)
77             str2x(attr[i + 1], m_msg.header.showTime);
78
79         if (strcasecmp(attr[i], "Text") == 0)
80         {
81             Decode21str(m_msg.text, attr[i + 1]);
82             m_result = res_ok;
83         }
84     }
85     return 0;
86 }
87
88 int SEND_MESSAGE::End(void *, const char *el)
89 {
90     if (strcasecmp(el, m_tag.c_str()) != 0)
91         return -1;
92
93     m_result = res_unknown;
94     for (unsigned i = 0; i < m_logins.size(); i++)
95     {
96         if (m_users.FindByName(m_logins[i], &m_user))
97         {
98             printfd(__FILE__, "User not found. %s\n", m_logins[i].c_str());
99             continue;
100         }
101         m_msg.header.creationTime = static_cast<unsigned int>(stgTime);
102         m_user->AddMessage(&m_msg);
103         m_result = res_ok;
104     }
105     CreateAnswer();
106     return 0;
107 }
108
109 int SEND_MESSAGE::ParseLogins(const char * login)
110 {
111     char * p;
112     char * l = new char[strlen(login) + 1];
113     strcpy(l, login);
114     p = strtok(l, ":");
115     m_logins.clear();
116     while (p)
117     {
118         m_logins.push_back(p);
119         p = strtok(NULL, ":");
120     }
121
122     delete[] l;
123     return 0;
124 }
125
126 void SEND_MESSAGE::CreateAnswer()
127 {
128     switch (m_result)
129     {
130         case res_ok:
131             m_answer = "<SendMessageResult value=\"ok\"/>";
132             break;
133         case res_params_error:
134             m_answer = "<SendMessageResult value=\"Parameters error.\"/>";
135             break;
136         case res_unknown:
137             m_answer = "<SendMessageResult value=\"Unknown user.\"/>";
138             break;
139     }
140 }