00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Payment_Model_Info extends Mage_Core_Model_Abstract
00035 {
00036
00037
00038
00039
00040
00041
00042
00043 public function getData($key='', $index=null)
00044 {
00045 if ('cc_number'===$key) {
00046 if (empty($this->_data['cc_number']) && !empty($this->_data['cc_number_enc'])) {
00047 $this->_data['cc_number'] = $this->decrypt($this->getCcNumberEnc());
00048 }
00049 }
00050 if ('cc_cid'===$key) {
00051 if (empty($this->_data['cc_cid']) && !empty($this->_data['cc_cid_enc'])) {
00052 $this->_data['cc_cid'] = $this->decrypt($this->getCcCidEnc());
00053 }
00054 }
00055 return parent::getData($key, $index);
00056 }
00057
00058
00059
00060
00061
00062
00063 public function getMethodInstance()
00064 {
00065 if (!$this->hasMethodInstance()) {
00066 if ($method = $this->getMethod()) {
00067 if ($instance = Mage::helper('payment')->getMethodInstance($this->getMethod())) {
00068 $instance->setInfoInstance($this);
00069 $this->setMethodInstance($instance);
00070 return $instance;
00071 }
00072 }
00073 } else {
00074 return $this->_getData('method_instance');
00075 }
00076 Mage::throwException(Mage::helper('payment')->__('Can not retrieve payment method instance'));
00077 }
00078
00079
00080
00081
00082
00083
00084
00085 public function encrypt($data)
00086 {
00087 if ($data) {
00088 return Mage::helper('core')->encrypt($data);
00089 }
00090 return $data;
00091 }
00092
00093
00094
00095
00096
00097
00098
00099 public function decrypt($data)
00100 {
00101 if ($data) {
00102 return Mage::helper('core')->decrypt($data);
00103 }
00104 return $data;
00105 }
00106 }