Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Customer - New Events #272

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
220 changes: 196 additions & 24 deletions unit/models/event.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,18 @@ def from_json_api(_id, _type, attributes, relationships):
return CustomerCreatedEvent(_id, _type, attributes, relationships)


class CustomerUpdatedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CustomerUpdatedEvent(_id, _type, attributes, relationships)


class CustomerArchivedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CustomerArchivedEvent(_id, _type, attributes, relationships)


class DocumentApprovedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
Expand All @@ -144,12 +156,36 @@ def from_json_api(_id, _type, attributes, relationships):
return PaymentSentEvent(_id, _type, attributes, relationships)


class PaymentCreatedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return PaymentCreatedEvent(_id, _type, attributes, relationships)


class PaymentReturnedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return PaymentReturnedEvent(_id, _type, attributes, relationships)


class PaymentRejectedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return PaymentRejectedEvent(_id, _type, attributes, relationships)


class PaymentCanceledEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return PaymentCanceledEvent(_id, _type, attributes, relationships)


class PaymentPendingReviewEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return PaymentPendingReviewEvent(_id, _type, attributes, relationships)


class StatementsCreatedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
Expand Down Expand Up @@ -197,43 +233,60 @@ class CheckPaymentPendingEvent(BaseEvent):
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentPendingEvent(_id, _type, attributes, relationships)

class CheckPaymentProcessedEvent(BaseEvent):

class CheckPaymentRejectedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentProcessedEvent(_id, _type, attributes, relationships)
return CheckPaymentRejectedEvent(_id, _type, attributes, relationships)


class CheckPaymentReturnedEvent(BaseEvent):
class CheckPaymentInProductionEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentReturnedEvent(_id, _type, attributes, relationships)
return CheckPaymentInProductionEvent(_id, _type, attributes, relationships)


class CheckPaymentPendingEvent(BaseEvent):
class CheckPaymentInDeliveryEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentPendingEvent(_id, _type, attributes, relationships)
return CheckPaymentInDeliveryEvent(_id, _type, attributes, relationships)


EventDTO = Union[AccountClosedEvent, AccountFrozenEvent, ApplicationDeniedEvent, ApplicationPendingReviewEvent,
ApplicationAwaitingDocumentsEvent, AuthorizationCreatedEvent, AuthorizationRequestApprovedEvent,
AuthorizationRequestDeclinedEvent, AuthorizationRequestPendingEvent, CardActivatedEvent,
CardStatusChangedEvent, CheckDepositCreatedEvent, CheckDepositClearingEvent, CheckDepositSentEvent,
CheckDepositReturnedEvent, CustomerCreatedEvent, DocumentApprovedEvent, DocumentRejectedEvent,
PaymentClearingEvent, PaymentSentEvent, PaymentReturnedEvent, StatementsCreatedEvent,
TransactionCreatedEvent, AccountReopenedEvent, CheckPaymentCreatedEvent,
CheckPaymentMarkedForReturnEvent, CheckPaymentProcessedEvent, CheckPaymentReturnedEvent,
CheckPaymentPendingEvent]
class CheckPaymentDeliveredEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentDeliveredEvent(_id, _type, attributes, relationships)


def events_mapper(_id, _type, attributes, relationships):
c = globals()
dot = _type.index(".")
c_name = _type[0].upper() + _type[1:dot] + _type[dot+1].upper() + _type[dot+2:] + "Event"
if c_name in c.keys():
return c[c_name].from_json_api(_id, _type, attributes, relationships)
else:
return RawUnitObject(_id, _type, attributes, relationships)
class CheckPaymentReturnToSenderEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentReturnToSenderEvent(_id, _type, attributes, relationships)


class CheckPaymentCanceledEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentCanceledEvent(_id, _type, attributes, relationships)


class CheckPaymentDeliveryStatusChangedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentDeliveryStatusChangedEvent(_id, _type, attributes, relationships)


class CheckPaymentAdditionalVerificationRequiredEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentAdditionalVerificationRequiredEvent(_id, _type, attributes, relationships)


class CheckPaymentAdditionalVerificationApprovedRequiredEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CheckPaymentAdditionalVerificationApprovedRequiredEvent(_id, _type, attributes, relationships)


class TaxFormCreatedEvent(BaseEvent):
@staticmethod
Expand All @@ -247,6 +300,114 @@ def from_json_api(_id, _type, attributes, relationships):
return TaxFormUpdatedEvent(_id, _type, attributes, relationships)


class CreditApplicationCreatedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CreditApplicationCreatedEvent(_id, _type, attributes, relationships)


class CreditApplicationPendingEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CreditApplicationPendingEvent(_id, _type, attributes, relationships)


class CreditApplicationApprovedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CreditApplicationApprovedEvent(_id, _type, attributes, relationships)


class CreditApplicationDeniedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CreditApplicationDeniedEvent(_id, _type, attributes, relationships)


class CreditApplicationCanceledEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return CreditApplicationCanceledEvent(_id, _type, attributes, relationships)


class RepaymentStatusChangedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return RepaymentStatusChangedEvent(_id, _type, attributes, relationships)


class RepaymentCreatedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return RepaymentCreatedEvent(_id, _type, attributes, relationships)


class ReceivedPaymentCreatedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return ReceivedPaymentCreatedEvent(_id, _type, attributes, relationships)


class ReceivedPaymentAdvancedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return ReceivedPaymentAdvancedEvent(_id, _type, attributes, relationships)


class ReceivedPaymentPendingReviewEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return ReceivedPaymentPendingReviewEvent(_id, _type, attributes, relationships)


class ReceivedPaymentPendingEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return ReceivedPaymentPendingEvent(_id, _type, attributes, relationships)


class ReceivedPaymentMarkedForReturnEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return ReceivedPaymentMarkedForReturnEvent(_id, _type, attributes, relationships)


class ReceivedPaymentCompletedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return ReceivedPaymentCompletedEvent(_id, _type, attributes, relationships)


class ReceivedPaymentReturnedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return ReceivedPaymentReturnedEvent(_id, _type, attributes, relationships)


class RewardSentEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return RewardSentEvent(_id, _type, attributes, relationships)


class RewardRejectedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return RewardRejectedEvent(_id, _type, attributes, relationships)


class ChargebackCreatedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return ChargebackCreatedEvent(_id, _type, attributes, relationships)


class StatementCreatedEvent(BaseEvent):
@staticmethod
def from_json_api(_id, _type, attributes, relationships):
return StatementCreatedEvent(_id, _type, attributes, relationships)


EventDTO = Union[AccountClosedEvent, AccountFrozenEvent, ApplicationDeniedEvent, ApplicationPendingReviewEvent,
ApplicationAwaitingDocumentsEvent, AuthorizationCreatedEvent, AuthorizationRequestApprovedEvent,
AuthorizationRequestDeclinedEvent, AuthorizationRequestPendingEvent, CardActivatedEvent,
Expand All @@ -255,7 +416,18 @@ def from_json_api(_id, _type, attributes, relationships):
PaymentClearingEvent, PaymentSentEvent, PaymentReturnedEvent, StatementsCreatedEvent,
TransactionCreatedEvent, AccountReopenedEvent, CheckPaymentCreatedEvent,
CheckPaymentMarkedForReturnEvent, CheckPaymentProcessedEvent, CheckPaymentReturnedEvent,
CheckPaymentPendingEvent, TaxFormCreatedEvent, TaxFormUpdatedEvent]
CheckPaymentRejectedEvent, CheckPaymentInProductionEvent, CheckPaymentInDeliveryEvent,
CheckPaymentDeliveredEvent, CheckPaymentReturnToSenderEvent, CheckPaymentCanceledEvent,
CheckPaymentDeliveryStatusChangedEvent, CheckPaymentAdditionalVerificationRequiredEvent,
CheckPaymentAdditionalVerificationApprovedRequiredEvent, CheckPaymentPendingEvent,
TaxFormCreatedEvent, TaxFormUpdatedEvent, CreditApplicationCreatedEvent,
CreditApplicationCanceledEvent, CreditApplicationDeniedEvent, CreditApplicationPendingEvent,
CreditApplicationApprovedEvent, RepaymentStatusChangedEvent, RepaymentCreatedEvent,
ReceivedPaymentCreatedEvent, ReceivedPaymentReturnedEvent, ReceivedPaymentCompletedEvent,
ReceivedPaymentAdvancedEvent, ReceivedPaymentPendingEvent, ReceivedPaymentPendingReviewEvent,
ReceivedPaymentMarkedForReturnEvent, RewardSentEvent, RewardRejectedEvent, ChargebackCreatedEvent,
StatementCreatedEvent, PaymentCreatedEvent, PaymentCanceledEvent, PaymentPendingReviewEvent,
PaymentRejectedEvent, CustomerUpdatedEvent, CustomerArchivedEvent]


def events_mapper(_id, _type, attributes, relationships):
Expand Down
Loading