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]."%"; die(print_r($errMsg, true));
$supplierABN = $supplierParts[0]; echo "</div>";
if ($supplierParts[0] > 0) $supplierQ = ' "supplierABN" = :supplierABN AND '; }
else $supplierQ = ' "supplierName" LIKE :supplierName AND '; }
}  
  function ucsmart($str) {
$startYear = 2007; $shortWords = Array("The", "Pty", "Ltd", "Inc", "Red", "Oil", "A", "An", "And", "At", "For", "In"
$year = filter_var($_REQUEST['year'], FILTER_SANITIZE_NUMBER_INT); , "Of", "On", "Or", "The", "To", "With");
if ($year != "") $yearQ = "YEAR(publishDate) = " . $year . " AND "; $strArray = explode(" ", preg_replace("/(?<=(?<!:|’s)\W)
  (A|An|And|At|For|In|Of|On|Or|The|To|With)
$standardQ = ' "childCN" is null '; // AND YEAR(contractStart) >= 2007 AND YEAR(contractStart) <= 2010'; (?=\W)/e", 'strtolower("$1")', ucwords(strtolower($str))));
$start =0.0; foreach ($strArray as &$word) {
  if (strlen($word) <= 4 && !in_array($word, $shortWords))
function include_header($title) { $word = strtoupper($word);
global $start; }
?> return implode(" ", $strArray);
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" }
"http://www.w3.org/TR/html4/strict.dtd">  
<html> function percent($num_amount, $num_total) {
<head> $count1 = $num_amount / $num_total;
<title>Contract Dashboard - <?php echo $title; ?></title> $count2 = $count1 * 100;
<link rel="stylesheet" type="text/css" href="http://yui.yahooapis.com/2.8.0r4/build/reset-fonts-grids/reset-fonts-grids.css"> $count = number_format($count2, 2);
  return $count;
<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" />  
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> function array_sum_all($a) {
<script type="text/javascript"> if (!is_array($a))
$(document).ready(function() return $a;
{ foreach ($a as $key => $value)
//hide the all of the element with class msg_body $totale += array_sum_all($value);
$(".msg_body").hide(); return $totale;
//toggle the componenet with class msg_body }
$(".msg_head").click(function()  
{ // magic query modifiers
$(this).next(".msg_body").slideToggle(600); $agency = filter_var($_REQUEST['agency'], FILTER_SANITIZE_STRING);
}); if ($agency != "")
}); $agencyQ = "agencyName = '" . $agency . "' AND ";
</script>  
  $supplier = filter_var($_REQUEST['supplier'], FILTER_SANITIZE_STRING);
<style type="text/css" title="currentStyle"> if ($supplier != "") {
@import "media/css/demo_table.css"; $supplierParts = explode("-", $supplier);
</style> $supplierName = "%" . $supplierParts[1] . "%";
<script type="text/javascript" language="javascript" src="media/js/jquery.dataTables.js"></script> $supplierABN = $supplierParts[0];
<script type="text/javascript" charset="utf-8"> if ($supplierParts[0] > 0)
jQuery.fn.dataTableExt.aTypes.unshift( $supplierQ = ' "supplierABN" = :supplierABN AND ';
function ( sData ) else
{ $supplierQ = ' "supplierName" ILIKE :supplierName AND ';
var sValidChars = "0123456789.-,"; }
var Char;  
  $startYear = 2007;
/* Check the numeric part */ $year = filter_var($_REQUEST['year'], FILTER_SANITIZE_NUMBER_INT);
for ( i=1 ; i<sData.length ; i++ ) if ($year != "") {
{ $yearQ = 'extract(year from "contractStart") = ' . $year . " AND ";
Char = sData.charAt(i); }
if (sValidChars.indexOf(Char) == -1) $standardQ = ' "childCN" is null '; // AND YEAR(contractStart) >= 2007 AND YEAR(contractStart) <= 2010';
{ $start = 0.0;
return null;  
} 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) {
{ global $start;
return 'currency'; ?>
} <!DOCTYPE html>
return null; <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#"
); xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
jQuery.fn.dataTableExt.oSort['currency-asc'] = function(a,b) { xmlns:gr="http://purl.org/goodrelations/v1#"
/* Remove any commas (assumes that if present all strings will have a fixed number of d.p) */ xmlns:dc="http://purl.org/dc/terms/"
var x = a == "-" ? 0 : a.replace( /,/g, "" ); xmlns:pc="http://purl.org/procurement#"
var y = b == "-" ? 0 : b.replace( /,/g, "" ); xmlns:unspsc="http://www.ksl.stanford.edu/projects/DAML/UNSPSC.daml#"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
/* Remove the currency sign */ xmlns:pcdt="http://purl.org/procurement/public-contracts-datatypes#"
x = x.substring( 1 ); prefix="rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
y = y.substring( 1 ); rdfs: http://www.w3.org/2000/01/rdf-schema#
  gr: http://purl.org/goodrelations/v1#
/* Parse and return */ dcterms: http://purl.org/dc/terms/
x = parseFloat( x ); pc: http://purl.org/procurement/public-contracts#
y = parseFloat( y ); cpv: http://purl.org/weso/pscs/cpv/2008/resource/
return x - y; unspsc: http://www.ksl.stanford.edu/projects/DAML/UNSPSC.daml#
}; v: http://www.w3.org/2006/vcard/ns#
  payment: http://reference.data.gov.uk/def/payment#
jQuery.fn.dataTableExt.oSort['currency-desc'] = function(a,b) { br: http://purl.org/business-register#
/* Remove any commas (assumes that if present all strings will have a fixed number of d.p) */ xsd: http://www.w3.org/2001/XMLSchema#
var x = a == "-" ? 0 : a.replace( /,/g, "" ); pcdt: http://purl.org/procurement/public-contracts-datatypes#">
var y = b == "-" ? 0 : b.replace( /,/g, "" ); <head>
  <title><?php echo $title; ?> - Contract Dashboard</title>
/* Remove the currency sign */ <link rel="stylesheet" type="text/css" href="bootstrap.min.css">
x = x.substring( 1 ); <link rel="stylesheet" type="text/css" href="bootstrap-responsive.css">
y = y.substring( 1 ); <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
  <!--[if lt IE 9]>
/* Parse and return */ <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
x = parseFloat( x ); <![endif]-->
y = parseFloat( y ); <script type="text/javascript" src="lib/bsn.AutoSuggest_2.1.3_comp.js" charset="utf-8"></script>
return y - x; <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.6.4/jquery.min.js"></script>
$(document).ready(function() { <script type="text/javascript">
$('table').dataTable(); $(document).ready(function()
} ); {
</script> //hide the all of the element with class msg_body
<link type="text/css" rel="stylesheet" href="style.css"> $(".msg_body").hide();
</head> //toggle the componenet with class msg_body
<body><div id="doc3" class="yui-t4"> $(".msg_head").click(function()
<div id="hd"> {
<h1> contract dashboard</h1> $(this).next(".msg_body").slideToggle(600);
</div> });
<div id="sitenav"> });
<a href="displayAgency.php">agencies</a> </script>
<a href="displaySupplier.php">suppliers</a>  
<a href="displayCategory.php">product/service categories</a> <style type="text/css" title="currentStyle">
<a href="displayCalendar.php">time periods</a> @import "media/css/demo_table.css";
| metrics | </style>
<a href="displayProcurementMethod.php">procurement method</a> <script type="text/javascript" language="javascript" src="media/js/jquery.dataTables.js"></script>
<a href="displayConfidentialities.php">contractual confidentiality</a> <script type="text/javascript" language="javascript" src="lib/bootstrap-dropdown.js"></script>
<a href="displayConsultancies.php">consultancies</a> <script type="text/javascript" charset="utf-8">
<a href="displayAmendments.php">amendments</a> jQuery.fn.dataTableExt.aTypes.unshift(
<a href="displayMap.php">postcodes</a> function ( sData )
<div id="search"><form method="post" action="search.php" class="asholder"> {
<label for="searchKeyword">search</label> var sValidChars = "0123456789.-,";
<input type="text" id="searchKeyword" name="searchKeyword" value="" style="width:150px" /> var Char;
<input type="hidden" id="searchID" name="searchID" value=""/><input type="submit" value="submit" />  
</form></div> /* Check the numeric part */
<script type="text/javascript"> for ( i=1 ; i<sData.length ; i++ )
  {
var options_xml = { Char = sData.charAt(i);
script: function (input) { return "search_autosuggest.php?input="+input; }, if (sValidChars.indexOf(Char) == -1)
varname:"input", {
callback: function (obj) { document.getElementById('searchID').value = obj.id; } return null;
}; }
var as_xml = new bsn.AutoSuggest('searchKeyword', options_xml); }
</script>  
  /* Check prefixed by currency */
</div> if ( sData.charAt(0) == '$' || sData.charAt(0) == '£' )
<div id="bd" role="main"> {
<div id="yui-main"> return 'currency';
<div class="yui-b"><div class="yui-g"> }
<?php return null;
$start = (float) array_sum(explode(' ',microtime())); }
} );
  jQuery.fn.dataTableExt.oSort['currency-asc'] = function(a,b) {
function include_footer() { /* Remove any commas (assumes that if present all strings will have a fixed number of d.p) */
global $start; var x = a == "-" ? 0 : a.replace( /,/g, "" );
$end = (float) array_sum(explode(' ',microtime())); var y = b == "-" ? 0 : b.replace( /,/g, "" );
?>  
</div> /* Remove the currency sign */
</div> x = x.substring( 1 );
</div> y = y.substring( 1 );
<div class="yui-b">  
Filter by:<ul> /* Parse and return */
<li>year x = parseFloat( x );
<ul><li>2008</li> y = parseFloat( y );
</ul> return x - y;
</li> };
</ul> <br> </div> </div>  
  jQuery.fn.dataTableExt.oSort['currency-desc'] = function(a,b) {
<?php /* Remove any commas (assumes that if present all strings will have a fixed number of d.p) */
echo '<div id="ft"><p>'."Processing time: ". sprintf("%.4f", ($end-$start))." seconds".'</p></div>'; var x = a == "-" ? 0 : a.replace( /,/g, "" );
echo '</div> </body> </html>'; 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">
  <h3> Filter by: </h3>
  <div class="well sidebar-nav">
  <li class="nav-header">Year</li>
  <?php
  foreach (range(2008,2015) as $year) {
  $get = $_GET;
  $get['year'] = $year;
  $query = http_build_query($get);
  echo "<li><A href='?$query'>";
  if ($_GET['year'] == $year) echo "<b>";
  echo "$year";
  if ($_GET['year'] == $year) echo "</b>";
  echo "</a></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">