mambax7/extcal

View on GitHub
class/pear/Calendar/Calendar.php

Summary

Maintainability
C
1 day
Test Coverage
<?php

/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */

/**
 * Contains the Calendar and Calendar_Engine_Factory classes.
 *
 * PHP versions 4 and 5
 *
 * LICENSE: Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. The name of the author may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE FREEBSD PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * @category  Date and Time
 *
 * @author    Harry Fuecks <hfuecks@phppatterns.com>
 * @author    Lorenzo Alberton <l.alberton@quipo.it>
 * @copyright 2003-2007 Harry Fuecks, Lorenzo Alberton
 * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
 *
 * @link      http://pear.php.net/package/Calendar
 */

/**
 * Allows Calendar include path to be redefined.
 */
if (!defined('CALENDAR_ROOT')) {
    define('CALENDAR_ROOT', 'Calendar/');
}

/*
 * Constant which defines the calculation engine to use
 */
if (!defined('CALENDAR_ENGINE')) {
    define('CALENDAR_ENGINE', 'UnixTS');
}

/*
 * Define Calendar Month states
 */
define('CALENDAR_USE_MONTH', 1);
define('CALENDAR_USE_MONTH_WEEKDAYS', 2);
define('CALENDAR_USE_MONTH_WEEKS', 3);

/**
 * Contains a factory method to return a Singleton instance of a class
 * implementing the Calendar_Engine_Interface.<br>
 * <b>Note:</b> this class must be modified to "register" alternative
 * Calendar_Engines. The engine used can be controlled with the constant
 * CALENDAR_ENGINE.
 *
 * @category  Date and Time
 *
 * @author    Harry Fuecks <hfuecks@phppatterns.com>
 * @author    Lorenzo Alberton <l.alberton@quipo.it>
 * @copyright 2003-2007 Harry Fuecks, Lorenzo Alberton
 * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
 *
 * @link      http://pear.php.net/package/Calendar
 * @see       Calendar_Engine_Interface
 */
class Calendar_Engine_Factory
{
    /**
     * Returns an instance of the engine.
     *
     * @return bool instance of a calendar calculation engine
     */
    public static function &getEngine()
    {
        static $engine = false;
        switch (CALENDAR_ENGINE) {
            case 'PearDate':
                $class = 'Calendar_Engine_PearDate';
                break;
            case 'UnixTS':
            default:
                $class = 'Calendar_Engine_UnixTS';
                break;
        }
        if (!$engine) {
            if (!class_exists($class)) {
                require_once CALENDAR_ROOT . 'Engine' . '/' . CALENDAR_ENGINE . '.php';
            }
            $engine = new $class();
        }

        return $engine;
    }
}

/**
 * Base class for Calendar API. This class should not be instantiated directly.
 *
 * @category  Date and Time
 *
 * @author    Harry Fuecks <hfuecks@phppatterns.com>
 * @author    Lorenzo Alberton <l.alberton@quipo.it>
 * @copyright 2003-2007 Harry Fuecks, Lorenzo Alberton
 * @license   http://www.debian.org/misc/bsd.license  BSD License (3 Clause)
 *
 * @link      http://pear.php.net/package/Calendar
 * @abstract
 */
class Calendar
{
    /**
     * Instance of class implementing calendar engine interface.
     *
     * @var object
     */
    public $cE;

    /**
     * Instance of Calendar_Validator (lazy initialized when isValid() or
     * getValidor() is called.
     *
     * @var Calendar_Validator
     */
    public $validator;

    /**
     * Year for this calendar object e.g. 2003.
     *
     * @var int
     */
    public $year;

    /**
     * Month for this calendar object e.g. 9.
     *
     * @var int
     */
    public $month;

    /**
     * Day of month for this calendar object e.g. 23.
     *
     * @var int
     */
    public $day;

    /**
     * Hour of day for this calendar object e.g. 13.
     *
     * @var int
     */
    public $hour;

    /**
     * Minute of hour this calendar object e.g. 46.
     *
     * @var int
     */
    public $minute;

    /**
     * Second of minute this calendar object e.g. 34.
     *
     * @var int
     */
    public $second;

    /**
     * Marks this calendar object as selected (e.g. 'today').
     *
     * @var bool
     */
    public $selected = false;

