summaryrefslogtreecommitdiffstats
path: root/dogtag/tps-ui/shared/docroot/esc/GenericAuth.html
blob: 7891a0cc376b4ae119b49585e590157ed48e1e8d (plain)
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
<!-- --- BEGIN COPYRIGHT BLOCK ---
     This program is free software; you can redistribute it and/or modify
     it under the terms of the GNU General Public License as published by
     the Free Software Foundation; version 2 of the License.

     This program is distributed in the hope that it will be useful,
     but WITHOUT ANY WARRANTY; without even the implied warranty of
     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     GNU General Public License for more details.

     You should have received a copy of the GNU General Public License along
     with this program; if not, write to the Free Software Foundation, Inc.,
     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.

     Copyright (C) 2009 Red Hat, Inc.
     All rights reserved.
     --- END COPYRIGHT BLOCK --- -->
<html>
<head>
<style>

body {
background: #ffffff url(../images/bg.jpg) repeat-x;
        font-family: arial;
        font-size: 7pt;

}

h1
{
   text-align: left;

   font-weight: bold;

   font-size: 13pt;


}


h2 {

    text-align: left;
    font-size: 10pt; 

    font-weight: lighter;
}

</style>
<script language = "Javascript">

var test_ui = "id=USER_ID&name=User ID&desc=User ID&type=string&option=option1,option2,option3&&id=USER_PWD&name=User Password&desc=User Password&type=password&option=&&id=USER_PIN&name=PIN&desc=One time PIN received via mail&type=password&option=";

var theForm = null;
var curKeyID = null;
var curKeyType = 0; 


var gTitle = null;
var gDescription = null;



function ConfirmPassword(password_element)
{

  if(!password_element)
      return 0;

  password_id = password_element.id;

  if(!password_id)
     return 0;

  confirm_id = "RE_" + password_element.id;

  var size = theForm.length;

  if(theForm)
  {
      for(i = 0; i < size ; i++)
      {
         var cur_element = theForm.elements[i];
  
         if(cur_element.id == confirm_id)
         {
             if(cur_element.value != password_element.value)
             {
                 alert("Value " + password_element.name + " must match " + cur_element.name);
                 return 0;

             }
             else
             {
                 return 1;
             } 

         } 

      }

  }

  return 1;
}

function Validate()
{
    if(theForm)
    {
         var size = theForm.length;
 
         for( i = 0; i < size ; i++)
         {
             var element = theForm.elements[i];

             if(element.type == "text" )
             {
                 if(element.value == "")
                 {
                     alert("Please enter value for " + element.name);
                     return 0; 
                 }
             }

             if(element.type == "password")
             {
                 if(element.value == "")
                 {
                     alert("Please enter value for " + element.name);
                     return 0;
                 }

                 if(!ConfirmPassword(element))
                 {
                     return 0;
                 }

             } 
         } 
   
    }

    return 1;
}

function FormSubmit()
{
    var result = Validate();

    var thisParent = window.opener;

    if(!parent)
    {
        alert("No parent window.");
        window.close(); 
        return; 
    }
  
    if(!result)
    {
        return;
    }

    if(theForm)
    {
         var size = theForm.length;
         for( i = 0; i < size ; i++)
         {
             var element = theForm.elements[i];

             var value = element.value;

             if(element.type == "text" )
             {
                 var id = element.id;
                 value = element.value;

                 if(thisParent)
                 {
                     //alert("about to set data value key " + curKeyID + " id " + id + " value " + value);
                     thisParent.COOLKeySetDataValue(curKeyType,curKeyID,id,value);

                 }
             }

             if(element.type == "password")
             {
                 var p_id = new String(element.id);

                 if(p_id.indexOf("RE_") == -1)
                 {                   
                     if(thisParent)
                     {
                         thisParent.COOLKeySetDataValue(curKeyType,curKeyID,p_id,value); 
                     }
                 }
             }
         }

     }
   
     window.close(); 
}

function GetUIObjectList(uiData)
{
    var  str = new String(uiData);
    var splits = str.split("&&");

//    alert("Get " + splits + " len " + splits.length);

    var params = new Array();
    var size = splits.length;

    for(i = 0 ; i <  size ; i++)
    {
       params[i] = splits[i].split("&");
    }

    size = params.length;
    var name_value_objects = new Array();

    for(i = 0 ; i < size; i++)
    {
         var name_values = new Array();

         pISize = params[i].length;
         for(j = 0 ;  j < pISize ; j ++)
         {
             var pair = params[i][j].split("=");

             //alert(" pair " + pair[0] + " pair1 " + pair[1]);

             if(pair[0] == "option")
             {
                 var options = pair[1].split(",");
             }

             name_values[pair[0]] = pair[1];
         }

         name_value_objects[i] = name_values;
    }

    return name_value_objects;

}

