-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtgroup.c
585 lines (489 loc) · 14.1 KB
/
tgroup.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
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
/*
FILE
tGroup source code of unxsVZ.cgi
PURPOSE
Group table
AUTHOR
(C) 2001-2016 Gary Wallis for Unixservice, LLC.
*/
#include "mysqlrad.h"
void GetGroupProp(const unsigned uGroup,const char *cName,char *cValue);
//Table Variables
//Table Variables
//uGroup: Primary Key
static unsigned uGroup=0;
//cLabel: Short label
static char cLabel[33]={""};
//uGroupType: Group type association
static unsigned uGroupType=0;
static char cuGroupTypePullDown[256]={""};
//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;
//git describe version info
static char *cGitVersion="GitVersion:"GitVersion;
#define VAR_LIST_tGroup "tGroup.uGroup,tGroup.cLabel,tGroup.uGroupType,tGroup.uOwner,tGroup.uCreatedBy,tGroup.uCreatedDate,tGroup.uModBy,tGroup.uModDate"
//Local only
void Insert_tGroup(void);
void Update_tGroup(char *cRowid);
void ProcesstGroupListVars(pentry entries[], int x);
//In tGroupfunc.h file included below
void ExtProcesstGroupVars(pentry entries[], int x);
void ExttGroupCommands(pentry entries[], int x);
void ExttGroupButtons(void);
void ExttGroupNavBar(void);
void ExttGroupGetHook(entry gentries[], int x);
void ExttGroupSelect(void);
void ExttGroupSelectRow(void);
void ExttGroupListSelect(void);
void ExttGroupListFilter(void);
void ExttGroupAuxTable(void);
#include "tgroupfunc.h"
int ReadPullDownOwner(const char *cTableName,const char *cFieldName,
const char *cLabel,const unsigned uOwner);
//Table Variables Assignment Function
void ProcesstGroupVars(pentry entries[], int x)
{
register int i;
for(i=0;i<x;i++)
{
if(!strcmp(entries[i].name,"uGroup"))
sscanf(entries[i].val,"%u",&uGroup);
else if(!strcmp(entries[i].name,"cLabel"))
sprintf(cLabel,"%.32s",entries[i].val);
else if(!strcmp(entries[i].name,"uGroupType"))
sscanf(entries[i].val,"%u",&uGroupType);
else if(!strcmp(entries[i].name,"cuGroupTypePullDown"))
{
sprintf(cuGroupTypePullDown,"%.255s",entries[i].val);
uGroupType=ReadPullDown("tGroupType","cLabel",cuGroupTypePullDown);
}
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.
ExtProcesstGroupVars(entries,x);
}//ProcesstGroupVars()
void ProcesstGroupListVars(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",&uGroup);
guMode=2002;
tGroup("");
}
}
}//void ProcesstGroupListVars(pentry entries[], int x)
int tGroupCommands(pentry entries[], int x)
{
ProcessControlVars(entries,x);
ExttGroupCommands(entries,x);
if(!strcmp(gcFunction,"tGroupTools"))
{
if(!strcmp(gcFind,LANG_NB_LIST))
{
tGroupList();
}
//Default
ProcesstGroupVars(entries,x);
tGroup("");
}
else if(!strcmp(gcFunction,"tGroupList"))
{
ProcessControlVars(entries,x);
ProcesstGroupListVars(entries,x);
tGroupList();
}
return(0);
}//tGroupCommands()
void tGroup(const char *cResult)
{
MYSQL_RES *res;
MYSQL_RES *res2;
MYSQL_ROW field;
//Internal skip reloading
if(!cResult[0])
{
if(guMode)
ExttGroupSelectRow();
else
ExttGroupSelect();
mysql_query(&gMysql,gcQuery);
if(mysql_errno(&gMysql))
{
if(strstr(mysql_error(&gMysql)," doesn't exist"))
{
CreatetGroup();
unxsVZ("New tGroup 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 tGroup WHERE uGroup=%u"
,uGroup);
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",&uGroup);
sprintf(cLabel,"%.32s",field[1]);
sscanf(field[2],"%u",&uGroupType);
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(":: Container or node group",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=tGroupTools>");
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%%>");
ExttGroupButtons();
printf("</td><td valign=top>");
//
OpenFieldSet("tGroup Record Data",100);
if(guMode==2000 || guMode==2002)
tGroupInput(1);
else
tGroupInput(0);
//
CloseFieldSet();
//Bottom table
printf("<tr><td colspan=2>");
ExttGroupAuxTable();
Footer_ism3();
}//end of tGroup();
void tGroupInput(unsigned uMode)
{
//uGroup
OpenRow(LANG_FL_tGroup_uGroup,"black");
printf("<input title='%s' type=text name=uGroup value=%u size=16 maxlength=10 "
,LANG_FT_tGroup_uGroup,uGroup);
if(guPermLevel>=20 && uMode)
{
printf("></td></tr>\n");
}
else
{
printf("disabled></td></tr>\n");
printf("<input type=hidden name=uGroup value=%u >\n",uGroup);
}
//cLabel
OpenRow(LANG_FL_tGroup_cLabel,"black");
printf("<input title='%s' type=text name=cLabel value=\"%s\" size=40 maxlength=32 "
,LANG_FT_tGroup_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));
}
//uGroupType
OpenRow(LANG_FL_tGroup_uGroupType,"black");
if(guPermLevel>=10 && uMode)
tTablePullDownOwner("tGroupType;cuGroupTypePullDown","cLabel","cLabel",uGroupType,1);
else
tTablePullDownOwner("tGroupType;cuGroupTypePullDown","cLabel","cLabel",uGroupType,0);
//uOwner
OpenRow(LANG_FL_tGroup_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_tGroup_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_tGroup_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_tGroup_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_tGroup_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");
char cGraph0[256]={""};
GetGroupProp(uGroup,"Graph0",cGraph0);
if(cGraph0[0])
{
OpenRow("Optional Graph","black");
printf("<img src=%s border=0>\n",cGraph0);
printf("</tr>\n");
}
}//void tGroupInput(unsigned uMode)
void NewtGroup(unsigned uMode)
{
register int i=0;
MYSQL_RES *res;
sprintf(gcQuery,"SELECT uGroup FROM tGroup\
WHERE uGroup=%u"
,uGroup);
MYSQL_RUN_STORE(res);
i=mysql_num_rows(res);
if(i)
//tGroup("<blink>Record already exists");
tGroup(LANG_NBR_RECEXISTS);
//insert query
Insert_tGroup();
if(mysql_errno(&gMysql)) htmlPlainTextError(mysql_error(&gMysql));
//sprintf(gcQuery,"New record %u added");
uGroup=mysql_insert_id(&gMysql);
#ifdef ISM3FIELDS
uCreatedDate=luGetCreatedDate("tGroup",uGroup);
unxsVZLog(uGroup,"tGroup","New");
#endif
if(!uMode)
{
sprintf(gcQuery,LANG_NBR_NEWRECADDED,uGroup);
tGroup(gcQuery);
}
}//NewtGroup(unsigned uMode)
void DeletetGroup(void)
{
#ifdef ISM3FIELDS
sprintf(gcQuery,"DELETE FROM tGroup WHERE uGroup=%u AND ( uOwner=%u OR %u>9 )"
,uGroup,guLoginClient,guPermLevel);
#else
sprintf(gcQuery,"DELETE FROM tGroup WHERE uGroup=%u"
,uGroup);
#endif
MYSQL_RUN;
//tGroup("Record Deleted");
if(mysql_affected_rows(&gMysql)>0)
{
#ifdef ISM3FIELDS
unxsVZLog(uGroup,"tGroup","Del");
#endif
tGroup(LANG_NBR_RECDELETED);
}
else
{
#ifdef ISM3FIELDS
unxsVZLog(uGroup,"tGroup","DelError");
#endif
tGroup(LANG_NBR_RECNOTDELETED);
}
}//void DeletetGroup(void)
void Insert_tGroup(void)
{
//insert query
sprintf(gcQuery,"INSERT INTO tGroup SET uGroup=%u,cLabel='%s',uGroupType=%u,uOwner=%u,uCreatedBy=%u,uCreatedDate=UNIX_TIMESTAMP(NOW())",
uGroup
,TextAreaSave(cLabel)
,uGroupType
,uOwner
,uCreatedBy
);
MYSQL_RUN;
}//void Insert_tGroup(void)
void Update_tGroup(char *cRowid)
{
//update query
sprintf(gcQuery,"UPDATE tGroup SET uGroup=%u,cLabel='%s',uGroupType=%u,uModBy=%u,uModDate=UNIX_TIMESTAMP(NOW()) WHERE _rowid=%s",
uGroup
,TextAreaSave(cLabel)
,uGroupType
,uModBy
,cRowid);
MYSQL_RUN;
}//void Update_tGroup(void)
void ModtGroup(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 tGroup.uGroup,\
tGroup.uModDate\
FROM tGroup,tClient\
WHERE tGroup.uGroup=%u\
AND tGroup.uOwner=tClient.uClient\
AND (tClient.uOwner=%u OR tClient.uClient=%u)"
,uGroup,guLoginClient,guLoginClient);
else
sprintf(gcQuery,"SELECT uGroup,uModDate FROM tGroup\
WHERE uGroup=%u"
,uGroup);
#else
sprintf(gcQuery,"SELECT uGroup FROM tGroup\
WHERE uGroup=%u"
,uGroup);
#endif
MYSQL_RUN_STORE(res);
i=mysql_num_rows(res);
//if(i<1) tGroup("<blink>Record does not exist");
if(i<1) tGroup(LANG_NBR_RECNOTEXIST);
//if(i>1) tGroup("<blink>Multiple rows!");
if(i>1) tGroup(LANG_NBR_MULTRECS);
field=mysql_fetch_row(res);
#ifdef ISM3FIELDS
sscanf(field[1],"%u",&uPreModDate);
if(uPreModDate!=uModDate) tGroup(LANG_NBR_EXTMOD);
#endif
Update_tGroup(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("tGroup",uGroup);
unxsVZLog(uGroup,"tGroup","Mod");
#endif
tGroup(gcQuery);
}//ModtGroup(void)
void tGroupList(void)
{
MYSQL_RES *res;
MYSQL_ROW field;
ExttGroupListSelect();
MYSQL_RUN_STORE(res);
guI=mysql_num_rows(res);
PageMachine("tGroupList",1,"");//1 is auto header list guMode. Opens table!
//Filter select drop down
ExttGroupListFilter();
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>uGroup<td><font face=arial,helvetica color=white>cLabel<td><font face=arial,helvetica color=white>uGroupType<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=tGroup&uGroup=%s>%s</a>"
,field[0]
,field[0]);
printf("<td>%s<td>%s<td>%s<td>%s<td>%s<td>%s<td>%s</tr>"
,field[1]
,ForeignKey("tGroupType","cLabel",strtoul(field[2],NULL,10))
,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();
}//tGroupList()
void CreatetGroup(void)
{
sprintf(gcQuery,"CREATE TABLE IF NOT EXISTS tGroup ("
" uGroup INT UNSIGNED PRIMARY KEY AUTO_INCREMENT,"
" cLabel VARCHAR(32) 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,"
" uGroupType INT UNSIGNED NOT NULL DEFAULT 0,index (uGroupType) )");
mysql_query(&gMysql,gcQuery);
if(mysql_errno(&gMysql))
htmlPlainTextError(mysql_error(&gMysql));
}//CreatetGroup()