-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtlogtype.c
553 lines (457 loc) · 13.1 KB
/
tlogtype.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
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
/*
FILE
tLogType source code of unxsVZ.cgi
Built by mysqlRAD2.cgi (C) Gary Wallis 2001-2007
PURPOSE
Log type codes table
AUTHOR/LEGAL
(C) 2001-2016 Gary Wallis for Unixservice, LLC.
GPLv2 license applies. See LICENSE file.
*/
//git describe version info
static char *cGitVersion="GitVersion:"GitVersion;
#include "mysqlrad.h"
//Table Variables
//Table Variables
//uLogType: Primary Key
static unsigned uLogType=0;
//cLabel: Short label
static char cLabel[33]={""};
//uOwner: Record owner
static unsigned uOwner=0;
//uCreatedBy: uClient for last insert
static unsigned uCreatedBy=0;
#define ISM3FIELDS
//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_tLogType "tLogType.uLogType,tLogType.cLabel,tLogType.uOwner,tLogType.uCreatedBy,tLogType.uCreatedDate,tLogType.uModBy,tLogType.uModDate"
//Local only
void Insert_tLogType(void);
void Update_tLogType(char *cRowid);
void ProcesstLogTypeListVars(pentry entries[], int x);
//In tLogTypefunc.h file included below
void ExtProcesstLogTypeVars(pentry entries[], int x);
void ExttLogTypeCommands(pentry entries[], int x);
void ExttLogTypeButtons(void);
void ExttLogTypeNavBar(void);
void ExttLogTypeGetHook(entry gentries[], int x);
void ExttLogTypeSelect(void);
void ExttLogTypeSelectRow(void);
void ExttLogTypeListSelect(void);
void ExttLogTypeListFilter(void);
void ExttLogTypeAuxTable(void);
#include "tlogtypefunc.h"
//Table Variables Assignment Function
void ProcesstLogTypeVars(pentry entries[], int x)
{
register int i;
for(i=0;i<x;i++)
{
if(!strcmp(entries[i].name,"uLogType"))
sscanf(entries[i].val,"%u",&uLogType);
else if(!strcmp(entries[i].name,"cLabel"))
sprintf(cLabel,"%.32s",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.
ExtProcesstLogTypeVars(entries,x);
}//ProcesstLogTypeVars()
void ProcesstLogTypeListVars(pentry entries[], int x)
{
register int i;
for(i=0;i<x;i++)
{
if(!strncmp(entries[i].name,"ED",2))
{
sscanf(entries[i].name+2,"%u",&uLogType);
guMode=2002;
tLogType("");
}
}
}//void ProcesstLogTypeListVars(pentry entries[], int x)
int tLogTypeCommands(pentry entries[], int x)
{
ProcessControlVars(entries,x);
ExttLogTypeCommands(entries,x);
if(!strcmp(gcFunction,"tLogTypeTools"))
{
if(!strcmp(gcFind,LANG_NB_LIST))
{
tLogTypeList();
}
//Default
ProcesstLogTypeVars(entries,x);
tLogType("");
}
else if(!strcmp(gcFunction,"tLogTypeList"))
{
ProcessControlVars(entries,x);
ProcesstLogTypeListVars(entries,x);
tLogTypeList();
}
return(0);
}//tLogTypeCommands()
void tLogType(const char *cResult)
{
MYSQL_RES *res;
MYSQL_RES *res2;
MYSQL_ROW field;
//Internal skip reloading
if(!cResult[0])
{
if(guMode)
ExttLogTypeSelectRow();
else
ExttLogTypeSelect();
mysql_query(&gMysql,gcQuery);
if(mysql_errno(&gMysql))
{
if(strstr(mysql_error(&gMysql)," doesn't exist"))
{
CreatetLogType();
unxsVZ("New tLogType 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 tLogType WHERE uLogType=%u"
,uLogType);
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",&uLogType);
sprintf(cLabel,"%.32s",field[1]);
sscanf(field[2],"%u",&uOwner);
sscanf(field[3],"%u",&uCreatedBy);
sscanf(field[4],"%lu",&uCreatedDate);
sscanf(field[5],"%u",&uModBy);
sscanf(field[6],"%lu",&uModDate);
}
}//Internal Skip
Header_ism3(":: tLogType",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=tLogTypeTools>");
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%%>");
ExttLogTypeButtons();
printf("</td><td valign=top>");
//
OpenFieldSet("tLogType Record Data",100);
if(guMode==2000 || guMode==2002)
tLogTypeInput(1);
else
tLogTypeInput(0);
//
CloseFieldSet();
//Bottom table
printf("<tr><td colspan=2>");
ExttLogTypeAuxTable();
Footer_ism3();
}//end of tLogType();
void tLogTypeInput(unsigned uMode)
{
//uLogType
OpenRow(LANG_FL_tLogType_uLogType,"black");
printf("<input title='%s' type=text name=uLogType value=%u size=16 maxlength=10 "
,LANG_FT_tLogType_uLogType,uLogType);
if(guPermLevel>=20 && uMode)
{
printf("></td></tr>\n");
}
else
{
printf("disabled></td></tr>\n");
printf("<input type=hidden name=uLogType value=%u >\n",uLogType);
}
//cLabel
OpenRow(LANG_FL_tLogType_cLabel,"black");
printf("<input title='%s' type=text name=cLabel value=\"%s\" size=40 maxlength=32 "
,LANG_FT_tLogType_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));
}
//uOwner
OpenRow(LANG_FL_tLogType_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_tLogType_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_tLogType_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_tLogType_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_tLogType_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 tLogTypeInput(unsigned uMode)
void NewtLogType(unsigned uMode)
{
register int i=0;
MYSQL_RES *res;
sprintf(gcQuery,"SELECT uLogType FROM tLogType\
WHERE uLogType=%u"
,uLogType);
MYSQL_RUN_STORE(res);
i=mysql_num_rows(res);
if(i)
//tLogType("<blink>Record already exists");
tLogType(LANG_NBR_RECEXISTS);
//insert query
Insert_tLogType();
if(mysql_errno(&gMysql)) htmlPlainTextError(mysql_error(&gMysql));
//sprintf(gcQuery,"New record %u added");
uLogType=mysql_insert_id(&gMysql);
#ifdef ISM3FIELDS
uCreatedDate=luGetCreatedDate("tLogType",uLogType);
unxsVZLog(uLogType,"tLogType","New");
#endif
if(!uMode)
{
sprintf(gcQuery,LANG_NBR_NEWRECADDED,uLogType);
tLogType(gcQuery);
}
}//NewtLogType(unsigned uMode)
void DeletetLogType(void)
{
#ifdef ISM3FIELDS
sprintf(gcQuery,"DELETE FROM tLogType WHERE uLogType=%u AND ( uOwner=%u OR %u>9 )"
,uLogType,guLoginClient,guPermLevel);
#else
sprintf(gcQuery,"DELETE FROM tLogType WHERE uLogType=%u"
,uLogType);
#endif
MYSQL_RUN;
//tLogType("Record Deleted");
if(mysql_affected_rows(&gMysql)>0)
{
#ifdef ISM3FIELDS
unxsVZLog(uLogType,"tLogType","Del");
#endif
tLogType(LANG_NBR_RECDELETED);
}
else
{
#ifdef ISM3FIELDS
unxsVZLog(uLogType,"tLogType","DelError");
#endif
tLogType(LANG_NBR_RECNOTDELETED);
}
}//void DeletetLogType(void)
void Insert_tLogType(void)
{
//insert query
sprintf(gcQuery,"INSERT INTO tLogType SET uLogType=%u,cLabel='%s',uOwner=%u,uCreatedBy=%u,uCreatedDate=UNIX_TIMESTAMP(NOW())",
uLogType
,TextAreaSave(cLabel)
,uOwner
,uCreatedBy
);
MYSQL_RUN;
}//void Insert_tLogType(void)
void Update_tLogType(char *cRowid)
{
//update query
sprintf(gcQuery,"UPDATE tLogType SET uLogType=%u,cLabel='%s',uModBy=%u,uModDate=UNIX_TIMESTAMP(NOW()) WHERE _rowid=%s",
uLogType
,TextAreaSave(cLabel)
,uModBy
,cRowid);
MYSQL_RUN;
}//void Update_tLogType(void)
void ModtLogType(void)
{
register int i=0;
MYSQL_RES *res;
MYSQL_ROW field;
#ifdef ISM3FIELDS
unsigned uPreModDate=0;
//Mod select gcQuery
if(guPermLevel<10)
sprintf(gcQuery,"SELECT tLogType.uLogType,\
tLogType.uModDate\
FROM tLogType,tClient\
WHERE tLogType.uLogType=%u\
AND tLogType.uOwner=tClient.uClient\
AND (tClient.uOwner=%u OR tClient.uClient=%u)"
,uLogType,guLoginClient,guLoginClient);
else
sprintf(gcQuery,"SELECT uLogType,uModDate FROM tLogType\
WHERE uLogType=%u"
,uLogType);
#else
sprintf(gcQuery,"SELECT uLogType FROM tLogType\
WHERE uLogType=%u"
,uLogType);
#endif
MYSQL_RUN_STORE(res);
i=mysql_num_rows(res);
//if(i<1) tLogType("<blink>Record does not exist");
if(i<1) tLogType(LANG_NBR_RECNOTEXIST);
//if(i>1) tLogType("<blink>Multiple rows!");
if(i>1) tLogType(LANG_NBR_MULTRECS);
field=mysql_fetch_row(res);
#ifdef ISM3FIELDS
sscanf(field[1],"%u",&uPreModDate);
if(uPreModDate!=uModDate) tLogType(LANG_NBR_EXTMOD);
#endif
Update_tLogType(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]);
#ifdef ISM3FIELDS
uModDate=luGetModDate("tLogType",uLogType);
unxsVZLog(uLogType,"tLogType","Mod");
#endif
tLogType(gcQuery);
}//ModtLogType(void)
void tLogTypeList(void)
{
MYSQL_RES *res;
MYSQL_ROW field;
ExttLogTypeListSelect();
MYSQL_RUN_STORE(res);
guI=mysql_num_rows(res);
PageMachine("tLogTypeList",1,"");//1 is auto header list guMode. Opens table!
//Filter select drop down
ExttLogTypeListFilter();
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>uLogType<td><font face=arial,helvetica color=white>cLabel<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 luTime4=strtoul(field[4],NULL,10);
char cBuf4[32];
if(luTime4)
ctime_r(&luTime4,cBuf4);
else
sprintf(cBuf4,"---");
time_t luTime6=strtoul(field[6],NULL,10);
char cBuf6[32];
if(luTime6)
ctime_r(&luTime6,cBuf6);
else
sprintf(cBuf6,"---");
printf("<td><a class=darkLink href=unxsVZ.cgi?gcFunction=tLogType&uLogType=%s>%s</a>"
,field[0]
,field[0]);
printf("<td>%s<td>%s<td>%s<td>%s<td>%s<td>%s</tr>"
,field[1]
,ForeignKey("tClient","cLabel",strtoul(field[2],NULL,10))
,ForeignKey("tClient","cLabel",strtoul(field[3],NULL,10))
,cBuf4
,ForeignKey("tClient","cLabel",strtoul(field[5],NULL,10))
,cBuf6
);
}
printf("</table></form>\n");
Footer_ism3();
}//tLogTypeList()
void CreatetLogType(void)
{
sprintf(gcQuery,"CREATE TABLE IF NOT EXISTS tLogType ("
" uModDate INT UNSIGNED NOT NULL DEFAULT 0,"
" uModBy INT UNSIGNED NOT NULL DEFAULT 0,"
" uOwner INT UNSIGNED NOT NULL DEFAULT 0,INDEX (uOwner),"
" uCreatedBy INT UNSIGNED NOT NULL DEFAULT 0,"
" uCreatedDate INT UNSIGNED NOT NULL DEFAULT 0,"
" uLogType INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,"
" cLabel VARCHAR(32) NOT NULL DEFAULT '' )");
MYSQL_RUN;
}//CreatetLogType()