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>
24 $Date: 2008/01/05 12:11:34 $
27 #include "stg/common.h"
28 #include "stg/netunit.h"
34 #include <sys/types.h>
35 #include <sys/socket.h>
36 #include <netinet/in.h>
37 #include <arpa/inet.h>
41 #define REQ_STR_LEN (300)
42 char fileName[FN_LEN];
45 int ParseReply(void * data, list<string> * ans);
47 struct option long_options[] = {
48 {"server", 1, 0, 's'}, //Server
49 {"port", 1, 0, 'p'}, //Port
50 {"admin", 1, 0, 'a'}, //Admin
51 {"admin_pass", 1, 0, 'w'}, //passWord
52 {"file", 1, 0, 'f'}, //File
53 {"strreq", 1, 0, 'r'}, //String request
56 //-----------------------------------------------------------------------------
57 int CheckLogin(const char * login)
59 for (int i = 0; i < (int)strlen(login); i++)
61 if (!(( login[i] >= 'a' && login[i] <= 'z')
62 || (login[i] >= 'A' && login[i] <= 'Z')
63 || (login[i] >= '0' && login[i] <= '9')
72 //-----------------------------------------------------------------------------
73 short int ParseServerPort(const char * p)
76 if (str2x(p, port) != 0)
78 printf("Incorresct server port %s\n", p);
79 exit(NETWORK_ERR_CODE);
83 //-----------------------------------------------------------------------------
84 char * ParseAdminLogin(char * adm)
88 printf("Incorrect admin login %s\n", adm);
89 exit(PARAMETER_PARSING_ERR_CODE);
93 //-----------------------------------------------------------------------------
94 char * ParsePassword(char * pass)
96 if (strlen(pass) >= ADM_PASSWD_LEN)
98 printf("Password too big %s\n", pass);
99 exit(PARAMETER_PARSING_ERR_CODE);
104 //-----------------------------------------------------------------------------
105 void CreateRequest(REQUEST * req, char * r)
109 if (!req->strReq.empty())
112 sprintf(str, "%s", req->strReq.const_data().c_str());
117 FILE *f = fopen(fileName, "rt");
120 printf("Can't open request file\n");
121 exit(PARAMETER_PARSING_ERR_CODE);
124 char ts[REQ_STR_LEN];
125 while (fgets(ts, REQ_STR_LEN, f))
127 strncat(r, ts, REQ_STR_LEN);
132 //-----------------------------------------------------------------------------
133 int Process(REQUEST * r)
139 nt.SetServer(r->server.const_data().c_str());
140 nt.SetServerPort(r->port.const_data());
141 nt.SetLogin(r->admLogin.const_data().c_str());
142 nt.SetPassword(r->admPasswd.const_data().c_str());
143 nt.SetRxCallback(NULL, ParseReply);
145 CreateRequest(r, str);
147 if ((ret = nt.Connect()) != st_ok)
149 printf("%s\n", nt.GetError().c_str());
152 if ((ret = nt.Transact(str)) != st_ok)
154 printf("%s\n", nt.GetError().c_str());
157 if ((ret = nt.Disconnect()) != st_ok)
159 printf("%s\n", nt.GetError().c_str());
163 printf("<!-- Ok -->\n");
166 //-----------------------------------------------------------------------------
167 int CheckParameters(REQUEST * req)
169 int a = !req->admLogin.empty()
170 && !req->admPasswd.empty()
171 && !req->server.empty()
172 && !req->port.empty();
174 int b = !req->fileReq.empty()
175 || !req->strReq.empty();
179 //-----------------------------------------------------------------------------
182 printf("Sgconf version: 1.05.9_XML\n\n");
184 printf("Use: sgconf -s <server> -p <port> -a <admin> -w <admin_pass> -r <request_string>\n");
185 printf("Use: sgconf -s <server> -p <port> -a <admin> -w <admin_pass> -f <request_file>\n\n");
187 printf("Request file or string content:\n\n");
189 printf(" <GetServerInfo/>\n\n");
191 printf(" <GetTariffs/>\n");
192 printf(" <AddTariff name=\"NEW_TARIFF\"/>\n");
193 printf(" <DelTariff name=\"DELETED_TARIFF\"/>\n\n");
195 printf(" <SetTariff name=\"TARIFF\"/>\n");
196 printf(" <Time[0...9] value=\"HH:MM-HH:MM\"/> Day-Night time for each DIR\n");
197 printf(" <PriceDayA value=\"PriceDayA0/PriceDayA1/PriceDayA2/PriceDayA3/PriceDayA4/PriceDayA5/PriceDayA6/PriceDayA7/PriceDayA8/PriceDayA9\"/>\n");
198 printf(" <PriceDayB value=\"PriceDayB0/PriceDayB1/PriceDayB2/PriceDayB3/PriceDayB4/PriceDayB5/PriceDayB6/PriceDayB7/PriceDayB8/PriceDayB9\"/>\n");
199 printf(" <PriceNightA value=\"PriceNightA0/PriceNightA1/PriceNightA2/PriceNightA3/PriceNightA4/PriceNightA5/PriceNightA6/PriceNightA7/PriceNightA8/PriceNightA9\"/>\n");
200 printf(" <PriceNightB value=\"PriceNightB0/PriceNightB1/PriceNightB2/PriceNightB3/PriceNightB4/PriceNightB5/PriceNightB6/PriceNightB7/PriceNightB8/PriceNightB9\"/>\n");
201 printf(" <SinglePrice value=\"SinglePrice0/SinglePrice1/SinglePrice2/SinglePrice3/SinglePrice4/SinglePrice5/SinglePrice6/SinglePrice7/SinglePrice8/SinglePrice9\"/>\n");
202 printf(" <NoDiscount value=\"NoDiscount0/NoDiscount1/NoDiscount2/NoDiscount3/NoDiscount4/NoDiscount5/NoDiscount6/NoDiscount7/NoDiscount8/NoDiscount9\"/>\n");
203 printf(" <Threshold value=\"NEW_Threshold\"/>\n");
204 printf(" <Fee value=\"NEW_Fee\"/>\n");
205 printf(" <PassiveCost value=\"NEW_PassiveCost\"/>\n");
206 printf(" <Free value=\"NEW_Free\"/>\n");
207 printf(" <TraffType value=\"NEW_TraffType\"/> New TraffType value: [up|down|up+down|max]\n");
208 printf(" </SetTariff/>\n\n");
210 printf(" <GetAdmins/>\n");
211 printf(" <AddAdmin login=\"LOGIN\"/>\n");
212 printf(" <DelAdmin login=\"LOGIN\"/>\n");
213 printf(" <ChgAdmin login=\"LOGIN\" priv=\"NEW_PRIV\" password=\"NEW_PASSWORD\"/>\n\n");
215 printf(" <GetUsers/>\n");
216 printf(" <GetUser login=\"LOGIN\"/>\n");
217 printf(" <AddUser login=\"LOGIN\"/>\n");
218 printf(" <DelUser login=\"LOGIN\"/>\n");
219 printf(" <CheckUser login=\"LOGIN\" password=\"PASSWORD\"/> Checking login and password in database. Return Ok or Err.\n\n");
221 printf(" <SetUser>\n");
222 printf(" <login value=\"LOGIN\" />\n");
223 printf(" <ip value=\"NEW_IP\" />\n");
224 printf(" <password value=\"NEW_Password\" />\n");
225 printf(" <tariff [ delayed | now ]=\"NEW_Tariff\" /> delayed - change tariff from 1st day of new month; now - change tariff NOW.\n");
226 printf(" <group value=\"NEW_Group\" /> Encode12() -> value\n");
227 printf(" <name value=\"NEW_RealName\" /> Encode12() -> value\n");
228 printf(" <address value=\"NEW_Address\" /> Encode12() -> value\n");
229 printf(" <phone value=\"NEW_Phone\" /> Encode12() -> value\n");
230 printf(" <email value=\"NEW_Email\" /> Encode12() -> value\n");
231 printf(" <note value=\"NEW_Note\" /> Encode12() -> value\n");
232 printf(" <userdata[0...9] value=\"NEW_Userdata[0...9]\" /> Encode12() -> value\n");
233 printf(" <cash [ add | set ]=\"Cash\" msg=\"MESSAGE\" /> add - add money on account; set - set money on account; Message - message for log\n");
234 printf(" <credit value=\"NEW_Credit\" />\n");
235 printf(" <CreditExpire value=\"NEW_CreditExpire\" />\n");
236 printf(" <freemb value=\"NEW_FreeMB\" />\n");
237 printf(" <aonline value=\"AlwaysOnline\" /> 1 - turn ON AlwaysOnline; 0 - turn OFF AlwaysOnline\n");
238 printf(" <down value=\"Down\" /> 1 - turn ON Down; 0 - turn OFF Down\n");
239 printf(" <passive value=\"Passive\" /> 1 - turn ON Passive; 0 - turn OFF Passive\n");
240 printf(" <traff MU[0...9]=\"NEW_MU[0...9]\" MD[0...9]=\"NEW_MD[0...9]\" /> MU[0...9] - Set upload traffic value; MU[0...9] - Set download traffic value; \n");
241 printf(" </SetUser>\n\n");
243 printf(" <Message login=\"LOGIN\" msgver=\"1\" msgtype=\"1\" repeat=\"0\" repeatperiod=\"0\" showtime=\"0\" text=\"MESSAGE\" />\n");
245 //---------------------------------------------------------------------------
246 int main(int argc, char **argv)
252 int option_index = -1;
254 int c = getopt_long(argc, argv, "s:p:a:w:f:r:", long_options, &option_index);
265 req.port = ParseServerPort(optarg);
269 req.admLogin = ParseAdminLogin(optarg);
272 case 'w': //admin password
273 req.admPasswd = ParsePassword(optarg);
277 strcpy(fileName,optarg);
281 case 'r': //string request
289 printf ("?? getopt returned character code 0%o ??\n", c);
295 printf ("non-option ARGV-elements: ");
296 while (optind < argc)
297 printf ("%s ", argv[optind++]);
299 exit(PARAMETER_PARSING_ERR_CODE);
302 if (CheckParameters(&req) == 0)
305 exit(PARAMETER_PARSING_ERR_CODE);
312 //-----------------------------------------------------------------------------