pay.models.payment_providers.worldline_saferpay =============================================== .. py:module:: pay.models.payment_providers.worldline_saferpay Attributes ---------- .. autoapisummary:: pay.models.payment_providers.worldline_saferpay.WORLDLINE_NAMESPACE pay.models.payment_providers.worldline_saferpay.SAFERPAY_SPEC_VERSION Classes ------- .. autoapisummary:: pay.models.payment_providers.worldline_saferpay.SaferpayAmount pay.models.payment_providers.worldline_saferpay.SaferpayTransaction pay.models.payment_providers.worldline_saferpay.SaferpayClient pay.models.payment_providers.worldline_saferpay.SaferpayCaptureManager pay.models.payment_providers.worldline_saferpay.WorldlineFeePolicy pay.models.payment_providers.worldline_saferpay.SaferpayPayment pay.models.payment_providers.worldline_saferpay.WorldlineSaferpay Module Contents --------------- .. py:data:: WORLDLINE_NAMESPACE .. py:data:: SAFERPAY_SPEC_VERSION :value: '1.44' .. py:class:: SaferpayAmount(/, **data: Any) Bases: :py:obj:`pydantic.BaseModel` !!! abstract "Usage Documentation" [Models](../concepts/models.md) A base class for creating Pydantic models. Attributes: __class_vars__: The names of the class variables defined on the model. __private_attributes__: Metadata about the private attributes of the model. __signature__: The synthesized `__init__` [`Signature`][inspect.Signature] of the model. __pydantic_complete__: Whether model building is completed, or if there are still undefined fields. __pydantic_core_schema__: The core schema of the model. __pydantic_custom_init__: Whether the model has a custom `__init__` function. __pydantic_decorators__: Metadata containing the decorators defined on the model. This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1. __pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these. __pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models. __pydantic_post_init__: The name of the post-init method for the model, if defined. __pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel]. __pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model. __pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model. __pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects. __pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects. __pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra] is set to `'allow'`. __pydantic_fields_set__: The names of fields explicitly set during instantiation. __pydantic_private__: Values of private attributes set on the model instance. .. py:attribute:: model_config Configuration for the model, should be a dictionary conforming to [`ConfigDict`][pydantic.config.ConfigDict]. .. py:attribute:: currency_code :type: pydantic_extra_types.currency_code.Currency .. py:attribute:: value :type: int .. py:method:: serialize_value(value: int) -> str .. py:class:: SaferpayTransaction(/, **data: Any) Bases: :py:obj:`pydantic.BaseModel` !!! abstract "Usage Documentation" [Models](../concepts/models.md) A base class for creating Pydantic models. Attributes: __class_vars__: The names of the class variables defined on the model. __private_attributes__: Metadata about the private attributes of the model. __signature__: The synthesized `__init__` [`Signature`][inspect.Signature] of the model. __pydantic_complete__: Whether model building is completed, or if there are still undefined fields. __pydantic_core_schema__: The core schema of the model. __pydantic_custom_init__: Whether the model has a custom `__init__` function. __pydantic_decorators__: Metadata containing the decorators defined on the model. This replaces `Model.__validators__` and `Model.__root_validators__` from Pydantic V1. __pydantic_generic_metadata__: Metadata for generic models; contains data used for a similar purpose to __args__, __origin__, __parameters__ in typing-module generics. May eventually be replaced by these. __pydantic_parent_namespace__: Parent namespace of the model, used for automatic rebuilding of models. __pydantic_post_init__: The name of the post-init method for the model, if defined. __pydantic_root_model__: Whether the model is a [`RootModel`][pydantic.root_model.RootModel]. __pydantic_serializer__: The `pydantic-core` `SchemaSerializer` used to dump instances of the model. __pydantic_validator__: The `pydantic-core` `SchemaValidator` used to validate instances of the model. __pydantic_fields__: A dictionary of field names and their corresponding [`FieldInfo`][pydantic.fields.FieldInfo] objects. __pydantic_computed_fields__: A dictionary of computed field names and their corresponding [`ComputedFieldInfo`][pydantic.fields.ComputedFieldInfo] objects. __pydantic_extra__: A dictionary containing extra values, if [`extra`][pydantic.config.ConfigDict.extra] is set to `'allow'`. __pydantic_fields_set__: The names of fields explicitly set during instantiation. __pydantic_private__: Values of private attributes set on the model instance. .. py:attribute:: model_config Configuration for the model, should be a dictionary conforming to [`ConfigDict`][pydantic.config.ConfigDict]. .. py:attribute:: id :type: str .. py:attribute:: date :type: datetime.datetime .. py:attribute:: six_transaction_reference :type: str .. py:attribute:: type :type: Literal['PAYMENT', 'REFUND'] .. py:attribute:: status :type: Literal['AUTHORIZED', 'CANCELED', 'CAPTURED', 'PENDING'] .. py:attribute:: amount :type: SaferpayAmount .. py:attribute:: order_id :type: str | None :value: None .. py:attribute:: capture_id :type: str | None :value: None .. py:method:: raise_if_cannot_be_captured(type: str = 'PAYMENT') -> None .. py:class:: SaferpayClient(customer_id: str | None, terminal_id: str | None, api_username: str | None, api_password: str | None, sandbox: bool = False) .. py:attribute:: customer_id .. py:attribute:: terminal_id .. py:attribute:: session .. py:attribute:: base_url :value: 'https://www.saferpay.com/api' .. py:method:: request_header() -> dict[str, Any] .. py:method:: raise_for_status(res: requests.Response) -> None .. py:method:: transaction_reference(*, transaction_id: str | None = None, order_id: str | None = None) -> dict[str, Any] .. py:method:: capture_reference(*, capture_id: str | None = None, transaction_id: str | None = None, order_id: str | None = None) -> dict[str, Any] .. py:method:: inquire(*, transaction_id: str | None = None, order_id: str | None = None) -> SaferpayTransaction .. py:method:: init(amount: decimal.Decimal, currency: str, return_url: str, description: str, **extra: Any) -> tuple[str, str] Initializes a transaction and returns a token and redirect url. .. py:method:: assert_transaction(token: str) -> SaferpayTransaction Check the status of a transaction using its token. .. py:method:: capture(tx: SaferpayTransaction, expected_type: str = 'PAYMENT') -> tuple[bool, str | None] Capture a transaction given its transaction or order id. Returns a `tuple` containing a `bool` of whether or not the transaction was captured or is still pending, and its corresponding `capture_id`, when given. .. py:method:: assert_capture(*, capture_id: str | None = None, transaction_id: str | None = None, order_id: str | None = None) -> tuple[bool, str] Check the status of a once pending capture. Returns a `tuple` containing a `bool` of whether or not the transaction was captured or is still pending, and its corresponding `transaction_id`. .. py:method:: refund(tx: SaferpayTransaction) -> SaferpayTransaction | None Refund the given transaction. May return a refund transaction. .. py:class:: SaferpayCaptureManager(client: SaferpayClient, tx: SaferpayTransaction) Captures an authorized Saferpay charge when the transaction finishes. If there is an error during this step, it is logged, but the transaction still continues successfully. The user is then supposed to manually capture the charge. .. py:attribute:: transaction_manager .. py:attribute:: client .. py:attribute:: tx .. py:method:: capture_charge(client: SaferpayClient, tx: SaferpayTransaction) -> None :classmethod: .. py:method:: sortKey() -> str .. py:method:: tpc_vote(transaction: transaction.interfaces.ITransaction) -> None .. py:method:: tpc_finish(transaction: transaction.interfaces.ITransaction) -> None .. py:method:: commit(transaction: transaction.interfaces.ITransaction) -> None .. py:method:: abort(transaction: transaction.interfaces.ITransaction) -> None .. py:method:: tpc_begin(transaction: transaction.interfaces.ITransaction) -> None .. py:method:: tpc_abort(transaction: transaction.interfaces.ITransaction) -> None .. py:class:: WorldlineFeePolicy All Worldline fee calculations in one place. .. py:attribute:: percentage :value: 0.017 .. py:attribute:: fixed :value: 0.19 .. py:method:: from_amount(amount: decimal.Decimal | float) -> float :classmethod: .. py:method:: compensate(amount: decimal.Decimal | float) -> float :classmethod: .. py:class:: SaferpayPayment Bases: :py:obj:`onegov.pay.models.payment.Payment` Represents a payment done through various means. .. py:attribute:: __mapper_args__ .. py:attribute:: fee_policy :type: onegov.pay.types.FeePolicy .. py:attribute:: order_id :type: onegov.core.orm.mixins.dict_property[str | None] .. py:attribute:: six_transaction_reference :type: onegov.core.orm.mixins.dict_property[str | None] .. py:attribute:: capture_id :type: onegov.core.orm.mixins.dict_property[str | None] .. py:attribute:: refunds :type: onegov.core.orm.mixins.dict_property[list[str]] .. py:attribute:: provider :type: sqlalchemy.orm.relationship[WorldlineSaferpay] .. py:property:: fee :type: decimal.Decimal The calculated fee or the effective fee if available. .. py:property:: remote_url :type: str Returns the url of this object on the payment provider. .. py:property:: transaction :type: SaferpayTransaction .. py:method:: refund() -> bool .. py:method:: sync(remote_obj: SaferpayTransaction | None = None) -> None Updates the local payment information with the information from the remote payment provider. .. py:class:: WorldlineSaferpay Bases: :py:obj:`onegov.pay.models.payment_provider.PaymentProvider`\ [\ :py:obj:`SaferpayPayment`\ ] Represents a payment provider. .. py:attribute:: __mapper_args__ .. py:attribute:: fee_policy :type: onegov.pay.types.FeePolicy .. py:attribute:: sandbox :type: onegov.core.orm.mixins.dict_property[bool] .. py:attribute:: customer_name :type: onegov.core.orm.mixins.dict_property[str | None] .. py:attribute:: customer_id :type: onegov.core.orm.mixins.dict_property[str | None] .. py:attribute:: terminal_id :type: onegov.core.orm.mixins.dict_property[str | None] .. py:attribute:: api_username :type: onegov.core.orm.mixins.dict_property[str | None] .. py:attribute:: api_password :type: onegov.core.orm.mixins.dict_property[str | None] .. py:attribute:: charge_fee_to_customer :type: onegov.core.orm.mixins.dict_property[bool | None] .. py:method:: adjust_price(price: onegov.pay.utils.Price | None) -> onegov.pay.utils.Price | None Called by client implementations this method allows to adjust the price by adding a fee to it. By default no change is made. .. py:property:: livemode :type: bool .. py:property:: payment_class :type: type[SaferpayPayment] .. py:property:: title :type: str The title of the payment provider (i.e. the product name). .. py:property:: url :type: str The url to the backend of the payment provider. .. py:property:: public_identity :type: str The public identifier of this payment provider. For example, the account name. .. py:property:: identity :type: str | None Uniquely identifies this payment provider amongst other providers of the same type (say the private key of the api). Used to be able to tell if a new oauth connection is the same as an existing one. This identity is not meant to be displayed. .. py:property:: client :type: SaferpayClient .. py:property:: connected :type: bool Returns True if the provider is properly hooked up to the payment provider. .. py:method:: charge(amount: decimal.Decimal, currency: str, token: str) -> SaferpayPayment Given a payment token, charges the customer and creates a payment which is returned. .. py:method:: get_token(request: onegov.core.request.CoreRequest) -> str | None Extracts this provider's specific token from the request. .. py:method:: checkout_button(label: str, amount: decimal.Decimal | None, currency: str | None, complete_url: str, request: onegov.core.request.CoreRequest, **extra: Any) -> markupsafe.Markup Generates the html for the checkout button. .. py:method:: sync() -> None Updates the local payment information with the information from the remote payment provider. .. py:property:: payment_via_get :type: bool Whether or not we're allowed to submit a payment via `GET` request. Ideally this is always `False`, but some payment providers only support a redirect via `GET`. Make sure the token retrieval is sufficiently secure to make up for this shortcoming.