function AddBRToNode(theNode)
{

   if(!theNode)
       return;

   var br = document.createElement("br");

   theNode.appendChild(br);

}

function AddTextToNode(theNode,theText)
{

    if(!theNode || !theText)
        return;


    var text = document.createTextNode(theText);

    theNode.appendChild(text);
      



}
function AddTextToDocument(theText)
{
    if(!theText)
         return;

     var p = document.createElement("p");

     if(p)
     {
         p.appendChild(document.createTextNode(theText));
     } 

     document.body.appendChild(p);
}

function CreateForm()
{
    var form = document.createElement("form");
    document.body.appendChild(form);
    return form;
}

function CreateTable()
{
  var table = document.createElement("table");
  document.body.appendChild(table);
  tbody = document.createElement("tbody");
  table.appendChild(tbody);

  return table;
}

function AddRowToTable(table)
{
    if(!table)
        return null;

    var tr = document.createElement("tr");
    (table.tBodies[0]).appendChild(tr);

    return tr; 
}

function AddColumnToRow(row)
{
  if(!row)
     return null;

  var td = document.createElement("td");
  row.appendChild(td);

  return td;
}

function AddTextToColumn(column,text)
{
   if(!column || !text)
       return;

   var text_node = document.createTextNode(text);
   column.appendChild(text_node);

   return text_node;
}

function AddInputField(type,id, name,value)
{
    var    field = document.createElement("input");
   
    if(!field)
        return null;
  
    field.type =  type;   
    field.id =id;
    field.name =name;
    field.value =value;

    return field;
}

function ConstructUI(aKeyType,aKeyID,uiData)
{

    //alert("Construct UI data " + uiData);
    var name_value_objects = GetUIObjectList(uiData);
    var len = name_value_objects.length;

    gTitle = document.createElement("h1");

    gDescription = document.createElement("h2");


    document.body.appendChild(gTitle);


    document.body.appendChild(gDescription);


    form = CreateForm(); 
    theForm = form;
    curKeyID = aKeyID;
    curKeyType = aKeyType;

    table = CreateTable();

    form.appendChild(table);

    for(i = 0 ; i < len ; i ++)
    {
        curParameter = name_value_objects[i];

        if(curParameter)
        {

            title = curParameter["title"];


            if(title)
            {
                //alert("title " + title);

                AddTextToNode(gTitle,title);
 

            }

            description = curParameter["description"];

            if(description)
            {
               AddBRToNode(document.body);
               AddBRToNode(document.body);

               AddTextToNode(gDescription,description);

               AddBRToNode(document.body);

            }

            id   = curParameter["id"];
            name = curParameter["name"];
            type = curParameter["type"];
            desc = curParameter["desc"]; 

            //alert(" id " + id + " name " + name + " type " + type + " desc " + desc); 

            if(id)
            {
               if(table)
               {
                   row = AddRowToTable(table);
               }

               if(row)
               {
                   column = AddColumnToRow(row);
               }

               if(column)
               {
                    AddTextToColumn(column,name);
               }

               if(type == "string" || type == "integer")
               {
                   field = AddInputField("text",id,name,"");
               }

               re_field = null;
 
               if(type == "password")
               {
                   field = AddInputField("password",id,name,"");
               }

               if(type == "hidden")
               {
                   field = AddInputField("hidden",id,name,"");
               } 

               if(field)
               {
                   field_col = AddColumnToRow(row);                
                   if(field_col)
                   {
                       field_col.appendChild(field);
                   }
               }

               if(re_field)
               {
                 re_text = AddColumnToRow(row);

                 if(re_text)
                 {
                     AddTextToColumn(re_text,"Confirm " + name);
                     re_field_col = AddColumnToRow(row);
                     if(re_field_col)
                     {
                         re_field_col.appendChild(re_field);
                     }
                   
                 } 

               }
           }

        }

    }

    var last_row = AddRowToTable(table);

    if(last_row)
    {
        var button_field = AddColumnToRow(last_row);

        if(button_field)
        {
           var button = AddInputField("button","Submit","Submit","Submit");
            button.onclick = FormSubmit;
            button_field.appendChild(button);

        }

    } 
}

function UiLoad()
{


   var thisParent = window.opener;


   if(!thisParent)
   {
        alert("Auth dialog has no parent!");
        return;
   }

   var keyID =  this.name;

   var ui = thisParent.getUIForKey(keyID); 

   var type = thisParent.getTypeForKey(keyID);

   //alert("UiLoad " + ui);

   if(ui)
   {
       ConstructUI(type,keyID,ui);
   }
}

</script>
</head>
<body onload = "UiLoad()"> 
</body>
</html>