fix #8131 - chinese translations
[Pman.Core] / DataObjects / Core_holiday.php
1 <?php
2 /**
3  * Table Definition for core company
4  */
5 class_exists('DB_DataObject') ? '' : require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Core_holiday extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'core_holiday';               // table name
13     public $id;                              
14     public $country;                            
15     public $holiday_date;                            
16
17     
18     /* the code above is auto generated do not remove the tag below */
19     ###END_AUTOCODE
20     
21     
22     static $map = array(
23         'hk' => 'http://www.1823.gov.hk/common/ical/gc/en.ics'
24     );
25     
26      
27     function updateHolidays($country)
28     {
29         
30         if (!isset(self::$map[$country])) {
31             die("invalid country");
32         }
33         
34         // do we alredy have the data for this year.
35         $d = DB_DataObject::Factory('core_holiday');
36         $d->country = $country;
37         $d->orderBy('holiday_date DESC');
38         $d->limit(1);
39         if ($d->count() && $d->find(true) && strtotime($d->holiday_date) > strtotime('NOW + 6 MONTHS')) {
40             // no need to fetch..
41             return;
42         }
43         
44         
45         
46         $data = file_get_contents("http://www.1823.gov.hk/common/ical/gc/en.ics");
47         
48         $vevents = explode('BEGIN:VEVENT', $data);
49         
50         foreach ($vevents as $vevent){
51             
52             $lines = explode("\n", $vevent);
53             
54             $start_dt = false;
55             $end_dt = false;
56             
57             foreach ($lines as $line){
58                 
59                 if(preg_match('/^DTSTART;VALUE=DATE:([0-9]+)/', $line, $matches)){
60                     $fmt = substr($matches[1], 0, 4) . "-" . substr($matches[1], 4, 2) . "-" . substr($matches[1], 6, 2);
61                     $start_dt = date('Y-m-d', strtotime($fmt));
62                 }
63                 
64                 if(preg_match('/^DTEND;VALUE=DATE:([0-9]+)/', $line, $matches)){
65                     $fmt = substr($matches[1], 0, 4) . "-" . substr($matches[1], 4, 2) . "-" . substr($matches[1], 6, 2);
66                     $end_dt = date('Y-m-d', strtotime($fmt));
67                 }
68                 
69             }
70             
71             if(empty($start_dt) || empty($end_dt)){
72                 continue;
73             }
74             
75             //var_dump($start_dt); var_dump($end_dt); exit;
76             
77             for ($i = strtotime($start_dt); $i < strtotime($end_dt) ; $i += (60 * 60 * 24)) {
78                 
79                 $d = DB_DataObject::Factory('core_holiday');
80                 $d->country = $country;
81                 $d->holiday_date = date('Y-m-d', $i);
82                 if (!$d->count()) {
83                     $d->insert();
84                 }
85                 
86                 
87             }
88             
89         }
90
91     }
92     function isHoliday($country, $date)
93     {
94         $d = DB_DataObject::Factory('core_holiday');
95         $d->country = $country;
96         $d->holiday_date = $date;
97         return $d->count();
98     }
99     
100 }