    /**
     * Collection of child calendar objects created from subclasses
     * of Calendar. Type depends on the object which created them.
     *
     * @var array
     */
    public $children = [];

    /**
     * Constructs the Calendar.
     *
     * @param int $y year
     * @param int $m month
     * @param int $d day
     * @param int $h hour
     * @param int $i minute
     * @param int $s second
     */
    public function __construct($y = 2000, $m = 1, $d = 1, $h = 0, $i = 0, $s = 0)
    {
        static $cE = null;
        if (!isset($cE)) {
            $cE = Calendar_Engine_Factory::getEngine();
        }
        $this->cE     = &$cE;
        $this->year   = (int)$y;
        $this->month  = (int)$m;
        $this->day    = (int)$d;
        $this->hour   = (int)$h;
        $this->minute = (int)$i;
        $this->second = (int)$s;
    }

    /**
     * Defines the calendar by a timestamp (Unix or ISO-8601), replacing values
     * passed to the constructor.
     *
     * @param int|string $ts Unix or ISO-8601 timestamp
     */
    public function setTimestamp($ts)
    {
        $this->year   = $this->cE->stampToYear($ts);
        $this->month  = $this->cE->stampToMonth($ts);
        $this->day    = $this->cE->stampToDay($ts);
        $this->hour   = $this->cE->stampToHour($ts);
        $this->minute = $this->cE->stampToMinute($ts);
        $this->second = $this->cE->stampToSecond($ts);
    }

    /**
     * Returns a timestamp from the current date / time values. Format of
     * timestamp depends on Calendar_Engine implementation being used.
     *
     * @return int|string timestamp
     */
    public function getTimestamp()
    {
        return $this->cE->dateToStamp($this->year, $this->month, $this->day, $this->hour, $this->minute, $this->second);
    }

    /**
     * Defines calendar object as selected (e.g. for today).
     *
     * @param bool $state whether Calendar subclass
     */
    public function setSelected($state = true)
    {
        $this->selected = $state;
    }

    /**
     * True if the calendar subclass object is selected (e.g. today).
     *
     * @return bool
     */
    public function isSelected()
    {
        return $this->selected;
    }

    /**
     * Checks if the current Calendar object is today's date.
     *
     * @return bool
     */
    public function isToday()
    {
        return $this->cE->isToday($this->getTimestamp());
    }

    /**
     * Adjusts the date (helper method).
     */
    public function adjust()
    {
        $stamp        = $this->getTimestamp();
        $this->year   = $this->cE->stampToYear($stamp);
        $this->month  = $this->cE->stampToMonth($stamp);
        $this->day    = $this->cE->stampToDay($stamp);
        $this->hour   = $this->cE->stampToHour($stamp);
        $this->minute = $this->cE->stampToMinute($stamp);
        $this->second = $this->cE->stampToSecond($stamp);
    }

    /**
     * Returns the date as an associative array (helper method).
     *
     * @param mixed $stamp timestamp (leave empty for current timestamp)
     *
     * @return array
     */
    public function toArray($stamp = null)
    {
        if (null === $stamp) {
            $stamp = $this->getTimestamp();
        }

        return [
            'year'   => $this->cE->stampToYear($stamp),
            'month'  => $this->cE->stampToMonth($stamp),
            'day'    => $this->cE->stampToDay($stamp),
            'hour'   => $this->cE->stampToHour($stamp),
            'minute' => $this->cE->stampToMinute($stamp),
            'second' => $this->cE->stampToSecond($stamp),
        ];
    }

    /**
     * Returns the value as an associative array (helper method).
     *
     * @param string $returnType type of date object that return value represents
     * @param string $format     ['int' | 'array' | 'timestamp' | 'object']
     * @param mixed  $stamp      timestamp (depending on Calendar engine being used)
     * @param int    $default    default value (i.e. give me the answer quick)
     *
     * @return mixed
     */
    public function returnValue($returnType, $format, $stamp, $default)
    {
        switch (mb_strtolower($format)) {
            case 'int':
                return $default;
            case 'array':
                return $this->toArray($stamp);
                break;
            case 'object':
                require_once CALENDAR_ROOT . 'Factory.php';

                return Calendar_Factory::createByTimestamp($returnType, $stamp);
                break;
            case 'timestamp':
            default:
                return $stamp;
                break;
        }
    }

