Execute actionCustomerAccountAdd hook with webservice

Webservice is a tool in PrestaShop available by default and it enables merchants to give third-party tools access to their shop's database through a CRUD API, otherwise called a web service. Unfortunately disadvantage of webservice is fact that it does not execute hooks when you are using webservice to add some objects to shop like products, customers, categories etc. In this guide i want to show you how to run hook in webservice. Guide is based on 'customer' object addition to shop's database.

 

Problem

One of merchant purchased a module to activate customer's account with special link delivered with email (double opt-in sign up process in prestashop). It works perfectly when customer creates an account with register form that is available in prestashop on authentication page or during checkout process. Customer that purchased this addon started to use webservice to integrate third party app with prestashop. This app creates customer accounts in prestashop with webservice. Unfortunately webservice does not allow to execute modules, so in effect module is useless. In this guide i want to show how to execute hook with webservice call, so in effect all modules will be executed too.

 

How to execute actionCustomerAccountAdd hook with webservice?

We need to add special code to prestashop's core file that is responsible for webservice tool. The file is located here: /classes/webservice/WebserviceRequest.php. This file contains a function code:

    /**
     * save Entity Object from XML
     *
     * @param int $successReturnCode
     * @return bool
     */
    protected function saveEntityFromXml($successReturnCode){
    ...
    }
 

 

Near the line 1492 it contains code:

$result = $object->{$objectMethod}();

Right after this line please copy-paste the hook execution code i attach below:

                    if ($result == true) {
                        if (strtolower($retrieve_data['className']) == 'customer')
                        {
                            Hook::exec('actionCustomerAccountAdd', array(
                                '_POST' => $_POST,
                                'executed_from_webservice' => true,
                                'newCustomer' => $object
                            ));
                        }
                    }

Code I suggested to paste checks the result of webservice query. If result is true it checks the name of the object. If the object name is  equal to "customer" - the hook actionCustomerAccountAdd will be executed with defined parameters:

  • _POST - contains $_POST variables (avaialble by default)
  • executed_from_webservie - contains information that hook is executed from webservie (useful if we want to customize the way of how modules executed in hook behave)
  • 'newCustomer' - contains customer object (available by default)

 

Execution of other hooks

In the same way you can execute other hooks, just run different hook name in context of different object name stored in $retrieve_data['className'] variable.

author milos myszczuk
Article by Milosz Myszczuk PrestaShop expert, official PrestaShop community moderator. PHP developer, specialist in relative and spatial databases management, GIS Analyst, CEO & founder of VEKIA interactive agency. Read more about VEKIA company
If you like my articles and want much more valuable tips, feel free to send me donation
1.4 version 1.4.11 1.6 404 addon admin advertise ahref ajax alpha animation api app application authentication back office backup badge banner basics block bootstrap button cache carrier cart catalog category certificate changelog chat class clear client clip cms code colors columns comments configuration contact container content controller cookie counter country coupon css csv currency customer dashboard database debug default delete delivery desktop developer device disable discount displayNav displayTop download dynamic editor effect empty encrypt engine error exchange exclude export facebook faceshop fade fancoupon fancybox fanpage fatal feature feed field file fix fixed font footer free friendly url front ftp full gallery generate gift global godaddy google google+ gray grid groupon header help hide highlight homefeatured homepage hook hosting hover howto htaccess html html5 ID image import include input instagram installation integration iPhone issue javascript jquery kgb knowhow languages law left likebox link list livingsocial loading log login logo loyality mail mailing maintenance manufacturer marketing marquee mcrypt menu meta mobile modification module movie moving multilanguage multiupload must have mysql news newsletter notification number open graph order override page password performance PHP phpmyadmin picture pinterest plugin popup post prestashop prestashop 1.0 prestashop 1.1 prestashop 1.2 prestashop 1.3 prestashop 1.4 prestashop 1.5 price rules problem product profile promotion proslider purifier quantity query quick tip random rates register reinsurance release reporting reset responsive restore results ribbon rich text right sales search security seo service shadow share shipping shop shopmania slider smarty social networks SQL SSL statistics stock store style subcategory superuser support switcher tab tablet tag tax template text theme tinyMCE tips and tricks tpl tracking translations tree trends trigger tumblr tutorial twitter update upgrade upload variables video visits voucher vulnerability web2print wide widget width window wishlist wysiwyg youtube zip zopim