2016-02-09 12:17:42 +00:00
|
|
|
import importlib
|
2015-05-04 14:19:58 +00:00
|
|
|
import logging
|
2016-02-09 12:17:42 +00:00
|
|
|
import os
|
2014-09-05 14:27:30 +00:00
|
|
|
from dateutil import relativedelta
|
2015-10-02 11:08:23 +00:00
|
|
|
from functools import lru_cache
|
2014-07-30 12:55:33 +00:00
|
|
|
|
2014-11-24 14:39:41 +00:00
|
|
|
from orchestra import plugins
|
2014-09-16 15:01:02 +00:00
|
|
|
from orchestra.utils.python import import_class
|
|
|
|
|
|
|
|
from .. import settings
|
2014-07-30 12:55:33 +00:00
|
|
|
|
|
|
|
|
2016-02-09 12:17:42 +00:00
|
|
|
class PaymentMethod(plugins.Plugin, metaclass=plugins.PluginMount):
|
2014-07-30 12:55:33 +00:00
|
|
|
label_field = 'label'
|
|
|
|
number_field = 'number'
|
|
|
|
process_credit = False
|
2014-09-05 14:27:30 +00:00
|
|
|
due_delta = relativedelta.relativedelta(months=1)
|
2015-03-23 15:36:51 +00:00
|
|
|
plugin_field = 'method'
|
2015-09-29 12:35:22 +00:00
|
|
|
state_help = {}
|
2014-07-30 12:55:33 +00:00
|
|
|
|
2014-09-16 15:01:02 +00:00
|
|
|
@classmethod
|
2015-10-02 11:08:23 +00:00
|
|
|
@lru_cache()
|
2016-02-09 12:17:42 +00:00
|
|
|
def get_plugins(cls, all=False):
|
|
|
|
if all:
|
|
|
|
for module in os.listdir(os.path.dirname(__file__)):
|
|
|
|
if module not in ('options.py', '__init__.py') and module[-3:] == '.py':
|
|
|
|
importlib.import_module('.'+module[:-3], __package__)
|
|
|
|
plugins = super().get_plugins()
|
|
|
|
else:
|
|
|
|
plugins = []
|
|
|
|
for cls in settings.PAYMENTS_ENABLED_METHODS:
|
|
|
|
plugins.append(import_class(cls))
|
2014-09-16 15:01:02 +00:00
|
|
|
return plugins
|
2014-07-30 12:55:33 +00:00
|
|
|
|
2015-03-11 16:32:33 +00:00
|
|
|
def get_label(self):
|
|
|
|
return self.instance.data[self.label_field]
|
2014-07-30 12:55:33 +00:00
|
|
|
|
2015-03-11 16:32:33 +00:00
|
|
|
def get_number(self):
|
|
|
|
return self.instance.data[self.number_field]
|
2014-09-05 14:27:30 +00:00
|
|
|
|
2015-03-11 16:32:33 +00:00
|
|
|
def get_bill_message(self):
|
2014-09-10 16:53:09 +00:00
|
|
|
return ''
|