diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2014-01-14 17:46:51 +0100 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2014-01-14 17:46:51 +0100 |
| commit | 441c72bbf3d29be5c7f5eb0fd43ac267fe059c2f (patch) | |
| tree | adaf976068ed80a424f5acf64a754a52ce21c4e7 /src | |
| download | bdrem-441c72bbf3d29be5c7f5eb0fd43ac267fe059c2f.tar.gz bdrem-441c72bbf3d29be5c7f5eb0fd43ac267fe059c2f.zip | |
first version that reads birthday reminder files
Diffstat (limited to 'src')
| -rw-r--r-- | src/bdrem/Autoloader.php | 22 | ||||
| -rw-r--r-- | src/bdrem/Cli.php | 21 | ||||
| -rw-r--r-- | src/bdrem/Config.php | 43 | ||||
| -rw-r--r-- | src/bdrem/Event.php | 117 | ||||
| -rw-r--r-- | src/bdrem/Renderer/Console.php | 39 | ||||
| -rw-r--r-- | src/bdrem/Source/Bdf.php | 48 |
6 files changed, 290 insertions, 0 deletions
diff --git a/src/bdrem/Autoloader.php b/src/bdrem/Autoloader.php new file mode 100644 index 0000000..093b1b0 --- /dev/null +++ b/src/bdrem/Autoloader.php @@ -0,0 +1,22 @@ +<?php +namespace bdrem; + +class Autoloader +{ + public function load($class) + { + $file = strtr($class, '_\\', '//') . '.php'; + if (stream_resolve_include_path($file)) { + require $file; + } + } + + public static function register() + { + set_include_path( + get_include_path() . PATH_SEPARATOR . __DIR__ . '/../' + ); + spl_autoload_register(array(new self(), 'load')); + } +} +?>
\ No newline at end of file diff --git a/src/bdrem/Cli.php b/src/bdrem/Cli.php new file mode 100644 index 0000000..5ab5ec8 --- /dev/null +++ b/src/bdrem/Cli.php @@ -0,0 +1,21 @@ +<?php +namespace bdrem; + +class Cli +{ + public function run() + { + $cfg = new Config(); + $cfg->load(); + $source = $cfg->loadSource(); + + $arEvents = $source->getEvents( + date('Y-m-d'), $cfg->daysBefore, $cfg->daysAfter + ); + usort($arEvents, '\\bdrem\\Event::compare'); + + $r = new Renderer_Console(); + echo $r->render($arEvents); + } +} +?> diff --git a/src/bdrem/Config.php b/src/bdrem/Config.php new file mode 100644 index 0000000..076cd04 --- /dev/null +++ b/src/bdrem/Config.php @@ -0,0 +1,43 @@ +<?php +namespace bdrem; + +class Config +{ + public $source; + public $daysBefore; + public $daysAfter; + + public function load() + { + $f = __DIR__ . '/../../data/bdrem.config.php'; + if (file_exists($f)) { + return $this->loadFile($f); + } + + throw new \Exception('No config file found'); + } + + protected function loadFile($filename) + { + include $filename; + $this->source = $source; + $this->daysBefore = $daysBefore; + $this->daysAfter = $daysAfter; + } + + public function loadSource() + { + if ($this->source === null) { + throw new \Exception('No source defined'); + } + + $settings = $this->source; + $class = '\\bdrem\\Source_' . array_shift($settings); + + return new $class($settings[0]); + //$rm = new \ReflectionMethod($class, '__construct'); + //return $rm->invokeArgs(null, $settings); + //return call_user_func_array($class . '::__construct', $settings); + } +} +?> diff --git a/src/bdrem/Event.php b/src/bdrem/Event.php new file mode 100644 index 0000000..65e4b9b --- /dev/null +++ b/src/bdrem/Event.php @@ -0,0 +1,117 @@ +<?php +namespace bdrem; + +class Event +{ + /** + * Title of the event or name of the person that has the event + */ + public $title; + + /** + * Type of the event, e.g. "birthday" + */ + public $type; + + /** + * Date of the event. + * ???? as year is allowed + * + * @var string YYYY-MM-DD + */ + public $date; + + /** + * Which repetition this is + * + * @var integer + */ + public $age; + + /** + * Number of days until the event (positive) or since the event (negative) + * + * @var integer + */ + public $days; + + + + public function __construct($title = null, $type = null, $date = null) + { + $this->title = $title; + $this->type = $type; + $this->date = $date; + } + + /** + * Checks if the event's date is within the given date. + * Also calculates the age and days since the event. + * + * @return boolean True if the event's date is within the given range + */ + public function isWithin($strDate, $nDaysBefore, $nDaysAfter) + { + list($rYear, $rMonth, $rDay) = explode('-', $strDate); + list($eYear, $eMonth, $eDay) = explode('-', $this->date); + + if ($rMonth == $eMonth && $rDay == $eDay) { + $this->days = 0; + if ($eYear == '????') { + $this->age = null; + } else { + $this->age = $rYear - $eYear; + } + return true; + } + + $yearOffset = 0; + if ($eMonth < 3 && $rMonth > 10) { + $yearOffset = 1; + } else if ($eMonth > 10 && $rMonth < 3) { + $yearOffset = -1; + } + + $rD = new \DateTime($strDate); + $eD = new \DateTime(($rYear + $yearOffset) . '-' . $eMonth . '-' . $eDay); + + $nDiff = (int) $rD->diff($eD)->format('%r%a'); + + $this->days = $nDiff; + if ($eYear == '????') { + $this->age = null; + } else { + $this->age = $rYear - $eYear + $yearOffset; + } + + if ($nDiff > 0) { + return $nDiff <= $nDaysAfter; + } else { + return -$nDiff <= $nDaysBefore; + } + + return false; + } + + /** + * @return integer x < 0: e1 is less than e2 + * x > 0: e1 is larger than e2 + */ + public static function compare(Event $e1, Event $e2) + { + list($e1Year, $e1Month, $e1Day) = explode('-', $e1->date); + list($e2Year, $e2Month, $e2Day) = explode('-', $e2->date); + + if ($e1Month < 3 && $e2Month > 10) { + return 1; + } else if ($e1Month > 10 && $e2Month < 3) { + return -1; + } else if ($e1Month != $e2Month) { + return $e1Month - $e2Month; + } else if ($e1Day != $e2Day) { + return $e1Day - $e2Day; + } + return strcmp($e1->title, $e2->title); + } +} +?> diff --git a/src/bdrem/Renderer/Console.php b/src/bdrem/Renderer/Console.php new file mode 100644 index 0000000..2cd185f --- /dev/null +++ b/src/bdrem/Renderer/Console.php @@ -0,0 +1,39 @@ +<?php +namespace bdrem; + +class Renderer_Console +{ + public function render($arEvents) + { + $s = "Days Age Name Event Date\n"; + $s .= "---- --- ---------------------------------------- -------------------- ----------\n"; + foreach ($arEvents as $event) { + $s .= sprintf( + "%3d %4s %s %s %s\n", + $event->days, + $event->age, + $this->str_pad($event->title, 40), + $this->str_pad($event->type, 20), + $event->date + ); + } + return $s; + } + + public function str_pad( + $input, $pad_length, $pad_string = ' ', $pad_type = STR_PAD_RIGHT + ) { + $l = mb_strlen($input, 'utf-8'); + if ($l >= $pad_length) { + return $input; + } + + $p = str_repeat($pad_string, $pad_length - $l); + if ($pad_type == STR_PAD_RIGHT) { + return $input . $p; + } else { + return $p . $input; + } + } +} +?> diff --git a/src/bdrem/Source/Bdf.php b/src/bdrem/Source/Bdf.php new file mode 100644 index 0000000..e8208eb --- /dev/null +++ b/src/bdrem/Source/Bdf.php @@ -0,0 +1,48 @@ +<?php +namespace bdrem; + +/** + * Reads birthday reminder 2's birthday files (.bdf). + */ +class Source_Bdf +{ + protected $filename; + + public function __construct($filename) + { + $this->filename = $filename; + if (!file_exists($this->filename)) { + throw new \Exception( + 'Birthday file does not exist: ' . $this->filename + ); + } + } + + /** + * @param string $strDate Date the events shall be found for, YYYY-MM-DD + */ + public function getEvents($strDate, $nDaysBefore, $nDaysAfter) + { + $x = simplexml_load_file($this->filename); + + $arEvents = array(); + foreach ($x->content->person as $xPerson) { + $date = implode( + '-', + array_reverse( + explode('.', (string) $xPerson->date) + ) + ); + $event = new Event( + (string) $xPerson->name, + (string) $xPerson->event, + $date + ); + if ($event->isWithin($strDate, $nDaysBefore, $nDaysAfter)) { + $arEvents[] = $event; + } + } + return $arEvents; + } +} +?> |
