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('to_date > NOW()');
45         if ($x->count()) {
46             // got some data for beyond today..
47             return;
48         }
49         
50         // load our default rates to start with..
51         $dom = simplexml_load_file(dirname(__FILE__).'/../eurofxref-daily.xml');
52         $this->rates['EUR'] = 1.0;
53         $this->rates['TWD'] = 46.7008412;
54         $this->rates['VND'] = 26405.3;
55        
56        
57         foreach($dom->Cube->Cube->Cube as $c) {
58            //echo '<PRE>';print_r($c );
59             $this->rates[(string)$c['currency']] = (string)$c['rate'];
60         }
61         $this->rates['RMB'] = $this->rates['CNY'] ;
62         // now try loading from latest..
63         $target = ini_get('session.save_path').'/eurofxref-daily.xml';
64         
65         if (!file_exists($target) || filemtime($target) < (time() - 60*60*24)) {
66             // this may fail...
67             $f = @file_get_contents('http://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml');
68             if (!strlen($f)) {
69                 return;
70             } 
71             file_put_contents($target,$f);
72         
73         } 
74         $dom = simplexml_load_file($target);
75         $this->rates['EUR'] = 1.0;
76         $this->rates['TWD'] = 46.7008412;
77         $this->rates['VND'] = 26405.3;
78        
79         foreach($dom->Cube->Cube->Cube as $c) {
80            //echo '<PRE>';print_r($c );
81             $this->rates[(string)$c['currency']] = (string)$c['rate'];
82         }
83         $this->rates['RMB'] = $this->rates['CNY'] ;
84     }
85 }