    /**
     * Abstract method for building the children of a calendar object.
     * Implemented by Calendar subclasses.
     *
     * @param array $sDates array containing Calendar objects to select (optional)
     *
     * @return bool
     * @abstract
     */
    public function build($sDates = [])
    {
        require_once __DIR__ . '/PEAR.php';
        PEAR::raiseError('Calendar::build is abstract', null, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar::build()');

        return false;
    }

    /**
     * Abstract method for selected data objects called from build.
     *
     * @param array $sDates array of Calendar objects to select
     *
     * @return bool
     * @abstract
     */
    public function setSelection($sDates)
    {
        require_once __DIR__ . '/PEAR.php';
        PEAR::raiseError('Calendar::setSelection is abstract', null, PEAR_ERROR_TRIGGER, E_USER_NOTICE, 'Calendar::setSelection()');

        return false;
    }

    /**
     * Iterator method for fetching child Calendar subclass objects
     * (e.g. a minute from an hour object). On reaching the end of
     * the collection, returns false and resets the collection for
     * further iteratations.
     *
     * @return mixed either an object subclass of Calendar or false
     */
    public function fetch()
    {
//        $child = each($this->children);
        $key   = key($this->children);
        $child = (null === $key) ? false : [$key, current($this->children), 'key' => $key, 'value' => current($this->children)];
        next($this->children);

        if ($child) {
            return $child['value'];
        }
        reset($this->children);

        return false;
    }

    /**
     * Fetches all child from the current collection of children.
     *
     * @return array
     */
    public function fetchAll()
    {
        return $this->children;
    }

    /**
     * Get the number Calendar subclass objects stored in the internal collection.
     *
     * @return int
     */
    public function size()
    {
        return count($this->children);
    }

    /**
     * Determine whether this date is valid, with the bounds determined by
     * the Calendar_Engine. The call is passed on to Calendar_Validator::isValid.
     *
     * @return bool
     */
    public function isValid()
    {
        $validator = $this->getValidator();

        return $validator->isValid();
    }

    /**
     * Returns an instance of Calendar_Validator.
     *
     * @return Calendar_Validator
     */
    public function &getValidator()
    {
        if (!isset($this->validator)) {
            require_once CALENDAR_ROOT . 'Validator.php';
            $this->validator = new Calendar_Validator($this);
        }

        return $this->validator;
    }

    /**
     * Returns a reference to the current Calendar_Engine being used. Useful
     * for Calendar_Table_Helper and Calendar_Validator.
     *
     * @return object implementing Calendar_Engine_Inteface
     */
    public function &getEngine()
    {
        return $this->cE;
    }

    /**
     * Set the CALENDAR_FIRST_DAY_OF_WEEK constant to the $firstDay value
     * if the constant is not set yet.
     *
     * @param int $firstDay first day of the week (0=sunday, 1=monday, ...)
     *
     * @return int
     * @throws E_USER_WARNING this method throws a WARNING if the
     *                        CALENDAR_FIRST_DAY_OF_WEEK constant is already defined and
     *                        the $firstDay parameter is set to a different value
     */
    public function defineFirstDayOfWeek($firstDay = null)
    {
        if (defined('CALENDAR_FIRST_DAY_OF_WEEK')) {
            if ((CALENDAR_FIRST_DAY_OF_WEEK != $firstDay) && null !== $firstDay) {
                $msg = 'CALENDAR_FIRST_DAY_OF_WEEK constant already defined.' . ' The $firstDay parameter will be ignored.';
                trigger_error($msg, E_USER_WARNING);
            }

            return CALENDAR_FIRST_DAY_OF_WEEK;
        }
        if (null === $firstDay) {
            $firstDay = $this->cE->getFirstDayOfWeek($this->thisYear(), $this->thisMonth(), $this->thisDay());
        }
        define('CALENDAR_FIRST_DAY_OF_WEEK', $firstDay);

        return CALENDAR_FIRST_DAY_OF_WEEK;
    }

    /**
     * Returns the value for the previous year.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 2002 or timestamp
     */
    public function prevYear($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year - 1, 1, 1, 0, 0, 0);

        return $this->returnValue('Year', $format, $ts, $this->year - 1);
    }

