Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Sam Gooch 24 posts 116 karma points
    Mar 29, 2021 @ 15:09
    Sam Gooch
    0

    Custom Gift Card provider

    A client of mine wants to migrate the gift cards data to a third party. To keep things simple, my thoughts would be to create a custom Gift Card provider, similar to how payment processors are done.

    The provider would need to:

    • check the validity (expiry, balance remaining, is active)
    • update balance (on order finalize)
    • create gift card
    • query gift card(s)

    Is this at all possible? Is there an interface that can be used to override the OOTB Vendr version inside the DI container?

  • Matt Brailsford 4124 posts 22215 karma points MVP 9x c-trib
    Mar 29, 2021 @ 15:16
    Matt Brailsford
    0

    Hey Sam,

    There is an IGiftCardService but it's not currently configured in the DI container in a way to be replaced as I wasn't really expecting anyone to want to swap out that implementation.

    The UI for the gift cards section is very much tied to our implementation too.

    Best option I could think would be to maybe use Umbraco extension points to potentially hide the default gift cards tree node and inject your own which renders your own list view / edit screen and manages the third party API via some custom API controllers.

    The management of deducting from gift cards could be done via event handlers listening for orders to finalize, and applying the gift cards could be done by implementing your own AmountAdjuster in the same way the built in gift cards do.

    It's all pretty heavily custom though so would involve a fair bit of hacking.

    Matt

Please Sign in or register to post replies

Write your reply to:

Draft