Subversion Repositories vgwhois

Compare Revisions

No changes between revisions

Regard whitespace Rev 1 → Rev 2

/trunk/main/subprograms/pk
0,0 → 1,93
#!/usr/bin/php
<?php
 
#
# generic Whois - Subprogram "pk"
#
# (c) 2012 by Daniel Marschall, ViaThinkSoft <www.viathinksoft.de>
#
# Distribution, usage etc. pp. regulated by the current version of GPL.
#
#
#
# History:
# 2012-11-19 mar Initial release
#
 
require_once __DIR__ . '/../../shared/php_includes/common_functions.inc.php';
 
$domain = isset($argv[1]) ? $argv[1] : '';
 
$url = "http://pk5.pknic.net.pk/pk5/lookup.PK";
 
$res = "% Parsing via regex from '$url'\n\n";
 
$x = file_get_contents2($url, 'name='.$domain);
 
if (strpos($x, '<XPC_RESULT_NOTFOUND/>') !== false) {
define('BEGIN', '<td id="Tmain">');
define('END', '<XPC_RESULT_NOTFOUND/>');
} else {
define('BEGIN', '<p class="pkheading">');
define('END', '<SPAN class="sideHead">');
}
 
preg_match_all('@'.preg_quote(BEGIN, '@').'(.*)'.preg_quote(END, '@').'@ismU', $x, $m);
 
if (!isset($m[1][0])) {
echo "Error while parsing the web content. Could not find limitations.\n";
exit(1);
}
$x = $m[1][0];
 
$x = strip_tags($x);
 
// é -> É @ strtoupper()
/*
$locals = array('es_ES@euro', 'es_ES', 'es');
reset($locals);
while (list(, $locale) = each ($locals)) {
if ( setlocale(LC_CTYPE, $locale) == $locale ) {
break; // Exit when we were successfull
}
}
*/
 
$x = str_replace('&nbsp;', ' ', $x);
 
$x = html_entity_decode($x);
 
$x = preg_replace("| +|", ' ', $x);
$x = preg_replace("|\n *|", "\n", $x);
$x = preg_replace("| *\n|", "\n", $x);
$x = preg_replace("|\n+|", "\n", $x);
 
$x = str_replace(":\n", ": ", $x);
 
while (strpos($x, "\t") !== false) $x = str_replace("\t", '', $x);
while (strpos($x, ' ') !== false) $x = str_replace(' ', ' ', $x);
 
# Avoid "Contact person: Address:" if there is no contact person. Add a line break
$x = preg_replace('@^([^:\n]+):\s+([^\n:]+):@m', "\\1:\n\\2:", $x);
 
$x = make_tabs($x);
 
$x = trim($x);
 
$x = preg_replace("@\n\s+\n@", "\n\n", $x);
 
while (strpos($x, "\n\n") !== false) $x = str_replace("\n\n", "\n", $x);
 
$x = preg_replace('@The Domain record for(.*)\n@', 'The Domain record for\\1'."\n\n", $x);
 
$special_words = array(
'Technical Contact',
'Billing Contact',
'Nameservers'
);
 
foreach ($special_words as $s) {
$x = str_replace($s, "\n".uc_latin1($s)."\n", $x);
}
 
echo $res.trim_each_line($x)."\n";
Property changes:
Added: svn:executable
+*
\ No newline at end of property