estpay - Version 1.3.1

Version Notes

In this release more logging is added for debugging and better security.
Logs are written to separate file. It makes it easier to roll and clean logs

Download this release

Release Info

Developer Multon
Extension estpay
Version 1.3.1
Comparing to
See all releases


Code changes from version 1.3.0.1 to 1.3.1

Files changed (43) hide show
  1. app/code/community/Eepohs/Estpay/Block/Abstract.php +1 -1
  2. app/code/community/Eepohs/Estpay/Block/Adminhtml/Initjs.php +1 -1
  3. app/code/community/Eepohs/Estpay/Block/Estcard.php +1 -1
  4. app/code/community/Eepohs/Estpay/Block/IPizza.php +1 -1
  5. app/code/community/Eepohs/Estpay/Block/Krediidipank.php +1 -1
  6. app/code/community/Eepohs/Estpay/Block/Lhv.php +1 -1
  7. app/code/community/Eepohs/Estpay/Block/Nordea.php +1 -1
  8. app/code/community/Eepohs/Estpay/Block/Sampo.php +1 -1
  9. app/code/community/Eepohs/Estpay/Block/Seb.php +1 -1
  10. app/code/community/Eepohs/Estpay/Block/Swedbank.php +1 -1
  11. app/code/community/Eepohs/Estpay/Controller/Abstract.php +15 -2
  12. app/code/community/Eepohs/Estpay/Helper/Data.php +1 -1
  13. app/code/community/Eepohs/Estpay/Model/Abstract.php +2 -1
  14. app/code/community/Eepohs/Estpay/Model/Estcard.php +20 -4
  15. app/code/community/Eepohs/Estpay/Model/IPizza.php +34 -7
  16. app/code/community/Eepohs/Estpay/Model/Krediidipank.php +1 -1
  17. app/code/community/Eepohs/Estpay/Model/Lhv.php +1 -1
  18. app/code/community/Eepohs/Estpay/Model/Nordea.php +10 -5
  19. app/code/community/Eepohs/Estpay/Model/Sampo.php +1 -1
  20. app/code/community/Eepohs/Estpay/Model/Seb.php +1 -1
  21. app/code/community/Eepohs/Estpay/Model/Swedbank.php +1 -1
  22. app/code/community/Eepohs/Estpay/controllers/EstcardController.php +1 -1
  23. app/code/community/Eepohs/Estpay/controllers/KrediidipankController.php +1 -1
  24. app/code/community/Eepohs/Estpay/controllers/LhvController.php +1 -1
  25. app/code/community/Eepohs/Estpay/controllers/NordeaController.php +1 -1
  26. app/code/community/Eepohs/Estpay/controllers/SampoController.php +1 -1
  27. app/code/community/Eepohs/Estpay/controllers/SebController.php +1 -1
  28. app/code/community/Eepohs/Estpay/controllers/SwedbankController.php +1 -1
  29. app/code/community/Eepohs/Estpay/etc/config.xml +2 -2
  30. app/code/community/Eepohs/Estpay/etc/system.xml +1 -1
  31. app/design/adminhtml/default/default/layout/eepohs/estpay.xml +1 -1
  32. app/design/adminhtml/default/default/template/eepohs/estpay/initjs.phtml +1 -1
  33. app/design/frontend/base/default/layout/eepohs/estpay.xml +1 -1
  34. app/design/frontend/base/default/template/eepohs/estpay/estcard.phtml +1 -1
  35. app/design/frontend/base/default/template/eepohs/estpay/krediidipank.phtml +1 -1
  36. app/design/frontend/base/default/template/eepohs/estpay/lhv.phtml +1 -1
  37. app/design/frontend/base/default/template/eepohs/estpay/nordea.phtml +1 -1
  38. app/design/frontend/base/default/template/eepohs/estpay/sampo.phtml +1 -1
  39. app/design/frontend/base/default/template/eepohs/estpay/seb.phtml +1 -1
  40. app/design/frontend/base/default/template/eepohs/estpay/swedbank.phtml +1 -1
  41. app/etc/modules/Eepohs_Estpay.xml +1 -1
  42. js/eepohs/estpay.js +1 -1
  43. package.xml +5 -6
