EpnTapMgr.php 2.78 KB
<?php
/**  @class EpnTapMgr
*	@brief Manager to communicates with EPN-TAP services.
*/

class EpnTapMgr {
	private $logEpnTap;

	function __construct()
	{
		$this->logEpnTap = fopen(LOG_DIR . "epnTap.log", "a");
		$this->addLog("\n---\n");
	}

	private function addLog($msg)
	{
		fwrite($this->logEpnTap, date("h:i:s A") . ": " . $msg . "\n");
	}

	private function dateToJD($gregorian_date) {
		list($day, $month, $year, $hours, $minutes, $seconds) = split('[/ :]', $gregorian_date);
		return GregorianToJD($month, $day, $year) + $hours/24 + $minutes/(24*60) + $seconds/(24*60*60);
	}

	public function JDTodate($jd) {
		list($month, $day, $year) = split('/', JDToGregorian($jd));
		$date = sprintf('%02d', $day) . '/' . sprintf('%02d', $month) . '/' . sprintf('%04d', $year);
		return ($date == '00/00/0000') ? '' : $date;
	}

	public function createFilter($dataproduct_type, $target_name, $time_min, $time_max) {
		$filter = array();
		if($dataproduct_type)
			array_push($filter, "dataproduct_type = '$dataproduct_type'");
		if($target_name)
			array_push($filter, "target_name = '$target_name'");
		if($time_min)
			array_push($filter, "time_min >= " . $this->dateToJD($time_min));
		if($time_max)
			array_push($filter, "time_max <= " . $this->dateToJD($time_max));
		return (count($filter) > 0 ? ' WHERE ' . join(' AND ', $filter) : '');
	}

	public function request($access_url, $query) {
		$votMgr = new VOTableMgr;
		$params = 'FORMAT=votable&LANG=ADQL&REQUEST=doQuery';
		$url = $access_url . '/sync?' . $params . '&QUERY=' . urlencode($query);

		$res = $votMgr->load($url);
		$this->addLog("Query URL: " . $url);
		$result = $votMgr->parseStream();
		return $votMgr->getVotableError() ? array('error' => $votMgr->getVotableError()) : $result;
	}

	/* filter order: product type, target name, time min, time max */
	public function getGranules($table_name, $access_url, $filter, $select, $limit, $offset) {
		$query = "SELECT TOP {$limit} " . join(', ', $select) . " FROM {$table_name}.epn_core " . $this->createFilter($filter[0], $filter[1], $filter[2], $filter[3]) . " OFFSET {$offset}";
		// return $query;
		$result = $this->request($access_url, $query);
		if(! array_key_exists("error", $result)) {
			for ($i = 0 ; $i < sizeof($result) ; $i++) {
				$result[$i]['num'] = $i + $offset + 1;
				$result[$i]['time_min'] = $this->JDTodate($result[$i]['time_min']);
				$result[$i]['time_max'] = $this->JDTodate($result[$i]['time_max']);
			}
		}
		return $result;
	}

	/* filter order: product type, target name, time min, time max */
	public function getNbRows($table_name, $access_url, $filter) {
		$query = "SELECT COUNT(*) AS nb_rows FROM {$table_name}.epn_core " . $this->createFilter($filter[0], $filter[1], $filter[2], $filter[3]);
		// return $query;
		return $this->request($access_url, $query)[0]['nb_rows'];
	}

}
?>