-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtiptype.c
535 lines (444 loc) · 13.2 KB
/
tiptype.c
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
/*
FILE
tIPType source code of unxsVZ.cgi
svn ID removed
PURPOSE
IP number type for fine grained classification.
AUTHOR/LEGAL
(C) 2001-2016 Gary Wallis for Unixservice, LLC.
GPLv2 license applies. See LICENSE file included.
*/
//git describe version info
static char *cGitVersion="GitVersion:"GitVersion;
#include "mysqlrad.h"
//Table Variables
//Table Variables
//uIPType: Primary Key
static unsigned uIPType=0;
//cLabel: Short label
static char cLabel[128]={""};
//cComment: Definition of the label referenced in cLabel
static char *cComment={""};
//uOwner: Record owner
static unsigned uOwner=0;
//uCreatedBy: uClient for last insert
static unsigned uCreatedBy=0;
//uCreatedDate: Unix seconds date last insert
static time_t uCreatedDate=0;
//uModBy: uClient for last update
static unsigned uModBy=0;
//uModDate: Unix seconds date last update
static time_t uModDate=0;
#define VAR_LIST_tIPType "tIPType.uIPType,tIPType.cLabel,tIPType.cComment,tIPType.uOwner,tIPType.uCreatedBy,tIPType.uCreatedDate,tIPType.uModBy,tIPType.uModDate"
//Local only
void Insert_tIPType(void);
void Update_tIPType(char *cRowid);
void ProcesstIPTypeListVars(pentry entries[], int x);
//In tIPTypefunc.h file included below
void ExtProcesstIPTypeVars(pentry entries[], int x);
void ExttIPTypeCommands(pentry entries[], int x);
void ExttIPTypeButtons(void);
void ExttIPTypeNavBar(void);
void ExttIPTypeGetHook(entry gentries[], int x);
void ExttIPTypeSelect(void);
void ExttIPTypeSelectRow(void);
void ExttIPTypeListSelect(void);
void ExttIPTypeListFilter(void);
void ExttIPTypeAuxTable(void);
#include "tiptypefunc.h"
//Table Variables Assignment Function
void ProcesstIPTypeVars(pentry entries[], int x)
{
register int i;
for(i=0;i<x;i++)
{
if(!strcmp(entries[i].name,"uIPType"))
sscanf(entries[i].val,"%u",&uIPType);
else if(!strcmp(entries[i].name,"cLabel"))
sprintf(cLabel,"%.127s",entries[i].val);
else if(!strcmp(entries[i].name,"cComment"))
cComment=entries[i].val;
else if(!strcmp(entries[i].name,"uOwner"))
sscanf(entries[i].val,"%u",&uOwner);
else if(!strcmp(entries[i].name,"uCreatedBy"))
sscanf(entries[i].val,"%u",&uCreatedBy);
else if(!strcmp(entries[i].name,"uCreatedDate"))
sscanf(entries[i].val,"%lu",&uCreatedDate);
else if(!strcmp(entries[i].name,"uModBy"))
sscanf(entries[i].val,"%u",&uModBy);
else if(!strcmp(entries[i].name,"uModDate"))
sscanf(entries[i].val,"%lu",&uModDate);
}
//After so we can overwrite form data if needed.
ExtProcesstIPTypeVars(entries,x);
}//ProcesstIPTypeVars()
void ProcesstIPTypeListVars(pentry entries[], int x)
{
/*
register int i;
for(i=0;i<x;i++)
{
}
*/
}//void ProcesstIPTypeListVars(pentry entries[], int x)
int tIPTypeCommands(pentry entries[], int x)
{
ProcessControlVars(entries,x);
ExttIPTypeCommands(entries,x);
if(!strcmp(gcFunction,"tIPTypeTools"))
{
if(!strcmp(gcFind,LANG_NB_LIST))
{
tIPTypeList();
}
//Default
ProcesstIPTypeVars(entries,x);
tIPType("");
}
else if(!strcmp(gcFunction,"tIPTypeList"))
{
ProcessControlVars(entries,x);
ProcesstIPTypeListVars(entries,x);
tIPTypeList();
}
return(0);
}//tIPTypeCommands()
void tIPType(const char *cResult)
{
MYSQL_RES *res;
MYSQL_RES *res2;
MYSQL_ROW field;
//Internal skip reloading
if(!cResult[0])
{
if(guMode)
ExttIPTypeSelectRow();
else
ExttIPTypeSelect();
mysql_query(&gMysql,gcQuery);
if(mysql_errno(&gMysql))
{
if(strstr(mysql_error(&gMysql)," doesn't exist"))
{
CreatetIPType();
unxsVZ("New tIPType table created");
}
else
{
htmlPlainTextError(mysql_error(&gMysql));
}
}
res=mysql_store_result(&gMysql);
if((guI=mysql_num_rows(res)))
{
if(guMode==6)
{
sprintf(gcQuery,"SELECT _rowid FROM tIPType WHERE uIPType=%u"
,uIPType);
MYSQL_RUN_STORE(res2);
field=mysql_fetch_row(res2);
sscanf(field[0],"%lu",&gluRowid);
gluRowid++;
}
PageMachine("",0,"");
if(!guMode) mysql_data_seek(res,gluRowid-1);
field=mysql_fetch_row(res);
sscanf(field[0],"%u",&uIPType);
sprintf(cLabel,"%.127s",field[1]);
cComment=field[2];
sscanf(field[3],"%u",&uOwner);
sscanf(field[4],"%u",&uCreatedBy);
sscanf(field[5],"%lu",&uCreatedDate);
sscanf(field[6],"%u",&uModBy);
sscanf(field[7],"%lu",&uModDate);
}
}//Internal Skip
Header_ism3(":: tIPType",0);
printf("<table width=100%% cellspacing=0 cellpadding=0>\n");
printf("<tr><td colspan=2 align=right valign=center>");
printf("<input type=hidden name=gcFunction value=tIPTypeTools>");
printf("<input type=hidden name=gluRowid value=%lu>",gluRowid);
if(guI)
{
if(guMode==6)
//printf(" Found");
printf(LANG_NBR_FOUND);
else if(guMode==5)
//printf(" Modified");
printf(LANG_NBR_MODIFIED);
else if(guMode==4)
//printf(" New");
printf(LANG_NBR_NEW);
printf(LANG_NBRF_SHOWING,gluRowid,guI);
}
else
{
if(!cResult[0])
//printf(" No records found");
printf(LANG_NBR_NORECS);
}
if(cResult[0]) printf("%s",cResult);
printf("</td></tr>");
printf("<tr><td valign=top width=25%%>");
ExttIPTypeButtons();
printf("</td><td valign=top>");
//
OpenFieldSet("tIPType Record Data",100);
if(guMode==2000 || guMode==2002)
tIPTypeInput(1);
else
tIPTypeInput(0);
//
CloseFieldSet();
//Bottom table
printf("<tr><td colspan=2>");
ExttIPTypeAuxTable();
Footer_ism3();
}//end of tIPType();
void tIPTypeInput(unsigned uMode)
{
//uIPType
OpenRow(LANG_FL_tIPType_uIPType,"black");
printf("<input title='%s' type=text name=uIPType value=%u size=16 maxlength=10 ",LANG_FT_tIPType_uIPType,uIPType);
if(guPermLevel>=20 && uMode)
{
printf("></td></tr>\n");
}
else
{
printf("disabled></td></tr>\n");
printf("<input type=hidden name=uIPType value=%u >\n",uIPType);
}
//cLabel
OpenRow(LANG_FL_tIPType_cLabel,"black");
printf("<input title='%s' type=text name=cLabel value=\"%s\" size=80 maxlength=127 ",LANG_FT_tIPType_cLabel,EncodeDoubleQuotes(cLabel));
if(guPermLevel>=0 && uMode)
{
printf("></td></tr>\n");
}
else
{
printf("disabled></td></tr>\n");
printf("<input type=hidden name=cLabel value=\"%s\">\n",EncodeDoubleQuotes(cLabel));
}
//cComment
OpenRow(LANG_FL_tIPType_cComment,"black");
printf("<textarea title='%s' cols=80 wrap=hard rows=16 name=cComment ",LANG_FT_tIPType_cComment);
if(guPermLevel>=7 && uMode)
{
printf(">%s</textarea></td></tr>\n",cComment);
}
else
{
printf("disabled>%s</textarea></td></tr>\n",cComment);
printf("<input type=hidden name=cComment value=\"%s\" >\n",EncodeDoubleQuotes(cComment));
}
//uOwner
OpenRow(LANG_FL_tIPType_uOwner,"black");
if(guPermLevel>=20 && uMode)
printf("%s<input type=hidden name=uOwner value=%u >\n",ForeignKey("tClient","cLabel",uOwner),uOwner);
else
printf("%s<input type=hidden name=uOwner value=%u >\n",ForeignKey("tClient","cLabel",uOwner),uOwner);
//uCreatedBy
OpenRow(LANG_FL_tIPType_uCreatedBy,"black");
if(guPermLevel>=20 && uMode)
printf("%s<input type=hidden name=uCreatedBy value=%u >\n",ForeignKey("tClient","cLabel",uCreatedBy),uCreatedBy);
else
printf("%s<input type=hidden name=uCreatedBy value=%u >\n",ForeignKey("tClient","cLabel",uCreatedBy),uCreatedBy);
//uCreatedDate
OpenRow(LANG_FL_tIPType_uCreatedDate,"black");
if(uCreatedDate)
printf("%s\n\n",ctime(&uCreatedDate));
else
printf("---\n\n");
printf("<input type=hidden name=uCreatedDate value=%lu >\n",uCreatedDate);
//uModBy
OpenRow(LANG_FL_tIPType_uModBy,"black");
if(guPermLevel>=20 && uMode)
printf("%s<input type=hidden name=uModBy value=%u >\n",ForeignKey("tClient","cLabel",uModBy),uModBy);
else
printf("%s<input type=hidden name=uModBy value=%u >\n",ForeignKey("tClient","cLabel",uModBy),uModBy);
//uModDate
OpenRow(LANG_FL_tIPType_uModDate,"black");
if(uModDate)
printf("%s\n\n",ctime(&uModDate));
else
printf("---\n\n");
printf("<input type=hidden name=uModDate value=%lu >\n",uModDate);
printf("</tr>\n");
}//void tIPTypeInput(unsigned uMode)
void NewtIPType(unsigned uMode)
{
register int i=0;
MYSQL_RES *res;
sprintf(gcQuery,"SELECT uIPType FROM tIPType WHERE uIPType=%u",uIPType);
MYSQL_RUN_STORE(res);
i=mysql_num_rows(res);
if(i)
//tIPType("<blink>Record already exists");
tIPType(LANG_NBR_RECEXISTS);
//insert query
Insert_tIPType();
if(mysql_errno(&gMysql)) htmlPlainTextError(mysql_error(&gMysql));
//sprintf(gcQuery,"New record %u added");
uIPType=mysql_insert_id(&gMysql);
uCreatedDate=luGetCreatedDate("tIPType",uIPType);
unxsVZLog(uIPType,"tIPType","New");
if(!uMode)
{
sprintf(gcQuery,LANG_NBR_NEWRECADDED,uIPType);
tIPType(gcQuery);
}
}//NewtIPType(unsigned uMode)
void DeletetIPType(void)
{
sprintf(gcQuery,"DELETE FROM tIPType WHERE uIPType=%u AND ( uOwner=%u OR %u>9 )"
,uIPType,guLoginClient,guPermLevel);
MYSQL_RUN;
//tIPType("Record Deleted");
if(mysql_affected_rows(&gMysql)>0)
{
unxsVZLog(uIPType,"tIPType","Del");
tIPType(LANG_NBR_RECDELETED);
}
else
{
unxsVZLog(uIPType,"tIPType","DelError");
tIPType(LANG_NBR_RECNOTDELETED);
}
}//void DeletetIPType(void)
void Insert_tIPType(void)
{
//insert query
sprintf(gcQuery,"INSERT INTO tIPType SET uIPType=%u,cLabel='%s',cComment='%s',uOwner=%u,uCreatedBy=%u,uCreatedDate=UNIX_TIMESTAMP(NOW())",
uIPType
,TextAreaSave(cLabel)
,TextAreaSave(cComment)
,uOwner
,uCreatedBy
);
MYSQL_RUN;
}//void Insert_tIPType(void)
void Update_tIPType(char *cRowid)
{
//update query
sprintf(gcQuery,"UPDATE tIPType SET uIPType=%u,cLabel='%s',cComment='%s',uModBy=%u,uModDate=UNIX_TIMESTAMP(NOW()) WHERE _rowid=%s",
uIPType
,TextAreaSave(cLabel)
,TextAreaSave(cComment)
,uModBy
,cRowid);
MYSQL_RUN;
}//void Update_tIPType(void)
void ModtIPType(void)
{
register int i=0;
MYSQL_RES *res;
MYSQL_ROW field;
unsigned uPreModDate=0;
//Mod select gcQuery
if(guPermLevel<10)
sprintf(gcQuery,"SELECT tIPType.uIPType,\
tIPType.uModDate\
FROM tIPType,tClient\
WHERE tIPType.uIPType=%u\
AND tIPType.uOwner=tClient.uClient\
AND (tClient.uOwner=%u OR tClient.uClient=%u)"
,uIPType,guLoginClient,guLoginClient);
else
sprintf(gcQuery,"SELECT uIPType,uModDate FROM tIPType\
WHERE uIPType=%u"
,uIPType);
MYSQL_RUN_STORE(res);
i=mysql_num_rows(res);
//if(i<1) tIPType("<blink>Record does not exist");
if(i<1) tIPType(LANG_NBR_RECNOTEXIST);
//if(i>1) tIPType("<blink>Multiple rows!");
if(i>1) tIPType(LANG_NBR_MULTRECS);
field=mysql_fetch_row(res);
sscanf(field[1],"%u",&uPreModDate);
if(uPreModDate!=uModDate) tIPType(LANG_NBR_EXTMOD);
Update_tIPType(field[0]);
if(mysql_errno(&gMysql)) htmlPlainTextError(mysql_error(&gMysql));
//sprintf(query,"record %s modified",field[0]);
sprintf(gcQuery,LANG_NBRF_REC_MODIFIED,field[0]);
uModDate=luGetModDate("tIPType",uIPType);
unxsVZLog(uIPType,"tIPType","Mod");
tIPType(gcQuery);
}//ModtIPType(void)
void tIPTypeList(void)
{
MYSQL_RES *res;
MYSQL_ROW field;
ExttIPTypeListSelect();
MYSQL_RUN_STORE(res);
guI=mysql_num_rows(res);
PageMachine("tIPTypeList",1,"");//1 is auto header list guMode. Opens table!
//Filter select drop down
ExttIPTypeListFilter();
printf("<input type=text size=16 name=gcCommand maxlength=98 value=\"%s\" >",gcCommand);
printf("</table>\n");
printf("<table bgcolor=#9BC1B3 border=0 width=100%%>\n");
printf("<tr bgcolor=black>"
"<td><font face=arial,helvetica color=white>uIPType"
"<td><font face=arial,helvetica color=white>cLabel"
"<td><font face=arial,helvetica color=white>cComment"
"<td><font face=arial,helvetica color=white>uOwner"
"<td><font face=arial,helvetica color=white>uCreatedBy"
"<td><font face=arial,helvetica color=white>uCreatedDate"
"<td><font face=arial,helvetica color=white>uModBy"
"<td><font face=arial,helvetica color=white>uModDate</tr>");
mysql_data_seek(res,guStart-1);
for(guN=0;guN<(guEnd-guStart+1);guN++)
{
field=mysql_fetch_row(res);
if(!field)
{
printf("<tr><td><font face=arial,helvetica>End of data</table>");
Footer_ism3();
}
if(guN % 2)
printf("<tr bgcolor=#BBE1D3>");
else
printf("<tr>");
time_t luTime5=strtoul(field[5],NULL,10);
char cBuf5[32];
if(luTime5)
ctime_r(&luTime5,cBuf5);
else
sprintf(cBuf5,"---");
time_t luTime7=strtoul(field[7],NULL,10);
char cBuf7[32];
if(luTime7)
ctime_r(&luTime7,cBuf7);
else
sprintf(cBuf7,"---");
printf("<td><a class=darkLink href=unxsVZ.cgi?gcFunction=tIPType&uIPType=%s>%s</a>"
,field[0]
,field[0]);
printf("<td>%s<td><textarea disabled>%s</textarea><td>%s<td>%s<td>%s<td>%s<td>%s</tr>"
,field[1]
,field[2]
,ForeignKey("tClient","cLabel",strtoul(field[3],NULL,10))
,ForeignKey("tClient","cLabel",strtoul(field[4],NULL,10))
,cBuf5
,ForeignKey("tClient","cLabel",strtoul(field[6],NULL,10))
,cBuf7
);
}
printf("</table></form>\n");
Footer_ism3();
}//tIPTypeList()
void CreatetIPType(void)
{
sprintf(gcQuery,"CREATE TABLE IF NOT EXISTS tIPType ("
" uIPType INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,"
" cLabel VARCHAR(128) NOT NULL DEFAULT '',"
" uOwner INT UNSIGNED NOT NULL DEFAULT 0,INDEX (uOwner),"
" uCreatedBy INT UNSIGNED NOT NULL DEFAULT 0,"
" uCreatedDate INT UNSIGNED NOT NULL DEFAULT 0,"
" uModBy INT UNSIGNED NOT NULL DEFAULT 0,"
" uModDate INT UNSIGNED NOT NULL DEFAULT 0,"
" cComment TEXT NOT NULL DEFAULT '' )");
MYSQL_RUN;
}//CreatetIPType()