DataObjects/Core_curr_rate.php
[Pman.Core] / DataObjects / Core_curr_rate.php
1 <?php
2 /**
3  * Table Definition for core_curr_rate
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Core_curr_rate 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_curr_rate';    // table name
13     public $id;
14     public $curr;
15     public $rate;
16     public $from_dt;
17     public $to_dt;
18
19     /* the code above is auto generated do not remove the tag below */
20     ###END_AUTOCODE
21     
22     function applyFilters($q, $au, $roo)
23     {
24         
25     }
26     
27     /**
28      * current rate fetching
29      *
30      * - we used to do historical rates... (but sources keep disappearing for that..)
31      *
32      * this just get's the current rates from the ecb..
33      * 
34      * 
35      */
36     
37     var $rates = array();
38     function loadRates()
39     {
40         
41         // how often do we need to know this..?
42         // let's assume we do it once a week..
43         $x = DB_DataObject::Factory('core_curr_rate');
44         $x->whereAdd('from_date > NOW() - INTERVAL 7 DAY');
45         if ($x->count()) {
46             return;
47         }
48         
49         
50         
51         
52         if (!empty($this->rates)) {
53             return true;
54         }
55         // load our default rates to start with..
56         $dom = simplexml_load_file(dirname(__FILE__).'/eurofxref-daily.xml');
57         $this->rates['EUR'] = 1.0;
58         $this->rates['TWD'] = 46.7008412;
59         $this->rates['VND'] = 26405.3;
60        
61        
62         foreach($dom->Cube->Cube->Cube as $c) {
63            //echo '<PRE>';print_r($c );
64             $this->rates[(string)$c['currency']] = (string)$c['rate'];
65         }
66         $this->rates['RMB'] = $this->rates['CNY'] ;
67         // now try loading from latest..
68         $target = ini_get('session.save_path').'/eurofxref-daily.xml';
69         
70         if (!file_exists($target) || filemtime($target) < (time() - 60*60*24)) {
71             // this may fail...
72             $f = @file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
73             if (!strlen($f)) {
74                 return;
75             } 
76             file_put_contents($target,$f);
77         
78         } 
79         $dom = simplexml_load_file($target);
80         $this->rates['EUR'] = 1.0;
81         $this->rates['TWD'] = 46.7008412;
82         $this->rates['VND'] = 26405.3;
83        
84         foreach($dom->Cube->Cube->Cube as $c) {
85            //echo '<PRE>';print_r($c );
86             $this->rates[(string)$c['currency']] = (string)$c['rate'];
87         }
88         $this->rates['RMB'] = $this->rates['CNY'] ;
89     }
90 }