app/code/community/Eepohs/Estpay/Block/Abstract.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Block/Adminhtml/Initjs.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Block/Estcard.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Block/IPizza.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Block/Krediidipank.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Block/Lhv.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Block/Nordea.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Block/Sampo.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Block/Seb.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Block/Swedbank.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Controller/Abstract.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
@@ -47,6 +47,8 @@ class Eepohs_Estpay_Controller_Abstract
47
  extends Mage_Core_Controller_Front_Action
48
  {
49
 
 
 
50
  /**
51
  *
52
  * @var Specifies model to be used to verify response from bank
@@ -78,7 +80,7 @@ class Eepohs_Estpay_Controller_Abstract
78
  sprintf(
79
  '%s(%s): %s', __METHOD__, __LINE__,
80
  print_r($e->getMessage(), true)
81
- )
82
  );
83
  }
84
  }
@@ -96,6 +98,17 @@ class Eepohs_Estpay_Controller_Abstract
96
  public function returnAction()
97
  {
98
 
 
 
 
 
 
 
 
 
 
 
 
99
  $session = Mage::getSingleton('checkout/session');
100
  $orderId = $session->getLastRealOrderId();
101
  if ( !$orderId ) {
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
47
  extends Mage_Core_Controller_Front_Action
48
  {
49
 
50
+ protected $logFile = 'estpay.log';
51
+
52
  /**
53
  *
54
  * @var Specifies model to be used to verify response from bank
80
  sprintf(
81
  '%s(%s): %s', __METHOD__, __LINE__,
82
  print_r($e->getMessage(), true)
83
+ ), null, $this->logFile
84
  );
85
  }
86
  }
98
  public function returnAction()
99
  {
100
 
101
+ Mage::log(
102
+ sprintf(
103
+ '%s(%s)@%s: %s',
104
+ __METHOD__,
105
+ __LINE__,
106
+ $_SERVER['REMOTE_ADDR'],
107
+ print_r($this->getRequest()->getParams(), true)
108
+ ),
109
+ null,
110
+ $this->logFile
111
+ );
112
  $session = Mage::getSingleton('checkout/session');
113
  $orderId = $session->getLastRealOrderId();
114
  if ( !$orderId ) {
app/code/community/Eepohs/Estpay/Helper/Data.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Model/Abstract.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
@@ -50,6 +50,7 @@ abstract class Eepohs_Estpay_Model_Abstract
50
  protected $_canAuthorize = true;
51
  protected $_isGateway = true;
52
  protected $_canUseCheckout = true;
 
53
 
54
  /**
55
  * Order Id to create invoice for
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
50
  protected $_canAuthorize = true;
51
  protected $_isGateway = true;
52
  protected $_canUseCheckout = true;
53
+ protected $logFile = 'estpay.log';
54
 
55
  /**
56
  * Order Id to create invoice for
app/code/community/Eepohs/Estpay/Model/Estcard.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
@@ -60,9 +60,15 @@ class Eepohs_Estpay_Model_Estcard extends Eepohs_Estpay_Model_Abstract
60
  if ( !isset($params['id']) || $params['id'] != $merchantId ) {
61
  Mage::log(
62
  sprintf(
63
- '%s (%s): Wrong merchant ID used for return: %s vs %s',
64
- __METHOD__, __LINE__, $params['id'], $merchantId
65
- )
 
 
 
 
 
 
66
  );
67
  return false;
68
  }
@@ -91,6 +97,16 @@ class Eepohs_Estpay_Model_Estcard extends Eepohs_Estpay_Model_Abstract
91
  if ( $result && $params['respcode'] == '000' )
92
  return true;
93
 
 
 
 
 
 
 
 
 
 
 
94
  return false;
95
  }
96
 
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
60
  if ( !isset($params['id']) || $params['id'] != $merchantId ) {
61
  Mage::log(
62
  sprintf(
63
+ '%s (%s)@%s: Wrong merchant ID used for return: %s vs %s',
64
+ __METHOD__,
65
+ __LINE__,
66
+ $_SERVER['REMOTE_ADDR'],
67
+ $params['id'],
68
+ $merchantId
69
+ ),
70
+ null,
71
+ $this->logFile
72
  );
73
  return false;
74
  }
97
  if ( $result && $params['respcode'] == '000' )
98
  return true;
99
 
100
+ Mage::log(
101
+ sprintf(
102
+ '%s (%s)@%s: Verification of signature failed for estcard',
103
+ __METHOD__,
104
+ __LINE__,
105
+ $_SERVER['REMOTE_ADDR']
106
+ ),
107
+ null,
108
+ $this->logFile
109
+ );
110
  return false;
111
  }
112
 
app/code/community/Eepohs/Estpay/Model/IPizza.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
@@ -55,9 +55,14 @@ class Eepohs_Estpay_Model_IPizza extends Eepohs_Estpay_Model_Abstract
55
  ) {
56
  Mage::log(
57
  sprintf(
58
- '%s (%s): IPizza return service is not 1101: %s',
59
- __METHOD__, __LINE__, $params['VK_SERVICE']
60
- )
 
 
 
 
 
61
  );
62
  return false;
63
  }
@@ -73,9 +78,15 @@ class Eepohs_Estpay_Model_IPizza extends Eepohs_Estpay_Model_Abstract
73
  ) {
74
  Mage::log(
75
  sprintf(
76
- '%s (%s): Wrong merchant ID used for return: %s vs %s',
77
- __METHOD__, __LINE__, $params['VK_REC_ID'], $vkSndId
78
- )
 
 
 
 
 
 
79
  );
80
  return false;
81
  }
@@ -140,6 +151,14 @@ class Eepohs_Estpay_Model_IPizza extends Eepohs_Estpay_Model_Abstract
140
  return true;
141
  }
142
 
 
 
 
 
 
 
 
 
143
  return false;
144
  }
145
 
@@ -157,6 +176,14 @@ class Eepohs_Estpay_Model_IPizza extends Eepohs_Estpay_Model_Abstract
157
  )
158
  );
159
  if ( $key === false ) {
 
 
 
 
 
 
 
 
160
  Mage::throwException(
161
  $this->_getHelper()->__(
162
  'Public key for ' . $this->_code . ' not set'
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
55
  ) {
56
  Mage::log(
57
  sprintf(
58
+ '%s (%s)@%s: IPizza return service is not 1101: %s',
59
+ __METHOD__,
60
+ __LINE__,
61
+ $_SERVER['REMOTE_ADDR'],
62
+ $params['VK_SERVICE']
63
+ ),
64
+ null,
65
+ $this->logFile
66
  );
67
  return false;
68
  }
78
  ) {
79
  Mage::log(
80
  sprintf(
81
+ '%s (%s)@%s: Wrong merchant ID used for return: %s vs %s',
82
+ __METHOD__,
83
+ __LINE__,
84
+ $_SERVER['REMOTE_ADDR'],
85
+ $params['VK_REC_ID'],
86
+ $vkSndId
87
+ ),
88
+ null,
89
+ $this->logFile
90
  );
91
  return false;
92
  }
151
  return true;
152
  }
153
 
154
+ Mage::log(
155
+ sprintf(
156
+ '%s (%s)@%s: Verification of signature failed for %s',
157
+ __METHOD__, __LINE__, $_SERVER['REMOTE_ADDR'], $params['VK_SND_ID']
158
+ ),
159
+ null,
160
+ $this->logFile
161
+ );
162
  return false;
163
  }
164
 
176
  )
177
  );
178
  if ( $key === false ) {
179
+ Mage::log(
180
+ sprintf(
181
+ '%s (%s): Public key not found for %s',
182
+ __METHOD__, __LINE__, $this->_code
183
+ ),
184
+ null,
185
+ $this->logFile
186
+ );
187
  Mage::throwException(
188
  $this->_getHelper()->__(
189
  'Public key for ' . $this->_code . ' not set'
app/code/community/Eepohs/Estpay/Model/Krediidipank.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Model/Lhv.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Model/Nordea.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
@@ -78,7 +78,10 @@ class Eepohs_Estpay_Model_Nordea extends Eepohs_Estpay_Model_Abstract
78
  ) {
79
  Mage::log(
80
  sprintf(
81
- "%s (%s): (Nordea) Invalid MAC code", __METHOD__, __LINE__
 
 
 
82
  )
83
  );
84
  return false;
@@ -94,9 +97,11 @@ class Eepohs_Estpay_Model_Nordea extends Eepohs_Estpay_Model_Abstract
94
  ) {
95
  Mage::log(
96
  sprintf(
97
- "%s (%s): (Nordea): Reference number doesn't match
98
- (potential tampering attempt). IP logged: %s",
99
- __METHOD__, __LINE__, $_SERVER['REMOTE_ADDR']
 
 
100
  )
101
  );
102
  return false;
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
78
  ) {
79
  Mage::log(
80
  sprintf(
81
+ "%s (%s)@%s: (Nordea) Invalid MAC code",
82
+ __METHOD__,
83
+ __LINE__,
84
+ $_SERVER['REMOTE_ADDR']
85
  )
86
  );
87
  return false;
97
  ) {
98
  Mage::log(
99
  sprintf(
100
+ "%s (%s)@%s: (Nordea): Reference number doesn't match
101
+ (potential tampering attempt).",
102
+ __METHOD__,
103
+ __LINE__,
104
+ $_SERVER['REMOTE_ADDR']
105
  )
106
  );
107
  return false;
app/code/community/Eepohs/Estpay/Model/Sampo.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Model/Seb.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/Model/Swedbank.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/controllers/EstcardController.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/controllers/KrediidipankController.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/controllers/LhvController.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/controllers/NordeaController.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/controllers/SampoController.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/controllers/SebController.php CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/code/community/Eepohs/Estpay/controllers/SwedbankController.php CHANGED
@@ -48,7 +48,7 @@
48
  * @author Eepohs OÜ <info@eepohs.com>
49
  * @copyright 2012 Eepohs OÜ
50
  * @license http://opensource.org/licenses/bsd-license.php BSDL
51
- * @version Release 1.3.0.1
52
  * @link http://eepohs.com/
53
  *
54
  */
48
  * @author Eepohs OÜ <info@eepohs.com>
49
  * @copyright 2012 Eepohs OÜ
50
  * @license http://opensource.org/licenses/bsd-license.php BSDL
51
+ * @version Release 1.3.1
52
  * @link http://eepohs.com/
53
  *
54
  */
app/code/community/Eepohs/Estpay/etc/config.xml CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
@@ -47,7 +47,7 @@
47
  <config>
48
  <modules>
49
  <Eepohs_Estpay>
50
- <version>1.3.0.1</version>
51
  </Eepohs_Estpay>
52
  </modules>
53
  <global>
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
47
  <config>
48
  <modules>
49
  <Eepohs_Estpay>
50
+ <version>1.3.1</version>
51
  </Eepohs_Estpay>
52
  </modules>
53
  <global>
app/code/community/Eepohs/Estpay/etc/system.xml CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/design/adminhtml/default/default/layout/eepohs/estpay.xml CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/design/adminhtml/default/default/template/eepohs/estpay/initjs.phtml CHANGED
@@ -34,7 +34,7 @@
34
  * THE POSSIBILITY OF SUCH DAMAGE.
35
  *
36
  * @license http://opensource.org/licenses/bsd-license.php
37
- * @version 1.3.0.1
38
  * @author Eepohs OÜ
39
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
40
  *
34
  * THE POSSIBILITY OF SUCH DAMAGE.
35
  *
36
  * @license http://opensource.org/licenses/bsd-license.php
37
+ * @version 1.3.1
38
  * @author Eepohs OÜ
39
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
40
  *
app/design/frontend/base/default/layout/eepohs/estpay.xml CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
app/design/frontend/base/default/template/eepohs/estpay/estcard.phtml CHANGED
@@ -33,7 +33,7 @@
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
- * @version 1.3.0.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
+ * @version 1.3.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
app/design/frontend/base/default/template/eepohs/estpay/krediidipank.phtml CHANGED
@@ -33,7 +33,7 @@
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
- * @version 1.3.0.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
+ * @version 1.3.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
app/design/frontend/base/default/template/eepohs/estpay/lhv.phtml CHANGED
@@ -33,7 +33,7 @@
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
- * @version 1.3.0.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
+ * @version 1.3.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
app/design/frontend/base/default/template/eepohs/estpay/nordea.phtml CHANGED
@@ -33,7 +33,7 @@
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
- * @version 1.3.0.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
+ * @version 1.3.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
app/design/frontend/base/default/template/eepohs/estpay/sampo.phtml CHANGED
@@ -33,7 +33,7 @@
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
- * @version 1.3.0.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
+ * @version 1.3.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
app/design/frontend/base/default/template/eepohs/estpay/seb.phtml CHANGED
@@ -33,7 +33,7 @@
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
- * @version 1.3.0.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
+ * @version 1.3.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
app/design/frontend/base/default/template/eepohs/estpay/swedbank.phtml CHANGED
@@ -33,7 +33,7 @@
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
- * @version 1.3.0.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
+ * @version 1.3.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
app/etc/modules/Eepohs_Estpay.xml CHANGED
@@ -35,7 +35,7 @@
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
- * @version 1.3.0.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
35
  * THE POSSIBILITY OF SUCH DAMAGE.
36
  *
37
  * @license http://opensource.org/licenses/bsd-license.php
38
+ * @version 1.3.1
39
  * @author Eepohs OÜ
40
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
41
  *
js/eepohs/estpay.js CHANGED
@@ -33,7 +33,7 @@
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
- * @version 1.3.0.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
33
  * THE POSSIBILITY OF SUCH DAMAGE.
34
  *
35
  * @license http://opensource.org/licenses/bsd-license.php
36
+ * @version 1.3.1
37
  * @author Eepohs OÜ
38
  * @copyright 2012 Eepohs OÜ http://www.eepohs.com/
39
  *
package.xml CHANGED
@@ -1,7 +1,7 @@
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>estpay</name>
4
- <version>1.3.0.1</version>
5
  <stability>stable</stability>
6
  <license uri="www.opensource.org/licenses/bsd-license.php">BSDL</license>
7
  <channel>community</channel>
@@ -15,13 +15,12 @@ Krediidipank&#xD;
15
  LHV&#xD;
16
  Nordea&#xD;
17
  NETS (EstCard)</description>
18
- <notes>Bugfix release.&#xD;
19
- Fixes:&#xD;
20
- - $version$ placeholder correctly replaced in all files</notes>
21
  <authors><author><name>Eepohs</name><user>eepohs</user><email>info@eepohs.com</email></author><author><name>Tanel Raja</name><user>pronto</user><email>tanel.raja@eepohs.com</email></author><author><name>Sven Varkel</name><user>svenvarkel</user><email>sven.varkel@eepohs.com</email></author></authors>
22
  <date>2012-10-03</date>
23
- <time>16:53:16</time>
24
- <contents><target name="mageetc"><dir name="modules"><file name="Eepohs_Estpay.xml" hash="ebaf1b090c5e759e032e2e97b30dbb43"/></dir></target><target name="magecommunity"><dir name="Eepohs"><dir name="Estpay"><dir><dir name="Block"><file name="Abstract.php" hash="57b2b3b3349af6657479f548746f8edf"/><dir name="Adminhtml"><file name="Initjs.php" hash="ff37af4d82c44e284a8948446e17df13"/></dir><file name="Estcard.php" hash="4e0e6fb0e19cd1182df937ffd4c684a3"/><file name="IPizza.php" hash="2c0fca567ccd13dbd9bf7e148e24cd7d"/><file name="Krediidipank.php" hash="373bb7711ea7a2931ace9dedb641f9ae"/><file name="Lhv.php" hash="c66502f683f596086cbeefe56f48a6cd"/><file name="Nordea.php" hash="265640ff3bd72c5fcd0564d6ee678c93"/><file name="Sampo.php" hash="fce7f95f53ecd43d132e1ac8486a2115"/><file name="Seb.php" hash="b7a2e4c1136ea6a6c5b0861769fefcae"/><file name="Swedbank.php" hash="b1b121d5a278d8af2c60ce4e373f7216"/></dir><dir name="Controller"><file name="Abstract.php" hash="11c495e9f564028bc067f52d6cf17900"/></dir><dir name="Helper"><file name="Data.php" hash="e26d9afdcb2ab0e4229218c6d5df713b"/></dir><dir name="Model"><file name="Abstract.php" hash="d6471f1b87ff44ce615dee9a9b3f72ba"/><file name="Estcard.php" hash="cce28af04d0f92a18f6f386ecd9c2d3c"/><file name="IPizza.php" hash="944d1f6b182b11398e873a3f31a85fe2"/><file name="Krediidipank.php" hash="353f26a624481522351701e34054e07c"/><file name="Lhv.php" hash="323cbf429ca77814f214e6521b4c01e2"/><file name="Nordea.php" hash="b98c717b304080656f56e4db57947df1"/><file name="Sampo.php" hash="d9d721087bd5dc2e8cc8bfab418ce533"/><file name="Seb.php" hash="9f176321c5bb2969d38dd89ee1c5f540"/><file name="Swedbank.php" hash="bd92846be3baae7f960cd44585b0140a"/></dir><dir name="controllers"><file name="EstcardController.php" hash="37f829606dbe7ad46bd0aa091bb3dd41"/><file name="KrediidipankController.php" hash="5749e903de05cfd743abb258561a72f9"/><file name="LhvController.php" hash="f2a7040ec7b36a33a73a033cb2f4a92b"/><file name="NordeaController.php" hash="d449240adcd28eb7ebee40145ecbee21"/><file name="SampoController.php" hash="bb28906469ca652dcfc92d9750c1ef54"/><file name="SebController.php" hash="275e858d96dea4ae1a3fa0374fb16ea7"/><file name="SwedbankController.php" hash="db7cdc5d52d24a76a3f2eccc5bdd0cb2"/></dir><dir name="etc"><file name="config.xml" hash="ffd43b7b42e7dba9b9af9798cc9a460d"/><file name="system.xml" hash="1dfdfa037fa344badf8c144f39d1d6f4"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="eepohs"><dir><dir name="estpay"><file name="eepohs_logo_small.png" hash="02f9bbc63353de450a4251032696b771"/><file name="eepohs_logo_x40px.png" hash="f224808ff96cb44bf2ca175606d08140"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="eepohs"><dir name="estpay"><file name="estcard_logo_120x31.gif" hash="61ba903f860fdd8fa43f38d3f579fcdc"/><file name="krediidipank_logo_88x31.gif" hash="d4fe2e6bf5161b19a4a05185d4bfbb43"/><file name="lhv_logo_120x60.png" hash="197fbb4fa075144b00bb9ea8e72314a1"/><file name="lhv_logo_88x31.png" hash="6e824143ac44b64901dfcb8015362259"/><file name="nordea_logo_88x31.gif" hash="e519ba2ceb26c4f28e913a6f93a6041d"/><file name="sampo_logo_88x31.gif" hash="c4e1a434cadffa75481dd3afea813c01"/><file name="seb_logo_88x31.gif" hash="cad693371f8e2373fd29db412e26ec12"/><file name="swedbank_logo_220x31_eng.png" hash="d426e1adaa59fa0cbf315786631f122d"/><file name="swedbank_logo_220x31_est.png" hash="4c46c36d136e16bc66be16d005ff0ad4"/><file name="swedbank_logo_220x31_rus.png" hash="ec799492da209f8502fddc50ef4eeb30"/><file name="swedbank_logo_88x31.gif" hash="c645adcc9fff6c4edd8eef444234e7b6"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="eepohs"><file name="estpay.xml" hash="86a40323b18f4463121b3821092dd5fd"/></dir></dir><dir name="template"><dir name="eepohs"><dir name="estpay"><file name="estcard.phtml" hash="73f45a12cabb7cdafb5bdda4557aef7e"/><file name="krediidipank.phtml" hash="153bde38e33b0fea119364d47cbde856"/><file name="lhv.phtml" hash="8fe8e8a22f1fa9594d581d6b5440f6a0"/><file name="nordea.phtml" hash="2f9f5cb772ee5fff019c362471831aa7"/><file name="sampo.phtml" hash="131bc4945d23c54dda9f356d801c146c"/><file name="seb.phtml" hash="5c702f46c74308627fc7b2f346827b28"/><file name="swedbank.phtml" hash="50c98d3b45a53249e0da74ea59d1b223"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="eepohs"><file name="estpay.xml" hash="51da55362126c6d275f5ebcc46c20ea3"/></dir></dir><dir name="template"><dir name="eepohs"><dir name="estpay"><file name="initjs.phtml" hash="9723cc6b57a704e2852d8b50b4c62cd8"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="et_EE"><file name="Eepohs_Estpay.csv" hash="61dbb2ea54f163e377a2de1e3ad05f63"/></dir><dir name="en_US"><file name="Eepohs_Estpay.csv" hash="9cbd3ab267115477caa7f51d6a1197d9"/></dir></target><target name="mageweb"><dir name="js"><dir name="eepohs"><file name="estpay.js" hash="2d78f297eef811cfd9c8961c5d9c5a64"/></dir></dir></target></contents>
25
  <compatible/>
26
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
27
  </package>
1
  <?xml version="1.0"?>
2
  <package>
3
  <name>estpay</name>
4
+ <version>1.3.1</version>
5
  <stability>stable</stability>
6
  <license uri="www.opensource.org/licenses/bsd-license.php">BSDL</license>
7
  <channel>community</channel>
15
  LHV&#xD;
16
  Nordea&#xD;
17
  NETS (EstCard)</description>
18
+ <notes>In this release more logging is added for debugging and better security. &#xD;
19
+ Logs are written to separate file. It makes it easier to roll and clean logs</notes>
 
20
  <authors><author><name>Eepohs</name><user>eepohs</user><email>info@eepohs.com</email></author><author><name>Tanel Raja</name><user>pronto</user><email>tanel.raja@eepohs.com</email></author><author><name>Sven Varkel</name><user>svenvarkel</user><email>sven.varkel@eepohs.com</email></author></authors>
21
  <date>2012-10-03</date>
22
+ <time>19:52:28</time>
23
+ <contents><target name="mageetc"><dir name="modules"><file name="Eepohs_Estpay.xml" hash="ce8af3c305e358f684cb6f5843c75e28"/></dir></target><target name="magecommunity"><dir name="Eepohs"><dir name="Estpay"><dir><dir name="Block"><file name="Abstract.php" hash="39ad5dc63b11515cea2a4062a7e765b8"/><dir name="Adminhtml"><file name="Initjs.php" hash="23216cc65d876481156a9d34fc7e0383"/></dir><file name="Estcard.php" hash="e6591e258b167992534e25f0ecd8ab44"/><file name="IPizza.php" hash="0351286e2d1e98c296316e7e9496d66b"/><file name="Krediidipank.php" hash="87204e2ea970aa2a113724ada18e31e7"/><file name="Lhv.php" hash="0e7f20d77b36e1e578e49d01bcd1981c"/><file name="Nordea.php" hash="0d4aaae143701b972da41502574f1fd1"/><file name="Sampo.php" hash="9948903c6f3e2fe6793c749559df1a4b"/><file name="Seb.php" hash="89a1e89b4ebe96e62c05ea6248f83ceb"/><file name="Swedbank.php" hash="d69242789c2b78346f1348187a6a56a5"/></dir><dir name="Controller"><file name="Abstract.php" hash="b31bd068cec44ca49daa60299ed0b06e"/></dir><dir name="Helper"><file name="Data.php" hash="c309eaf55577d1936035fd13e5ce76de"/></dir><dir name="Model"><file name="Abstract.php" hash="6a5737b4985e5ed0371a891bca5f8a9c"/><file name="Estcard.php" hash="0c780ba57c386504aacf54155d0d333b"/><file name="IPizza.php" hash="410e19814394e1880d2d9b6ba9098ddc"/><file name="Krediidipank.php" hash="a6f4ed5182927d5460f9445bf4d6caae"/><file name="Lhv.php" hash="2589f2e68396290ad4b932a78568bc11"/><file name="Nordea.php" hash="cdb0521143dcd3bedfd93ab1b554ded0"/><file name="Sampo.php" hash="dc09968b22286b41b7fd437b32dad7c9"/><file name="Seb.php" hash="9e2e040ad829964452e84c1c5c9303aa"/><file name="Swedbank.php" hash="dd5b58ae0f6cb037c5b07ac196552238"/></dir><dir name="controllers"><file name="EstcardController.php" hash="921f0d395fb2342f69322ee8b0b94004"/><file name="KrediidipankController.php" hash="7150bc81ee0e4d9d4494e61cd2fab0f9"/><file name="LhvController.php" hash="7e2b62ea8ad9f7b23551a1c0f903956e"/><file name="NordeaController.php" hash="5fc7957d69466584af5a8f6eaea17660"/><file name="SampoController.php" hash="98e5c44b527b45e09c0e3d6594f18d27"/><file name="SebController.php" hash="e207521697a20a46da55f9dc53866b59"/><file name="SwedbankController.php" hash="6298b4d101097f35cacd492fe0e4002e"/></dir><dir name="etc"><file name="config.xml" hash="78105524e173b4296ca665a046a002d4"/><file name="system.xml" hash="65c408e0e2af2424e5961297cf3a27a2"/></dir></dir></dir></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="images"><dir name="eepohs"><dir><dir name="estpay"><file name="eepohs_logo_small.png" hash="02f9bbc63353de450a4251032696b771"/><file name="eepohs_logo_x40px.png" hash="f224808ff96cb44bf2ca175606d08140"/></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="images"><dir name="eepohs"><dir name="estpay"><file name="estcard_logo_120x31.gif" hash="61ba903f860fdd8fa43f38d3f579fcdc"/><file name="krediidipank_logo_88x31.gif" hash="d4fe2e6bf5161b19a4a05185d4bfbb43"/><file name="lhv_logo_120x60.png" hash="197fbb4fa075144b00bb9ea8e72314a1"/><file name="lhv_logo_88x31.png" hash="6e824143ac44b64901dfcb8015362259"/><file name="nordea_logo_88x31.gif" hash="e519ba2ceb26c4f28e913a6f93a6041d"/><file name="sampo_logo_88x31.gif" hash="c4e1a434cadffa75481dd3afea813c01"/><file name="seb_logo_88x31.gif" hash="cad693371f8e2373fd29db412e26ec12"/><file name="swedbank_logo_220x31_eng.png" hash="d426e1adaa59fa0cbf315786631f122d"/><file name="swedbank_logo_220x31_est.png" hash="4c46c36d136e16bc66be16d005ff0ad4"/><file name="swedbank_logo_220x31_rus.png" hash="ec799492da209f8502fddc50ef4eeb30"/><file name="swedbank_logo_88x31.gif" hash="c645adcc9fff6c4edd8eef444234e7b6"/></dir></dir></dir></dir></dir></dir></target><target name="magedesign"><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><dir name="eepohs"><file name="estpay.xml" hash="fe759f0e957f0029b0d6f7edac4626b5"/></dir></dir><dir name="template"><dir name="eepohs"><dir name="estpay"><file name="estcard.phtml" hash="b62b0fb087e1780211aac57c288440c0"/><file name="krediidipank.phtml" hash="8dc20217181fca52e3b7ab56883f698e"/><file name="lhv.phtml" hash="3b59ddcd92fff0bbfc0fef1ce0b02fdf"/><file name="nordea.phtml" hash="e4d4847a08ef9975086c34d991600876"/><file name="sampo.phtml" hash="83ae08f0c5a1451d4e3c678be514a96b"/><file name="seb.phtml" hash="7c58877d95779c2d08c1748ddacd9e3e"/><file name="swedbank.phtml" hash="91ca33199542ab0b4ef4525821738354"/></dir></dir></dir></dir></dir></dir><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><dir name="eepohs"><file name="estpay.xml" hash="9998288ddb78ab7798ae47e5cdc065b4"/></dir></dir><dir name="template"><dir name="eepohs"><dir name="estpay"><file name="initjs.phtml" hash="13d07788731957e997be2d49cafa2cf7"/></dir></dir></dir></dir></dir></dir></target><target name="magelocale"><dir name="et_EE"><file name="Eepohs_Estpay.csv" hash="61dbb2ea54f163e377a2de1e3ad05f63"/></dir><dir name="en_US"><file name="Eepohs_Estpay.csv" hash="9cbd3ab267115477caa7f51d6a1197d9"/></dir></target><target name="mageweb"><dir name="js"><dir name="eepohs"><file name="estpay.js" hash="63887720db00232546228698b00375f1"/></dir></dir></target></contents>
24
  <compatible/>
25
  <dependencies><required><php><min>5.3.0</min><max>6.0.0</max></php></required></dependencies>
26
  </package>