Skip to content
Snippets Groups Projects
Unverified Commit 7281342d authored by Tim van Dijen's avatar Tim van Dijen Committed by GitHub
Browse files

statistics: remove unused methods + phpdoc

parent f64df4af
No related branches found
No related tags found
No related merge requests found
......@@ -5,16 +5,27 @@
*/
class sspmod_statistics_LogParser
{
/**
* @var integer
*/
private $datestart;
/**
* @var integer
*/
private $datelength;
/**
* @var integer
*/
private $offset;
/**
* Constructor
*
* @param $datestart At which char is the date starting
* @param $datelength How many characters is the date (on the b
* @param $offset At which char is the rest of the entries starting
* @param integer $datestart At which char is the date starting
* @param integer $datelength How many characters is the date (on the b
* @param integer $offset At which char is the rest of the entries starting
*/
public function __construct($datestart, $datelength, $offset)
{
......@@ -23,6 +34,12 @@ class sspmod_statistics_LogParser
$this->offset = $offset;
}
/**
* @param string $line
*
* @return integer
*/
public function parseEpoch($line)
{
$epoch = strtotime(substr($line, 0, $this->datelength));
......@@ -43,24 +60,16 @@ class sspmod_statistics_LogParser
return $epoch;
}
public function parseContent($line) {
/**
* @param string $line
*
* @return array
*/
public function parseContent($line)
{
$contentstr = substr($line, $this->offset);
$content = explode(' ', $contentstr);
return $content;
}
// Aug 27 12:54:25 ssp 5 STAT [5416262207] saml20-sp-SSO urn:mace:feide.no:services:no.uninett.wiki-feide sam.feide.no NA
//
// Oct 30 11:07:14 www1 simplesamlphp-foodle[12677]: 5 STAT [200b4679af] saml20-sp-SLO spinit urn:mace:feide.no:services:no.feide.foodle sam.feide.no
function parse15($str) {
$di = date_parse($str);
$datestamp = mktime($di['hour'], $di['minute'], $di['second'], $di['month'], $di['day']);
return $datestamp;
}
function parse23($str) {
$timestamp = strtotime($str);
return $timestamp;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment