Subject: CAcert Code Development list.
List archive
- From: Wytze van der Raay <wytze AT cacert.org>
- To: Michael Tänzer <michael.taenzer AT cacert.org>
- Cc: "critical-admin AT cacert.org" <critical-admin AT cacert.org>, cacert-devel AT lists.cacert.org, Ulrich Schröter CAcert <ulrich AT cacert.org>, Dirk Astrath <dirk.astrath AT cacert.org>, Marcus Mängel <inopiae AT cacert.org>, Martin Gummi <martin.gummi AT cacert.org>
- Subject: Re: Patch request: Bug #1023
- Date: Wed, 30 May 2012 19:54:34 +0200
Hi Michael,
Op 30-5-2012 0:42, Michael Tänzer schreef:
> We have a fix for https://bugs.cacert.org/view.php?id=1023
> "Consolidate changes into the Assure Someone page"
>
> The fix was reviewed by Dirk Astrath (dastrath) and me (NEOatNHNG) and
> tested by Ulrich Schröter (Uli60), Marcus Mängel (INOPIAE) and Martin
> Gummi (MartinGummi).
>
> Diff is attached.
>
> Changed files:
> includes/wot.inc.php
> pages/wot/6.php
The patch has been installed on the production server on May 30, 2012;
see also the attached log message.
Regards,
-- wytze
--- Begin Message ---Fix for https://bugs.cacert.org/view.php?id=1023
- From: Wytze van der Raay <wytze AT cacert.org>
- To: cacert-systemlog AT lists.cacert.org
- Subject: Fwd: [cvs.cacert.org checkin notification]
- Date: Wed, 30 May 2012 19:51:30 +0200
Consolidate changes into the Assure Someone page.
In conjunction with the attached CVS changes a new tarball has been
made available incorporating all updates. The new tarball is available
through http://www.cacert.org/src-lic.php
-- end
--- Begin Message ---
- From: "root" <root AT cvs.cacert.org>
- To: critical-admin AT cacert.org
- Subject: cvs.cacert.org checkin notification
- Date: Wed, 30 May 2012 19:48:15 +0200 (CEST)
uid=0(root) gid=0(root) groups=0(root)
wot.inc.php 1.5 1.6
Wed May 30 19:48:15 CEST 2012
Update of /var/lib/cvs/cacert/includes
In directory hlin:/home/cacert/www/includes
Modified Files:
wot.inc.php
Log Message:
Fix for https://bugs.cacert.org/view.php?id=1023
Consolidate changes into the Assure Someone page.
===================================================================
RCS file: /var/lib/cvs/cacert/includes/wot.inc.php,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- wot.inc.php 2011/11/16 14:58:46 1.5
+++ wot.inc.php 2012/05/30 17:48:14 1.6
@@ -536,4 +536,94 @@
<p>[ <a href='javascript:history.go(-1)'><?=_("Go Back")?></a> ]</p>
<?
}
+
+// functions for 6.php (assure somebody)
+
+function AssureHead($confirmation,$checkname)
+{
?>
+<form method="post" action="wot.php">
+ <table align="center" valign="middle" border="0" cellspacing="0"
cellpadding="0" class="wrapper" width="600">
+ <tr>
+ <td colspan="2" class="title"><?=$confirmation?></td>
+ </tr>
+ <tr>
+ <td class="DataTD" colspan="2"
align="left"><?=$checkname?></td>
+ </tr>
+<?
+ }
+
+function AssureTextLine($field1,$field2)
+{
+?>
+ <tr>
+ <td class="DataTD"><?=$field1?>:</td>
+ <td class="DataTD"><?=$field2?></td>
+ </tr>
+<?
+}
+
+function AssureCCABoxLine($type,$text)
+{
+ return;
+ AssureBoxLine($type,$text);
+}
+
+function AssureBoxLine($type,$text,$checked)
+{
+?>
+ <tr>
+ <td class="DataTD"><input type="checkbox" name="<?=$type?>"
value="1" <?=$checked?"checked":""?>></td>
+ <td class="DataTD"><?=$text?></td>
+ </tr>
+<?
+}
+
+function AssureMethodLine($text,$methods,$remark)
+{
+ if (count($methods) != 1)
+ {
+?>
+ <tr>
+ <td class="DataTD"><?=$text?></td>
+ <td class="DataTD">
+ <select name="method">
+<?
+ foreach($methods as $val) { ?>
+ <option value="<?=$val?>"> <?=$val?></option>
+
+<? } ?>
+ </select>
+ </br><?=$remark?>
+ </td>
+ </tr>
+<?
+ } else {
+?>
+ <input type="hidden" name="<?=$val?>" value="<?=$methods[0]?>">
+<?
+ }
+}
+
+function AssureInboxLine($type,$field,$value,$description)
+{
+?>
+ <tr>
+ <td class="DataTD"><?=$field?>:</td>
+ <td class="DataTD"><input type="text" name="<?=$type?>"
value="<?=$value?>"><?=$description?></td>
+ </tr>
+<?
+}
+
+function AssureFoot($oldid,$confirm)
+{?>
+ <tr>
+ <td class="DataTD" colspan="2"><input type="submit"
name="process" value="<?=$confirm?>"> <input type="submit" name="cancel"
value="<?=_("Cancel")?>"></td>
+ </tr>
+ </table>
+ <input type="hidden" name="pagehash"
value="<?=$_SESSION['_config']['wothash']?>">
+ <input type="hidden" name="oldid" value="<?=$oldid?>">
+</form>
+<?
+}
+
--- End Message ------ Begin Message ---
- From: "root" <root AT cvs.cacert.org>
- To: critical-admin AT cacert.org
- Subject: cvs.cacert.org checkin notification
- Date: Wed, 30 May 2012 19:48:20 +0200 (CEST)
uid=0(root) gid=0(root) groups=0(root)
6.php 1.34 1.35
Wed May 30 19:48:20 CEST 2012
Update of /var/lib/cvs/cacert/pages/wot
In directory hlin:/home/cacert/www/pages/wot
Modified Files:
6.php
Log Message:
Fix for https://bugs.cacert.org/view.php?id=1023
Consolidate changes into the Assure Someone page.
===================================================================
RCS file: /var/lib/cvs/cacert/pages/wot/6.php,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- 6.php 2012/01/19 20:22:45 1.34
+++ 6.php 2012/05/30 17:48:19 1.35
@@ -16,6 +16,11 @@
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA
*/ ?>
<?
+
+function makecap()
+{
+}
+
if(!array_key_exists('notarise',$_SESSION['_config']))
{
echo "Error: No user data found.";
@@ -24,147 +29,38 @@
$row = $_SESSION['_config']['notarise'];
- if(!array_key_exists('pointsalready',$_SESSION['_config']))
$_SESSION['_config']['pointsalready']=0;
-
-
- if($_SESSION['profile']['ttpadmin'] == 1 &&
$_SESSION['profile']['board'] == 1)
- {
- $methods = array("Face to Face Meeting", "Trusted Third
Parties", "Thawte Points Transfer", "Administrative Increase", "CT Magazine -
Germany");
- } else if($_SESSION['profile']['ttpadmin'] == 1) {
- $methods = array("Face to Face Meeting", "Trusted Third
Parties");
- }
-
- $cap = "/cap.php?";
- $name = $row['fname']." ".$row['mname']." ".$row['lname']."
".$row['suffix'];
- $_SESSION['_config']['wothash'] = md5($name."-".$row['dob']);
- while(strstr($name, " "))
- $name = str_replace(" ", " ", $name);
- $cap .= "name=".urlencode($name);
- $cap .= "&dob=".urlencode($row['dob']);
- $cap .= "&email=".urlencode($row['email']);
- $name = $_SESSION['profile']['fname']."
".$_SESSION['profile']['mname']." ".$_SESSION['profile']['lname']."
".$_SESSION['profile']['suffix'];
- while(strstr($name, " "))
- $name = str_replace(" ", " ", $name);
- $cap .= "&assurer=".urlencode($name);
- $cap .= "&date=now";
- $cap .= "&maxpoints=".maxpoints();
-
- $maxpoints = maxpoints();
- if($maxpoints > 100)
- $maxpoints = 100;
-
- if(array_key_exists('error',$_SESSION['_config']) &&
$_SESSION['_config']['error'] != "") { ?><font color="#ff0000"
size="+1">ERROR: <?=$_SESSION['_config']['error']?></font><?
unset($_SESSION['_config']['error']); } ?>
-<form method="post" action="wot.php">
-<table align="center" valign="middle" border="0" cellspacing="0"
cellpadding="0" class="wrapper" width="600">
- <tr>
- <td colspan="2" class="title"><?=_("Assurance Confirmation")?></td>
- </tr>
-<? if(array_key_exists('alreadydone',$_SESSION['_config']) &&
$_SESSION['_config']['alreadydone'] == 1) { ?>
- <tr>
- <td class="DataTD" colspan="2" align="left" style="color:
red;"><b><?=_("PLEASE NOTE: You have already assured this person before! If
this is unintentional please DO NOT CONTINUE with this assurance.")?></b></td>
- </tr>
-<?
- } if(100 - $_SESSION['_config']['pointsalready'] - $maxpoints < 0) {
- ?>
- <tr>
- <td class="DataTD" colspan="2" align="left" style="color: red;"><b><?
printf(_("This person already has %s assurance points. Any points you give
this person may be rounded down, or they may not even get any points. If you
have less then 150 points you will still receive 2 points for assuring
them."), $_SESSION['_config']['pointsalready']); ?></b></td>
- </tr>
-<? }
-
- $query = "select `verified` from `users` where `id`='".$row['id']."'";
- $res = mysql_query($query);
- $drow = mysql_fetch_assoc($res);
- //if($_SESSION['_config']['verified'] <= 0)
- if($drow['verified']<=0)
- { ?>
- <tr>
- <td class="DataTD" colspan="2" align="left" style="color:
red;"><b><?=_("You are about to assure a person that isn't currently
verified. If you continue and they do not verify their account within 48
hours the account could automatically be removed by the system.")?></b></td>
- </tr>
-<? } ?>
- <tr>
- <td class="DataTD" colspan="2" align="left"><? printf(_("Please check
the following details match against what you witnessed when you met %s in
person. You MUST NOT proceed unless you are sure the details are correct. You
may be held responsible by the CAcert Arbitrator for any issues with this
Assurance."), $row['fname']); ?></td>
- </tr>
- <tr>
- <td class="DataTD"><?=_("Name")?>:</td>
- <td class="DataTD"><?=$row['fname']?> <?=$row['mname']?>
<?=$row['lname']?> <?=$row['suffix']?></td>
- </tr>
- <tr>
- <td class="DataTD"><?=_("Date of Birth")?>:</td>
- <td class="DataTD"><?=$row['dob']?> (<?=_("YYYY-MM-DD")?>)</td>
- </tr>
-<? if($_SESSION['profile']['ttpadmin'] == 1) { ?>
- <tr>
- <td class="DataTD"><?=_("Method")?>:</td>
- <td class="DataTD"><select name="method">
-<? foreach($methods as $val) { ?>
- <option value="<?=$val?>"<?
if(array_key_exists('method',$_POST) && $val == $_POST['method']) echo "
selected"; ?>><?=$val?></option>
-<? } ?>
- </select>
- </td>
- </tr>
- <tr>
- <td class="DataTD" colspan="2"><?=_("Only tick the next box if the
Assurance was face to face.")?></td>
- </tr>
-<? } ?>
- <tr>
- <td class="DataTD"><input type="checkbox" name="certify" value="1"<?
if(array_key_exists('certify',$_POST) && $_POST['certify'] == 1) echo "
checked"; ?>></td>
- <td class="DataTD"><? printf(_("I certify that %s %s %s has appeared in
person"), $row['fname'], $row['mname'], $row['lname']); ?></td>
- </tr>
- <tr>
- <td class="DataTD"><?=_("Location")?>:</td>
- <td class="DataTD"><input type="text" name="location"
value="<?=array_key_exists('location',$_SESSION['_config'])?$_SESSION['_config']['location']:""?>"></td>
- </tr>
- <tr>
- <td class="DataTD"><?=_("Date")?>:</td>
- <td class="DataTD"><input type="text" name="date"
value="<?=array_key_exists('date',$_SESSION['_config'])?$_SESSION['_config']['date']:""?>"><br><?=_("Only
fill this in if you assured the person on a different day")?></td>
- </tr>
-<? if($_SESSION['profile']['board'] == 1 &&
$_SESSION['_config']['pointsalready'] <= 150) { ?>
- <tr>
- <td class="DataTD" colspan="2"><?=_("Issuing a temporary increase will
automatically boost their points to 200 points for a nomindated amount of
days, after which the person will be reduced to 150 points regardless of the
amount of points they had previously. Regardless of method chosen above it
will be recorded in the system as an Administrative Increase and there is a
maximum amount of 45 days that points can be issued for.")?></td>
- </tr>
- <tr>
- <td class="DataTD"><nobr><?=_("Temporary
Increase")?>:</nobr><br><nobr><?=_("Number of days")?></nobr></td>
- <td class="DataTD"><input type="text" name="expire"
value="<?=intval(array_key_exists('expire',$_POST)?$_POST['expire']:0)?>"></td>
- </tr>
- <tr>
- <td class="DataTD"><nobr><?=_("Sponsoring Member")?>:</td>
- <td class="DataTD"><select name="sponsor">
-<?
- $query = "select * from `users` where `board`='1' and
`id`!='".intval($_SESSION['profile']['id'])."'";
- $res = mysql_query($query);
- while($row = mysql_fetch_assoc($res))
- {
+ if($_SESSION['profile']['ttpadmin'] == 1)
+// $methods = array("Face to Face Meeting", "Trusted 3rd
Parties", "TopUP");
+// else
+ $methods = array("Face to Face Meeting", "Trusted 3rd
Parties");
+ else
+ $methods = array("Face to Face Meeting");
+
+ $fname = $row['fname'];
+ $mname = $row['mname'];
+ $lname = $row['lname'];
+ $suffix = $row['suffix'];
+ $dob = $row['dob'];
+ $name = $fname." ".$mname." ".$lname." ".$suffix;
+ $_SESSION['_config']['wothash'] = md5($name."-".$dob);
+
+
$cap=makecap($fname,$mname,$lname,$suffix,$dob,$row['email'],$_SESSION['profile']['fname'],$_SESSION['profile']['mname'],$_SESSION['profile']['lname'],$_SESSION['profile']['suffix']);
+
+
include_once($_SESSION['_config']['filepath']."/includes/wot.inc.php");
+
+ AssureHead(_("Assurance Confirmation"),sprintf(_("Please check the
following details match against what you witnessed when you met %s in person.
You MUST NOT proceed unless you are sure the details are correct. You may be
held responsible by the CAcert Arbitrator for any issues with this
Assurance."), $fname));
+ AssureTextLine(_("Name"),$name);
+ AssureTextLine(_("Date of Birth"),$dob." ("._("YYYY-MM-DD").")");
+ AssureBoxLine("certify",sprintf(_("I certify that %s %s %s has
appeared in person"), $fname, $mname,
$lname),array_key_exists('certify',$_POST) && $_POST['certify'] == 1);
+
AssureInboxLine("location",_("Location"),array_key_exists('location',$_SESSION['_config'])?$_SESSION['_config']['location']:"","");
+
AssureInboxLine("date",_("Date"),array_key_exists('date',$_SESSION['_config'])?$_SESSION['_config']['date']:date("Y-m-d"),"<br/>"._("Please
adjust the date if you assured the person on a different day"));
+ AssureMethodLine(_("Method"),$methods,_("Only tick the next box if
the Assurance was face to face."));
+ AssureBoxLine("assertion",_("I believe that the assertion of identity
I am making is correct, complete and verifiable. I have seen original
documentation attesting to this identity. I accept that the CAcert Arbitrator
may call upon me to provide evidence in any dispute, and I may be held
responsible."),array_key_exists('assertion',$_POST) && $_POST['assertion'] ==
1);
+ AssureBoxLine("rules",_("I have read and understood the Assurance
Policy and the Assurance Handbook and am making this Assurance subject to and
in compliance with the policy and
handbook."),array_key_exists('rules',$_POST) && $_POST['rules'] == 1);
+ AssureTextLine(_("Policy"),"<a href=\"/policy/AssurancePolicy.php\"
target=\"_blank\">"._("Assurance Policy")."</a> - <a
href=\"http://wiki.cacert.org/AssuranceHandbook2\"
target=\"_blank\">"._("Assurance Handbook")."</a>");
+ AssureInboxLine("points",_("Points"),"","<br />(Max.
".maxpoints().")");
+ AssureCCABoxLine("CCAAgreed",sprintf(_("Check this box only if %s
agreed to the <a href=\"/policy/CAcertCommunityAgreement.php\">CAcert
Community Agreement</a>"),$fname));
+ AssureCCABoxLine("CCAAgree",_("Check this box only if YOU agree to
the <a href=\"/policy/CAcertCommunityAgreement.php\">CAcert Community
Agreement</a>"));
+ AssureTextLine(_("WoT Form"),"<a href=\"".$cap."\"
target=\"_blank\">A4 - "._("WoT Form")."</a> <a
href=\"".$cap."&format=letter\" target=\"_blank\">US - "._("WoT
Form")."</a>");
+ AssureFoot($id,_("I confirm this Assurance"));
?>
- <option value="<?=$row['id']?>"<?
if(array_key_exists('sponsor',$_POST) && $row['id'] == $_POST['sponsor'])
echo " selected='selected'"; ?>><?=$row['fname']." ".$row['lname']?></option>
-<? } ?>
- </select>
- </td>
- </tr>
-<? } ?>
- <tr>
- <td class="DataTD"><input type="checkbox" name="assertion" value="1"<?
if(array_key_exists('assertion',$_POST) && $_POST['assertion'] == 1) echo "
checked='checked'"; ?>></td>
- <td class="DataTD"><?=_("I believe that the assertion of identity I am
making is correct, complete and verifiable. I have seen original
documentation attesting to this identity. I accept that the CAcert Arbitrator
may call upon me to provide evidence in any dispute, and I may be held
responsible.")?></td>
- </tr>
- <tr>
- <td class="DataTD"><input type="checkbox" name="rules" value="1"<?
if(array_key_exists('rules',$_POST) && $_POST['rules'] == 1) echo "
checked='checked'"; ?>></td>
- <td class="DataTD"><?=_("I have read and understood the Assurance Policy
and the Assurance Handbook and am making this Assurance subject to and in
compliance with the policy and handbook.")?></td>
- </tr>
- <tr>
- <td class="DataTD"><?=_("Policy")?>:</td>
- <td class="DataTD"><a href="/policy/AssurancePolicy.php"
target="_NEW"><?=_("Assurance Policy")?></a> - <a
href="http://wiki.cacert.org/AssuranceHandbook2"
target="_NEW"><?=_("Assurance Handbook")?></a></td>
- </tr>
- <tr>
- <td class="DataTD"><?=_("Points")?>:<br><nobr>(Max
<?=maxpoints()?>)</nobr></td>
- <td class="DataTD"><input type="text" name="points" value=""></td>
- </tr>
- <tr>
- <td class="DataTD"><?=_("WoT Form")?>:</td>
- <td class="DataTD"><a href="<?=$cap?>" target="_NEW">A4 - <?=_("WoT
Form")?></a> <a href="<?=$cap?>&format=letter" target="_NEW">US -
<?=_("WoT Form")?></a></td>
- </tr>
- <tr>
- <td class="DataTD" colspan="2"><input type="submit" name="process"
value="<?=_("I confirm this Assurance")?>"> <input type="submit"
name="cancel" value="<?=_("Cancel")?>"></td>
- </tr>
-</table>
-<input type="hidden" name="pagehash"
value="<?=$_SESSION['_config']['wothash']?>">
-<input type="hidden" name="oldid" value="<?=$id?>">
-</form>
--- End Message ---Attachment: smime.p7s
Description: S/MIME cryptografische ondertekening
--- End Message ---
Attachment:
smime.p7s
Description: S/MIME cryptografische ondertekening
- Patch request: Bug #1023, Michael Tänzer, 05/29/2012
- Re: Patch request: Bug #1023, Wytze van der Raay, 05/30/2012
Archive powered by MHonArc 2.6.16.