    /**
     * Returns the value for this year.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 2003 or timestamp
     */
    public function thisYear($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, 1, 1, 0, 0, 0);

        return $this->returnValue('Year', $format, $ts, $this->year);
    }

    /**
     * Returns the value for next year.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 2004 or timestamp
     */
    public function nextYear($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year + 1, 1, 1, 0, 0, 0);

        return $this->returnValue('Year', $format, $ts, $this->year + 1);
    }

    /**
     * Returns the value for the previous month.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 4 or Unix timestamp
     */
    public function prevMonth($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month - 1, 1, 0, 0, 0);

        return $this->returnValue('Month', $format, $ts, $this->cE->stampToMonth($ts));
    }

    /**
     * Returns the value for this month.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 5 or timestamp
     */
    public function thisMonth($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, 1, 0, 0, 0);

        return $this->returnValue('Month', $format, $ts, $this->month);
    }

    /**
     * Returns the value for next month.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 6 or timestamp
     */
    public function nextMonth($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month + 1, 1, 0, 0, 0);

        return $this->returnValue('Month', $format, $ts, $this->cE->stampToMonth($ts));
    }

    /**
     * Returns the value for the previous day.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 10 or timestamp
     */
    public function prevDay($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, $this->day - 1, 0, 0, 0);

        return $this->returnValue('Day', $format, $ts, $this->cE->stampToDay($ts));
    }

    /**
     * Returns the value for this day.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 11 or timestamp
     */
    public function thisDay($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, $this->day, 0, 0, 0);

        return $this->returnValue('Day', $format, $ts, $this->day);
    }

    /**
     * Returns the value for the next day.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 12 or timestamp
     */
    public function nextDay($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, $this->day + 1, 0, 0, 0);

        return $this->returnValue('Day', $format, $ts, $this->cE->stampToDay($ts));
    }

    /**
     * Returns the value for the previous hour.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 13 or timestamp
     */
    public function prevHour($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, $this->day, $this->hour - 1, 0, 0);

        return $this->returnValue('Hour', $format, $ts, $this->cE->stampToHour($ts));
    }

    /**
     * Returns the value for this hour.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 14 or timestamp
     */
    public function thisHour($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, $this->day, $this->hour, 0, 0);

        return $this->returnValue('Hour', $format, $ts, $this->hour);
    }

    /**
     * Returns the value for the next hour.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 14 or timestamp
     */
    public function nextHour($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, $this->day, $this->hour + 1, 0, 0);

        return $this->returnValue('Hour', $format, $ts, $this->cE->stampToHour($ts));
    }

    /**
     * Returns the value for the previous minute.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 23 or timestamp
     */
    public function prevMinute($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, $this->day, $this->hour, $this->minute - 1, 0);

        return $this->returnValue('Minute', $format, $ts, $this->cE->stampToMinute($ts));
    }

    /**
     * Returns the value for this minute.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 24 or timestamp
     */
    public function thisMinute($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, $this->day, $this->hour, $this->minute, 0);

        return $this->returnValue('Minute', $format, $ts, $this->minute);
    }

    /**
     * Returns the value for the next minute.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 25 or timestamp
     */
    public function nextMinute($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, $this->day, $this->hour, $this->minute + 1, 0);

        return $this->returnValue('Minute', $format, $ts, $this->cE->stampToMinute($ts));
    }

    /**
     * Returns the value for the previous second.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 43 or timestamp
     */
    public function prevSecond($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, $this->day, $this->hour, $this->minute, $this->second - 1);

        return $this->returnValue('Second', $format, $ts, $this->cE->stampToSecond($ts));
    }

    /**
     * Returns the value for this second.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 44 or timestamp
     */
    public function thisSecond($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, $this->day, $this->hour, $this->minute, $this->second);

        return $this->returnValue('Second', $format, $ts, $this->second);
    }

    /**
     * Returns the value for the next second.
     *
     * @param string $format return value format ['int'|'timestamp'|'object'|'array']
     *
     * @return int e.g. 45 or timestamp
     */
    public function nextSecond($format = 'int')
    {
        $ts = $this->cE->dateToStamp($this->year, $this->month, $this->day, $this->hour, $this->minute, $this->second + 1);

        return $this->returnValue('Second', $format, $ts, $this->cE->stampToSecond($ts));
    }
}