More MySQL purging
[contractdashboard.git] / lib / common.inc.php
blob:a/lib/common.inc.php -> blob:b/lib/common.inc.php
<?php <?php
date_default_timezone_set("Australia/ACT"); date_default_timezone_set("Australia/ACT");
   
error_reporting(E_ALL ^ E_NOTICE); error_reporting(E_ALL ^ E_NOTICE);
   
   
$conn = new PDO("pgsql:dbname=contractDashboard;user=postgres;password=snmc;host=localhost"); $conn = new PDO("pgsql:dbname=contractDashboard;user=postgres;password=snmc;host=localhost");
   
if (!$conn) { if (!$conn) {
die("A database error occurred.\n"); die("A database error occurred.\n");
} }
   
// $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); define('ROOT', pathinfo(__FILE__, PATHINFO_DIRNAME));
function databaseError($errMsg) if (strstr($_SERVER['PHP_SELF'], "labs/") || strstr($_SERVER['PHP_SELF'], "admin/") || strstr($_SERVER['PHP_SELF'], "heuristics/")) {
{ $basePath = "../";
if ($errMsg[2] != "") { }
die(print_r($errMsg,true)); require ROOT . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'lib' . DIRECTORY_SEPARATOR . 'openid.php';
} $openid = new LightOpenID($_SERVER['HTTP_HOST']);
} // you have to open the session to be able to modify or remove it
  session_start();
