File: DateHandler.php

package info (click to toggle)
simplesamlphp 1.19.7-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 42,920 kB
  • sloc: php: 202,044; javascript: 14,867; xml: 2,700; sh: 225; perl: 82; makefile: 70; python: 5
file content (101 lines) | stat: -rw-r--r-- 2,049 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<?php

namespace SimpleSAML\Module\statistics;

/**
 * @author Andreas Åkre Solberg <andreas.solberg@uninett.no>
 * @package SimpleSAMLphp
 */
class DateHandler
{
    /** @var int */
    protected $offset;


    /**
     * Constructor
     *
     * @param int $offset Date offset
     */
    public function __construct($offset)
    {
        $this->offset = $offset;
    }


    /**
     * @param int $timestamp
     * @return int
     */
    protected function getDST($timestamp)
    {
        if (idate('I', $timestamp)) {
            return 3600;
        }
        return 0;
    }


    /**
     * @param int $epoch
     * @param int $slotsize
     * @return float
     */
    public function toSlot($epoch, $slotsize)
    {
        $dst = $this->getDST($epoch);
        return floor(($epoch + $this->offset + $dst) / $slotsize);
    }


    /**
     * @param int $slot
     * @param int $slotsize
     * @return int
     */
    public function fromSlot($slot, $slotsize)
    {
        $temp = $slot * $slotsize - $this->offset;
        $dst = $this->getDST($temp);
        return $slot * $slotsize - $this->offset - $dst;
    }


    /**
     * @param int $epoch
     * @param string $dateformat
     * @return string
     */
    public function prettyDateEpoch($epoch, $dateformat)
    {
        return date($dateformat, $epoch);
    }


    /**
     * @param int $slot
     * @param int $slotsize
     * @param string $dateformat
     * @return string
     */
    public function prettyDateSlot($slot, $slotsize, $dateformat)
    {
        return $this->prettyDateEpoch($this->fromSlot($slot, $slotsize), $dateformat);
    }


    /**
     * @param int $from
     * @param int $to
     * @param int $slotsize
     * @param string $dateformat
     * @return string
     */
    public function prettyHeader($from, $to, $slotsize, $dateformat)
    {
        $text = $this->prettyDateSlot($from, $slotsize, $dateformat);
        $text .= ' to ';
        $text .= $this->prettyDateSlot($to, $slotsize, $dateformat);
        return $text;
    }
}