You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-webdb/scripts/gpgfillmissingemail.php

86 lines
2.0 KiB
PHP

<? /*
Copyright (C) 2007 by CAcert Inc.
This file is part of CAcert.
CAcert has been released under the CAcert Source License
which can be found included with these source files or can
be downloaded from the internet from the following address:
http://www.cacert.org/src-lic.php
CAcert is distributed WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE. See the License for more details.
*/
require_once("../includes/mysql.php"); //general.php");
//include "../includes/general.php";
function hex2bin($data)
{
while(strstr($data, "\\x"))
{
$pos = strlen($data) - strlen(strstr($data, "\\x"));
$before = substr($data, 0, $pos);
$char = chr(hexdec(substr($data, $pos + 2, 2)));
$after = substr($data, $pos + 4);
$data = $before.$char.$after;
}
return(utf8_decode($data));
}
function csvize($str)
{
if (strpos($str, "\"") != "" || strpos($str, ",") != "") {
return "\"" . str_replace("\"", "\"\"", $str) . "\"";
}
return $str;
}
mb_regex_encoding("UTF-8");
echo "Seaching ...\n";
$res = mysql_query("SELECT * FROM gpg WHERE crt != '' and email=''");
if (!$res) {
echo "Query FROM gpg failed!\n";
exit;
}
echo "Found:\n";
$keys = array();
while ($row = mysql_fetch_assoc($res)) {
echo "ID: ".$row["id"]."\n";
$crt=$row["crt"];
$gpg = `gpg --with-colons --homedir /tmp $crt 2>/dev/null`;
//echo "gpg says\n".htmlspecialchars($gpg);
foreach (explode("\n", $gpg) as $line)
{
$bits = explode(":", $line);
if ($bits[0] != "pub" && $bits[0] != "uid") {
continue;
}
if($bits[0] == "pub")
{
if (preg_match("/<([\w.-]*\@[\w.-]*)>/", $bits[9],$match))
{
//echo "Found: ".$match[1];
$mail = trim(hex2bin($match[1]));
echo "EMail: *$mail**\n";
echo "update gpg set email='$mail' where id=$row[id]\n";
mysql_query("update gpg set email='$mail' where id=$row[id];");
}
}
}
}
echo "Done\n";
mysql_free_result($res);
?>