function ucsmart($str) { function login() {
$shortWords = Array("The","Pty","Ltd","Inc","Red","Oil","A","An","And","At","For","In" global $openid;
,"Of","On","Or","The","To","With"); if (!$openid->mode) {
$strArray = explode(" ",preg_replace("/(?<=(?<!:|’s)\W) $openid->required = array('contact/email');
(A|An|And|At|For|In|Of|On|Or|The|To|With) $openid->identity = 'https://www.google.com/accounts/o8/id';
(?=\W)/e", 'strtolower("$1")', ucwords(strtolower($str)))); header('Location: ' . $openid->authUrl());
foreach($strArray as &$word) { }
if (strlen($word) <= 4 && !in_array($word,$shortWords)) $word = strtoupper($word); }
}  
return implode(" ",$strArray); function auth() {
} global $openid;
  if ($_SESSION['authed'] == true) {
function percent($num_amount, $num_total) { return true;
$count1 = $num_amount / $num_total; }
$count2 = $count1 * 100;  
$count = number_format($count2, 2); if ($openid->mode) {
return $count; $attr = $openid->getAttributes();
} if ($attr['contact/email'] != 'maxious@gmail.com') {
function array_sum_all($a) { die('Access Denied');
if(!is_array($a)) return $a; } else {
foreach($a as $key=>$value) $_SESSION['authed'] = true;
$totale += array_sum_all($value); }
return $totale; } else {
} login();
// magic query modifiers }
$agency = filter_var($_REQUEST['agency'], FILTER_SANITIZE_STRING); }
if ($agency != "") $agencyQ = "agencyName = '" . $agency . "' AND ";  
  // $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$supplier = filter_var($_REQUEST['supplier'], FILTER_SANITIZE_STRING); function databaseError($errMsg) {
if ($supplier != "") { if ($errMsg[2] != "") {
$supplierParts = explode("-", $supplier); echo '<div class="alert-message error">';
$supplierName = "%".$supplierParts[1]."%"; if ($_SERVER['HTTP_HOST'] != "localhost") Amon::log(print_r($errMsg, true).print_r($_REQUEST, true).print_r($_SERVER, true), array('error'));
$supplierABN = $supplierParts[0]; die(print_r($errMsg, true));
if ($supplierParts[0] > 0) $supplierQ = ' "supplierABN" = :supplierABN AND '; echo "</div>";
else $supplierQ = ' "supplierName" LIKE :supplierName AND '; }
} }
   
$startYear = 2007; function ucsmart($str) {
$year = filter_var($_REQUEST['year'], FILTER_SANITIZE_NUMBER_INT); $shortWords = Array("The", "Pty", "Ltd", "Inc", "Red", "Oil", "A", "An", "And", "At", "For", "In"
if ($year != "") $yearQ = "YEAR(publishDate) = " . $year . " AND "; , "Of", "On", "Or", "The", "To", "With");
  $strArray = explode(" ", preg_replace("/(?<=(?<!:|’s)\W)
$standardQ = ' "childCN" is null '; // AND YEAR(contractStart) >= 2007 AND YEAR(contractStart) <= 2010'; (A|An|And|At|For|In|Of|On|Or|The|To|With)
$start =0.0; (?=\W)/e", 'strtolower("$1")', ucwords(strtolower($str))));
  foreach ($strArray as &$word) {
function include_header($title) { if (strlen($word) <= 4 && !in_array($word, $shortWords))
global $start; $word = strtoupper($word);
?> }
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" return implode(" ", $strArray);
"http://www.w3.org/TR/html4/strict.dtd"> }
<html>  
<head> function percent($num_amount, $num_total) {
<title>Contract Dashboard - <?php echo $title; ?></title> $count1 = $num_amount / $num_total;
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.0r4/build/reset-fonts-grids/reset-fonts-grids.css"> $count2 = $count1 * 100;
  $count = number_format($count2, 2);
<script type="text/javascript" src="lib/bsn.AutoSuggest_2.1.3_comp.js" charset="utf-8"></script> return $count;
<link rel="stylesheet" href="autosuggest_inquisitor.css" type="text/css" media="screen" charset="utf-8" /> }
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>  
<script type="text/javascript"> function array_sum_all($a) {
$(document).ready(function() if (!is_array($a))
{ return $a;
//hide the all of the element with class msg_body foreach ($a as $key => $value)
$(".msg_body").hide(); $totale += array_sum_all($value);
//toggle the componenet with class msg_body return $totale;
$(".msg_head").click(function() }
{  
$(this).next(".msg_body").slideToggle(600); // magic query modifiers
}); $agency = filter_var($_REQUEST['agency'], FILTER_SANITIZE_STRING);
}); if ($agency != "")
</script> $agencyQ = "agencyName = '" . $agency . "' AND ";
   
<style type="text/css" title="currentStyle"> $supplier = filter_var($_REQUEST['supplier'], FILTER_SANITIZE_STRING);
@import "media/css/demo_table.css"; if ($supplier != "") {
</style> $supplierParts = explode("-", $supplier);
<script type="text/javascript" language="javascript" src="media/js/jquery.dataTables.js"></script> $supplierName = "%" . $supplierParts[1] . "%";
<script type="text/javascript" charset="utf-8"> $supplierABN = $supplierParts[0];
jQuery.fn.dataTableExt.aTypes.unshift( if ($supplierParts[0] > 0)
function ( sData ) $supplierQ = ' "supplierABN" = :supplierABN AND ';
{ else
var sValidChars = "0123456789.-,"; $supplierQ = ' "supplierName" LIKE :supplierName AND ';
var Char; }
   
/* Check the numeric part */ $startYear = 2007;
for ( i=1 ; i<sData.length ; i++ ) $year = filter_var($_REQUEST['year'], FILTER_SANITIZE_NUMBER_INT);
{ if ($year != "") {
Char = sData.charAt(i); $yearQ = "YEAR(publishDate) = " . $year . " AND ";
if (sValidChars.indexOf(Char) == -1) }
{ $standardQ = ' "childCN" is null '; // AND YEAR(contractStart) >= 2007 AND YEAR(contractStart) <= 2010';
return null; $start = 0.0;
}  
} function local_url() {
  return "http://" . $_SERVER['HTTP_HOST'] . rtrim(dirname($_SERVER['PHP_SELF']), '/\\') . "/";
/* Check prefixed by currency */ }
if ( sData.charAt(0) == '$' || sData.charAt(0) == '£' )  
{ function include_header($title) {
return 'currency'; global $start;
} ?>
return null; <!DOCTYPE html>
} <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" version="XHTML+RDFa 1.1"
); xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
jQuery.fn.dataTableExt.oSort['currency-asc'] = function(a,b) { xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
/* Remove any commas (assumes that if present all strings will have a fixed number of d.p) */ xmlns:gr="http://purl.org/goodrelations/v1#"
var x = a == "-" ? 0 : a.replace( /,/g, "" ); xmlns:dc="http://purl.org/dc/terms/"
var y = b == "-" ? 0 : b.replace( /,/g, "" ); xmlns:pc="http://purl.org/procurement#"
  xmlns:unspsc="http://www.ksl.stanford.edu/projects/DAML/UNSPSC.daml#"
/* Remove the currency sign */ xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
x = x.substring( 1 ); xmlns:pcdt="http://purl.org/procurement/public-contracts-datatypes#"
y = y.substring( 1 ); prefix="rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
  rdfs: http://www.w3.org/2000/01/rdf-schema#
/* Parse and return */ gr: http://purl.org/goodrelations/v1#
x = parseFloat( x ); dcterms: http://purl.org/dc/terms/
y = parseFloat( y ); pc: http://purl.org/procurement/public-contracts#
return x - y; cpv: http://purl.org/weso/pscs/cpv/2008/resource/
}; unspsc: http://www.ksl.stanford.edu/projects/DAML/UNSPSC.daml#
  v: http://www.w3.org/2006/vcard/ns#
jQuery.fn.dataTableExt.oSort['currency-desc'] = function(a,b) { payment: http://reference.data.gov.uk/def/payment#
/* Remove any commas (assumes that if present all strings will have a fixed number of d.p) */ br: http://purl.org/business-register#
var x = a == "-" ? 0 : a.replace( /,/g, "" ); xsd: http://www.w3.org/2001/XMLSchema#
var y = b == "-" ? 0 : b.replace( /,/g, "" ); pcdt: http://purl.org/procurement/public-contracts-datatypes#">
  <head>
/* Remove the currency sign */ <title><?php echo $title; ?> - Contract Dashboard</title>
x = x.substring( 1 ); <link rel="stylesheet" type="text/css" href="bootstrap.min.css">
y = y.substring( 1 ); <link rel="stylesheet" type="text/css" href="bootstrap-responsive.css">
  <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
/* Parse and return */ <!--[if lt IE 9]>
x = parseFloat( x ); <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
y = parseFloat( y ); <![endif]-->
return y - x; <script type="text/javascript" src="lib/bsn.AutoSuggest_2.1.3_comp.js" charset="utf-8"></script>
}; <link rel="stylesheet" href="autosuggest_inquisitor.css" type="text/css" media="screen" charset="utf-8" />
$(document).ready(function() { <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
$('table').dataTable(); <script type="text/javascript">
} ); $(document).ready(function()
</script> {
<link type="text/css" rel="stylesheet" href="style.css"> //hide the all of the element with class msg_body
</head> $(".msg_body").hide();
<body><div id="doc3" class="yui-t4"> //toggle the componenet with class msg_body
<div id="hd"> $(".msg_head").click(function()
<h1> contract dashboard</h1> {
</div> $(this).next(".msg_body").slideToggle(600);
<div id="sitenav"> });
<a href="displayAgency.php">agencies</a> });
<a href="displaySupplier.php">suppliers</a> </script>
<a href="displayCategory.php">product/service categories</a>  
<a href="displayCalendar.php">time periods</a> <style type="text/css" title="currentStyle">
| metrics | @import "media/css/demo_table.css";
<a href="displayProcurementMethod.php">procurement method</a> </style>
<a href="displayConfidentialities.php">contractual confidentiality</a> <script type="text/javascript" language="javascript" src="media/js/jquery.dataTables.js"></script>
<a href="displayConsultancies.php">consultancies</a> <script type="text/javascript" language="javascript" src="lib/bootstrap-dropdown.js"></script>
<a href="displayAmendments.php">amendments</a> <script type="text/javascript" charset="utf-8">
<a href="displayMap.php">postcodes</a> jQuery.fn.dataTableExt.aTypes.unshift(
<div id="search"><form method="post" action="search.php" class="asholder"> function ( sData )
<label for="searchKeyword">search</label> {
<input type="text" id="searchKeyword" name="searchKeyword" value="" style="width:150px" /> var sValidChars = "0123456789.-,";
<input type="hidden" id="searchID" name="searchID" value=""/><input type="submit" value="submit" /> var Char;
</form></div>  
<script type="text/javascript"> /* Check the numeric part */
  for ( i=1 ; i<sData.length ; i++ )
var options_xml = { {
script: function (input) { return "search_autosuggest.php?input="+input; }, Char = sData.charAt(i);
varname:"input", if (sValidChars.indexOf(Char) == -1)
callback: function (obj) { document.getElementById('searchID').value = obj.id; } {
}; return null;
var as_xml = new bsn.AutoSuggest('searchKeyword', options_xml); }
</script> }
   
</div> /* Check prefixed by currency */
<div id="bd" role="main"> if ( sData.charAt(0) == '$' || sData.charAt(0) == '£' )
<div id="yui-main"> {
<div class="yui-b"><div class="yui-g"> return 'currency';
<?php }
$start = (float) array_sum(explode(' ',microtime())); return null;
} }
  );
function include_footer() { jQuery.fn.dataTableExt.oSort['currency-asc'] = function(a,b) {
global $start; /* Remove any commas (assumes that if present all strings will have a fixed number of d.p) */
$end = (float) array_sum(explode(' ',microtime())); var x = a == "-" ? 0 : a.replace( /,/g, "" );
?> var y = b == "-" ? 0 : b.replace( /,/g, "" );
</div>  
</div> /* Remove the currency sign */
</div> x = x.substring( 1 );
<div class="yui-b"> y = y.substring( 1 );
Filter by:<ul>  
<li>year /* Parse and return */
<ul><li>2008</li> x = parseFloat( x );
</ul> y = parseFloat( y );
</li> return x - y;
</ul> <br> </div> </div> };
   
<?php jQuery.fn.dataTableExt.oSort['currency-desc'] = function(a,b) {
echo '<div id="ft"><p>'."Processing time: ". sprintf("%.4f", ($end-$start))." seconds".'</p></div>'; /* Remove any commas (assumes that if present all strings will have a fixed number of d.p) */
echo '</div> </body> </html>'; var x = a == "-" ? 0 : a.replace( /,/g, "" );
} var y = b == "-" ? 0 : b.replace( /,/g, "" );
include ("graphs.inc.php");  
?> /* Remove the currency sign */
  x = x.substring( 1 );
  y = y.substring( 1 );
   
  /* Parse and return */
  x = parseFloat( x );
  y = parseFloat( y );
  return y - x;
  };
  $(document).ready(function() {
  $('table').dataTable();
  } );
  </script>
  <link type="text/css" rel="stylesheet" href="style.css">
  </head>
  <body>
  <div class="navbar">
  <div class="navbar-inner">
  <div class="container-fluid">
  <a class="brand" href="#">contract dashboard</a>
  <ul class="nav">
  <li><a href="displayAgency.php">agencies</a></li>
  <li><a href="displaySupplier.php">suppliers</a></li>
  <li><a href="displayCategory.php">categories</a></li>
  <li><a href="displayCalendar.php">time periods</a></li>
  <!-- <li class="dropdown">
  <a href="#" class="dropdown-toggle">metrics</a>
  <ul class="dropdown-menu">-->
  <li><a href="displayProcurementMethod.php">tenderm</a></li>
  <li><a href="displayConfidentialities.php">confidentiality</a></li>
  <li><a href="displayConsultancies.php">consultancies</a></li>
  <li><a href="displayAmendments.php">amendments</a></li>
  <li><a href="displayMap.php">geo</a></li>
  </ul>
   
   
  <form method="post" action="search.php" class="pull-right">
  <input type="text" id="searchKeyword" name="searchKeyword" value="" placeholder="Search" />
  <input type="hidden" id="searchID" name="searchID" value=""/>
  </form>
   
  </div>
  </div><!-- /topbar-inner -->
  </div><!-- /topbar -->
  </div><!-- /topbar-wrapper -->
  <script type="text/javascript">
   
  var options_xml = {
  script: function (input) { return "search_autosuggest.php?input="+input; },
  varname:"input",
  callback: function (obj) { document.getElementById('searchID').value = obj.id; }
  };
  var as_xml = new bsn.AutoSuggest('searchKeyword', options_xml);
  </script>
  <div class="container-fluid">
  <div class="row-fluid">
  <div class="span3">
  <div class="well sidebar-nav">
  <li class="nav-header">Filter by:</li>
  <li>2008</li>
  </div>
  </div>
  <div class="span9">
  <?php
  $start = (float) array_sum(explode(' ', microtime()));
  }
   
  function include_footer() {
  global $start;
  $end = (float) array_sum(explode(' ', microtime()));
   
  echo '</div> <footer>' . "Processing time: " . sprintf("%.4f", ($end - $start)) . " seconds" . ' <footer>';
   
  if (strpos($_SERVER['SERVER_NAME'], ".gs")) {
  ?>
  <script type="text/javascript">
   
  var _gaq = _gaq || [];
  _gaq.push(['_setAccount', 'UA-12341040-3']);
  _gaq.push(['_trackPageview']);
   
  (function() {
  var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);