Giter Club home page Giter Club logo

Comments (2)

judgej avatar judgej commented on September 14, 2024

You are giving $this->server the ability to fetch the saved transaction from the database, by giving it the storage object. That's fine so far; you are doing the dependency injection.

What you then need to do, is tell the server object to fetch the saved transaction, based on the POSTed VenderTxCode, then do a security check between other posted data and other fields on the transaction. That is all handled by:

$result = $this->server->notification($post, $complete_page_url)

The $result will be a string that you echo (back to SagePay) then immediately exit.

So in summary, notification($post, $final_page) uses VendorTxCode in $post to fetch the transaction from the database, do some security checks, then update the transaction in the database with the remaining fields in $post (which includes the authentication status, and your $final_page can pick all that up). Then it generates the return data that the SagePay notification caller is expecting.

You may want to use different return URLs, depending upon the authentication result. If so, then look at $post['STATUS'] and choose a URL based on that. However, I have found that a single "complete" page is usually easier to handle. That page can look at any authentication status, whether OK or otherwise, and make its decisions on how to handle it, and how to present that result to the end user.

Hope that helps.

from sagepay.

prajwolonta avatar prajwolonta commented on September 14, 2024

That helped a lot thanks.

from sagepay.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.