Skip to content

Instantly share code, notes, and snippets.

@crossworth
Created May 19, 2016 01:49
Show Gist options
  • Save crossworth/06bb4409b5684724b6f6ca5ec98ba9dd to your computer and use it in GitHub Desktop.
Save crossworth/06bb4409b5684724b6f6ca5ec98ba9dd to your computer and use it in GitHub Desktop.
<?php
/**
* _ ____ _ ____
* / \ | _ \ / \ / ___|
* / _ \ | | | |/ _ \ \___ \
* / ___ \| |_| / ___ \ ___) |
* /_/ \_\____/_/ \_\____/
*
* ADAS - Automatic Data Acquisition System - AWStats v1.0
* Pedro Henrique - system.pedrohenrique@gmail.com
* github.com/systemmovie
*
* 2015
* Fonte: http://geekthis.net/blog/111/parsing-awstats-with-php
*
**/
/* Sample Setup to test the code */
$month = $_GET['m'];
$year = $_GET['y'];
if (empty($month)) {
$month = date("m");
}
if (empty($year)) {
$year = date("Y");
}
$p = new AWStats($month, $year, $_SERVER['SERVER_NAME']);
$data = $p->data;
$dataArray = array();
$dataArray['TotalVisits'] = (int) substr($data[1]['content'][4], 11);
$dataArray['TotalUnique'] = (int) substr($data[1]['content'][5], 11);
echo json_encode($dataArray);
class AWStats {
private $fh = false;
public $lastError = false;
public $data = array();
function __construct($month,$year,$domain,$path='../tmp/awstats/') {
$filename = $path.'awstats'.$month.$year.'.'.$domain.'.txt';
if(!file_exists($filename)) {
$this->lastError = 'File does not exist.';
return false;
}
$this->fh = fopen($filename,'r');
if($this->fh === false) {
$this->lastError = 'File cannot be opened.';
return false;
}
$this->parse();
}
/* Checks if line is a comment */
private function comment($line) {
if(isset($line[0]) && $line[0] == '#') {
return true;
}
return false;
}
/* Builds an array based on a section */
private function section() {
$in_section = false;
$section_name = '';
$section_lines = 0;
$on_line = 0;
$section_content = array();
if($this->fh === false) {
return false;
}
while(($line = fgets($this->fh)) !== false) {
$line = trim($line);
if($this->comment($line)) {
continue;
}
if($in_section) {
if(strpos($line,'END_'.$section_name) === 0) {
return array(
'name' => $section_name,
'lines' => $section_lines,
'content' => $section_content
);
}else if($on_line <= $section_lines) {
array_push($section_content,$line);
$on_line++;
continue;
}else {
$this->lastError = 'Section Can Not Find Ending';
return false;
}
}
if(strpos($line,'BEGIN_') === 0) {
$in_section = true;
$section_info = explode(' ',$line);
$section_name = substr($section_info[0],6);
$section_lines = $section_info[1];
$on_line = 0;
$section_content = array();
continue;
}
}
return false;
}
/* Parses the sections array and uses that data for whatever it needs it for */
private function parse() {
if($this->fh === false) {
return false;
}
while($section = $this->section()) {
/*
Here you would place extra parsing code based on what you want
to do with the data. But since this is only an example, the
data is placed into an array with just the section name and
the data for each line (untouched). Will have to split by [space]
*/
array_push($this->data,$section);
/* You can add specific rules based on the section here */
switch($section['name']) {
case 'GENERAL':
break;
case 'ROBOT':
break;
/* Add the rest of the section cases */
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment