How to Extend the Magento REST API to Use Coupon Auto Generation

piaoling  2014-05-06 10:54:51

How to Extend the Magento REST API to Use Coupon Auto Generation

Table of Contents

Overview

Customers of traditional stores and online web stores love coupons. Typically, a merchant sends coupons to customers who input them when checking out. The coupon saves the customer money and hopefully entices the customer to visit the store more frequently. In addition, the merchant can track coupon codes to individual customers to target market those customers.

Coupon Auto Generation and the Magento REST API

Magento CE 1.7 introduced a new method of creating coupon codes—auto generation. Auto generating coupons means Magento programmatically creates several coupon codes at one time quickly and easily. However, if Magento generates the coupon codes, you'd have to manually distribute them to customers.

Magento's REST API is extensible and can easily be called by an outside program to auto generate coupon codes. You can use this feature, for example, to e-mail coupon codes to your top 100 customers.

No programming is necessary to implement the extension module discussed in this guide; however, basic familiarity with Magento modules and PHP programming is desirable.

The Coupon AutoGen API enables any authorized external program to instruct Magento to:

  • Auto-generate the specified number of coupon codes
  • Return these codes to the calling program—simulated in this guide using a simple.phpfile

Implementation Details

This guide discusses how to use coupon auto generation and a web service to dynamically call the Magento REST API to generate a series of codes. The web service instantiates the underlying Magento sales rule (salesrule/rule) coupon code generator and creates a pool of new codes. These codes returned to the caller as a JSON string.

For more information about the Magento REST API, see Introduction to REST API. To extend the REST API to add a web service for generating and retrieving coupon codes, this guide discusses the following:

  • Setting up an auto generated coupon rule
  • Creating a module to use a REST based API extension
    This guide gives you all the files to create the module; no programming is necessary. There are four module configuration.xmlfiles and one.phpfile to create the web service.
  • Creating a user for the OAuth access to the new service
  • Testing the web service from a separate page

System Requirements

To implement and test the Coupon AutoGen API, you must have all of the following:

  • Magento Community Edition (CE) 1.7 or later on Ubuntu.
  • Magento Enterprise Edition (EE) 1.12 or later on Ubuntu.
  • pecl OAuth 1.0a extension which you install as discussed in Installing OAuth.
    Magento CE 1.7 and later support the OAuth 1.0a specification.
  • Optional. phpmyadmin, which makes it easier to view and manipulate the Magento database. You can usephpmyadminfor convenience to get the OAuth key and shared secret later in this guide.

Note: Although Magento supports other Linux operating systems, Ubuntu is the only one discussed in this guide. Consult an appropriate reference for equivalent commands on other Linux operating systems.

Installing OAuth

This section discusses how to install the pecl OAuth extension on Ubuntu. Consult the pecl.php.net documentation for installation instructions on other operating systems.

The pecl OAuth extension requires the PEAR installer. The following sections discuss the installation in detail:

Note: You must perform the tasks discussed in this section as a user withrootprivileges.

Creating a phpinfo File

Before you begin, create aphpinfo.phpfile, if you have not already done so, to determine if you already have OAuth running.

To createphpinfo.php:

  1. Open a command prompt window and connect to your Magento server.
  2. Create a file namedphpinfo.phpanywhere on the web server's docroot:
    <?php
    // Show all information, defaults to INFO_ALL
    phpinfo();
  3. Start a web browser and enter the following URL in its address or location field:
    http://host-or-ip[:port]/path-to-phpinfo/phpinfo.php

    For example, if your Magento instance host name iswww.example.comand you putphpinfo.phpin the web server's docroot, enter:
    http://www.example.com/phpinfo.php
  4. Search the resulting output forOAuth.
    The following figure shows an example of OAuth being properly set up.

    If the preceding does not display, OAuth is not set up so continue with the next section.
    If OAuth is already installed, continue with Defining a Magento Coupon Code Generation Rule.

Installing the OAuth Packages

The pecl OAuth extension requires both PEAR (which enables you to install the package) andlibpcre3-dev, which enables the OAuth package to be compiled.

To install the packages and confirm that OAuth is enabled:

  1. Enter the following commands in the order shown:
    apt-get install php-pear
    apt-get install libpcre3-dev
    pecl install oauth

    Note: Remember that you must perform the tasks discussed in this section as a user withrootprivileges.

    Wait while each package is installed. The messageBuild process completed successfullydisplays to indicate OAuth installed successfully.

    Note: IfError: `make' faileddisplays after you enterpecl install oauth, see OAuth Package Installation Error: `make' failed.

If the following displays, you must edit yourphp.inifile to find the OAuth library:
configuration option "php_ini" is not set to php.ini location
You should add "extension=oauth.so" to php.ini
  • Openphp.iniin a text editor.
    If you're not sure where it's located look in thephpinfo.phppage output. Add the following anywhere inphp.ini:
    [OAuth]
    extension=oauth.so
  • Save your changes tophp.iniand exit the text editor.
  • Enter the following command to restart the Apache web server.
    service apache2 restart
  • Continue with the next section.
  • Confirming that OAuth Installed Successfully

    If yourphpinfo.phppage is still open in a web browser, press Control+R to force a refresh; otherwise, enter the URL shown in Creating a phpinfo File to view it.

    The following figure shows an example of a properly set up OAuth extension.

    Important: Do not continue until you know that OAuth installed successfully.

    Defining a Magento Coupon Code Generation Rule

    To define a Magento coupon code generation rule:

    1. Log in to the Magento Admin Panel as an administrator.
    2. Click Promotions > Shopping Cart Price Rules.
    3. On the Shopping Cart Price Rules page, click Add New Rule (in the upper-right corner of the page).
      The General Information page displays as follows.
    4. Enter the following information.
      Item Description
      Rule Name EnterGenerate Coupons.
      Description Enter an optional description of the rule, such asRule that generates a sequence of coupon codes.
      Status From the list, click Active.
      Websites Click the web sites on which you want the coupons to display. Hold down the Shift key and click the names of all items to select them.
      Customer Groups Hold down the Shift key and click the names of all items to select them.
      Coupon Click Specific Coupon
      Coupon Code Leave the field blank.
      CE only. Auto Generation Select the Use Auto Generation check box.
      CE only. Uses per Coupon Enter10.
      Uses per Customer Enter1.
      From Date Select today's date.
      To Date Select any date in the future.
      Priority Enter0.
      Public In RSS Feed Click No.
    5. In the upper-right corner of the page, click Save and Continue Edit.
      The messageThe rule has been saveddisplays at the top of the page to indicate that Magento successfully saved the rule you just created.
    6. In the left navigation bar, click Actions.
      The Actions page displays as follows.
    7. Enter the following information.
      Item Description
      Apply From the list, click Percent of product price discount.
      Discount Amount Enter10.
      Maximum Qty Discount is Applied To Enter1.
      Discount Qty Step (Buy X) Enter1.
      Apply to Shipping Amount From the list, click No.
      Free Shipping From the list, click No.
      Stop Further Rules Processing From the list, click Yes.
      EE only Add Reward Points Enter0.
    8. Click Save (in the upper-right corner of the page).
      The messageThe rule has been saveddisplays to indicate that Magento saved the rule action options you just entered. Notice that this page now has a row for the Generate Coupons rule you just defined.
      A sample follows.
    9. Write down the rule ID (circled in red in the preceding figure). You will use this value later in this guide.

    Generating Coupon Codes

    Now that you've created a rule, this section discusses how to use the rule to manually generate a sequence of coupon codes.

    1. In the Shopping Cart Price Rules page, click the name of the rule you just created (Generate Coupons).
    2. In the left navigation bar, click Manage Coupon Codes.
    3. On the Coupons Information page, enter the following information:
      Item Description
      Coupon Qty Enter3.
      Code Length Enter12.
      Code Format Click Alphanumeric.
      Coupon Prefix EnterTEST-.
      Coupon Suffix Enter-TEST.
      Dash Every X Characters Enter0.
    4. Click Generate.
      Magento displays the three coupon codes you created in the Coupon Code section as the following figure shows.
    5. Click Save.

    Extending Magento's REST API to Include Coupon Auto-Generation

    In the preceding section, you created a Shopping Cart Price Rule named Generate Coupons that manually generates a set of coupon codes. To use those codes, you could export them to a file, and then import them into any external program you want; however, this is a time-consuming procedure!

    Fortunately, you can automate this process by adding a coupon code auto-generate API to Magento's existing REST API. Using this API, an external program can automatically get the coupon codes it needs.

    The following sections discuss how to extend Magento's REST API to include the Coupon AutoGen API:

    Disabling the Magento Cache

    While you're implementing the Coupon AutoGen API, you must disable Magento's caching so Magento will find and use your new code immediately.

    To disable the cache:

    1. In the Magento Admin Panel, click System > Cache Management.
      The Cache Storage Management page displays as follows.
    2. Click Select All (on the upper-left of the page).
      A check mark displays next to each Magento cache in the list.
    3. From the Actions list, click Disable.
    4. Click Submit.
      Magento disables the selected caches, replacing the green ENABLED status indicators with red DISABLED indicators.
    5. Click Flush Magento Cache and wait for the cache to be flushed.
    6. Log out of the Magento Admin Panel.

    Creating Configuration Files

    This section discusses how to create a module (also referred to as an extension). The module consists of configuration files that create a web service that extends the Magento REST API to take input from an external program. This program uses HTTP POST and OAuth calls to auto-generate coupon codes.

    In this guide, the external program is a PHP script; however, it could be any application that uses OAuth and REST calls.

    For more information about Magento module development, see developer documentation on Magento Connect.

    Note: Magento discusses recommendations for file and directory permissions and ownership on their Wiki; for example, Resetting File Permissions. It is up to you to determine ownership and permissions. This guide assumes you create files and directories asrootand change the permissions appropriately later. Consult an IT administrator if you're not sure how to proceed.

    1. Log in to your Magento server and create the following directories:
      magento-install-dir/app/code/community/CouponDemo magento-install-dir/app/code/community/CouponDemo/AutoGen magento-install-dir/app/code/community/CouponDemo/AutoGen/etc magento-install-dir/app/code/community/CouponDemo/AutoGen/Model magento-install-dir/app/code/community/CouponDemo/AutoGen/Model/Api2 magento-install-dir/app/code/community/CouponDemo/AutoGen/Model/Api2/Coupon magento-install-dir/app/code/community/CouponDemo/AutoGen/Model/Api2/Coupon/Rest magento-install-dir/app/code/community/CouponDemo/AutoGen/Model/Api2/Coupon/Rest/Admin
      For example, if Magento is installed in/var/www/magento, create the following directories:
      /var/www/magento/app/code/community/CouponDemo
      /var/www/magento/app/code/community/CouponDemo/AutoGen/etc
      /var/www/magento/app/code/community/CouponDemo/AutoGen/Model/Api2/Coupon/Rest/Admin

      The following figure shows an example.


      Important:

      • You must create the files and directories exactly as shown; directory names are case-sensitive.
      • Do not change any values in the configuration files discussed in this section.
      • When you create your configuration files, leave no white space at the beginning of the files. Leading white space might cause errors when Magento reads the files and might prevent the coupon demonstration module from working.
    2. Change to themagento-install-dir/app/etc/modulesdirectory.
    3. In that directory, use a text editor to create your module declaration file. This file must be namedCouponDemo_AutoGen.xmland have the following contents.
      1 2 3 4 5 6 7 8 9
      											
      <?xml version="1.0"?>
      <config>
      <modules>
      <CouponDemo_AutoGen>
      <active>true</active>
      <codePool>community</codePool>
      </CouponDemo_AutoGen>
      </modules>
      </config>
    4. Save your changes toCouponDemo_AutoGen.xmland exit the text editor.
    5. Change to themagento-install-dir/app/code/community/CouponDemo/AutoGen/etcdirectory.
    6. Create a file namedconfig.xmlwith the following contents.
      1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
      											
      <?xml version="1.0"?>
      <config>
      <modules>
      <CouponDemo_AutoGen>
      <version>0.1.0</version>
      </CouponDemo_AutoGen>
      </modules>
      <global>
      <models>
      <autogen>
      <class>CouponDemo_AutoGen_Model</class>
      </autogen>
      </models>
      </global>
      </config>
      view raw config.xml hosted with ❤ by GitHub
    7. Create a file namedapi2.xmlwith the following contents.
      1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
      											
      <config>
      <api2>
      <resource_groups>
      <autogen translate="title" module="CouponDemo_AutoGen">
      <title>CouponDemo API</title>
      <sort_order>10</sort_order>
      </autogen>
      </resource_groups>
      <resources>
      <autogen translate="title" module="CouponDemo_AutoGen">
      <group>autogen</group>
      <model>autogen/api2_coupon</model>
      <title>Coupon Code Auto Generation</title>
      <sort_order>10</sort_order>
      <privileges>
      <admin>
      <create>1</create>
      <retrieve>1</retrieve>
      </admin>
      </privileges>
      <attributes>
      <coupon_id>Coupon ID</coupon_id>
      <code>Code</code>
      <qty>Quantity</qty>
      <length>Length</length>
      <format>Format</format>
      </attributes>
      <routes>
      <route>
      <route>/coupondemo/rules/:rule_id/codes</route>
      <action_type>collection</action_type>
      </route>
      </routes>
      <versions>1</versions>
      </autogen>
      </resources>
      </api2>
      </config>
      view raw api2.xml hosted with ❤ by GitHub
    8. Save your changes toapi2.xmland exit the text editor.
    9. Change to themagento-install-dir/app/code/community/CouponDemo/AutoGen/Model/Api2directory.
    10. Create a file namedCoupon.phpwith the following contents.
      1 2 3 4 5
      											
      <?php
      class CouponDemo_AutoGen_Model_Api2_Coupon extends Mage_Api2_Model_Resource
      {
       
      }
      view raw Coupon.php hosted with ❤ by GitHub
    11. Save your changes toCoupon.phpand exit the text editor.
    12. Change to themagento-install-dir/app/code/community/CouponDemo/AutoGen/Model/Api2/Coupon/Rest/Admindirectory.
    13. Create a file namedV1.phpwith the following contents.
      1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
      											
      <?php
      /* Coupon AutoGen REST API
      *
      * @category CouponDemo
      * @package CouponDemo_AutoGen
      * @author Chuck Hudson (used with permission). For more recipes, see Chuck's book http://shop.oreilly.com/product/0636920023968.do
      */
       
      class CouponDemo_AutoGen_Model_Api2_Coupon_Rest_Admin_V1 extends CouponDemo_AutoGen_Model_Api2_Coupon
      {
      /**
      * Generate one or more coupon codes using the Generate Coupons rule defined in Magento.
      * Expected parameters are:
      * {
      * 'qty': int, - number of coupon codes to instruct Magento to generate
      * 'length': int, - length of each generated coupon code
      * 'format': string, - alphanum (for alphanumeric codes), alpha (for alphabetical codes), and num (for numeric codes)
      * }
      *
      * @param array $couponData
      * @return string|void
      */
      protected function _create($couponData)
      {
      $ruleId = $this->getRequest()->getParam('rule_id');
      $couponData['rule_id'] = $ruleId;
       
      $rule = $this->_loadSalesRule($ruleId);
      // Reference the MassGenerator on this rule.
      /** @var Mage_SalesRule_Model_Coupon_Massgenerator $generator */
      $generator = $rule->getCouponMassGenerator();
      // Validate the generator
      if (!$generator->validateData($couponData)) {
      $this->_critical(Mage::helper('salesrule')->__('Coupon AutoGen API: Invalid parameters passed in.'),
      Mage_Api2_Model_Server::HTTP_BAD_REQUEST);
      } else {
      // Set the data for the generator
      $generator->setData($couponData);
      // Generate a pool of coupon codes for the Generate Coupons rule
      $generator->generatePool();
      }
      }
       
      /**
      * Retrieve list of coupon codes.
      *
      * @return array
      */
      protected function _retrieveCollection()
      {
      $ruleId = $this->getRequest()->getParam('rule_id');
      $rule = $this->_loadSalesRule($ruleId);
      /** @var Mage_SalesRule_Model_Resource_Coupon_Collection $collection */
      $collection = Mage::getResourceModel('salesrule/coupon_collection');
      $collection->addRuleToFilter($rule);
       
      $this->_applyCollectionModifiers($collection);
       
      $data = $collection->load()->toArray();
      return $data['items'];
      }
       
      /**
      * Load sales rule by ID.
      *
      * @param int $ruleId
      * @return Mage_SalesRule_Model_Rule
      */
      protected function _loadSalesRule($ruleId)
      {
      if (!$ruleId) {
      $this->_critical(Mage::helper('salesrule')
      ->__('Rule ID not specified.'), Mage_Api2_Model_Server::HTTP_BAD_REQUEST);
      }
       
      $rule = Mage::getModel('salesrule/rule')->load($ruleId);
      if (!$rule->getId()) {
      $this->_critical(Mage::helper('salesrule')
      ->__('Rule was not found.'), Mage_Api2_Model_Server::HTTP_NOT_FOUND);
      }
       
      return $rule;
      }
      }
      view raw V1.php hosted with ❤ by GitHub
    14. Save your changes toV1.phpand exit the text editor.

    Setting Permissions on the Configuration Files

    File permissions and ownership are important for any Linux application. Magento provides general guidelines for permission and ownership although following them are not a requirement for this guide. The configuration files and directories can be owned byrootor other users and it won't prevent the procedures discussed in this guide from completing successfully.

    Consult your network administrator if you are not sure how to set file permissions and ownership. The procedure that follows is a suggestion only.

    The Magento guidelines discussed in the following procedure are taken from this Magento Wiki article and set the following:

    • File and directory ownership set toyour-login-name:apache-user-group.
      If you're not sure which group owns Apache processes, enter the commandps -ef | grep apache2. The following procedure assumes it iswww-data.
    • File permissions set to 644.
    • Directory permissions set to 755.

    To optionally set permissions and ownership according to Magento guidelines:

    1. As a user withrootprivileges, enter the following commands in the order shown to change ownership of the files and directories you created as discussed in this guide:
      cd magento-install-dir/app/code/community
      chown -R your-login-name:www-data CouponDemo
      find . -type f -exec chmod 644 {} ;
      find . -type d -exec chmod 755 {} ;
    2. As a user withrootprivileges, enter the following commands in the order shown to change the permissions and ownership ofCouponDemo_AutoGen.xml
      .
      cd magento-install-dir/app/etc/modules
      chown your-login-name:www-data CouponDemo_AutoGen.xml
      chmod 644 CouponDemo_AutoGen.xml

    Securing the Coupon AutoGen API

    For security reasons, Magento allows only authorized external programs to call the Magento REST API.

    The following sections discuss how to enable the test script (discussed in the next section) to call the Coupon AutoGen API:

    Creating a REST role for the Coupon AutoGen API

    To use the Magento Admin Panel to create a role for the Coupon AutoGen API:

    1. Log in to the Magento Admin Panel as an administrator.
    2. Click System > Web Services > REST - Roles.
    3. On the REST—Roles page, click Add Admin Role.
    4. In the Role Name field, enterCoupon Auto Generate Demo.
    5. Click Save Role.
    6. In the left navigation bar, click Role API Resources.
      The Role Resources page contains a hierarchical list of resources to which you can grant or deny the Coupon Auto Generate Demo role access.
    7. From the Resource Access list, click Custom.
    8. Select the check box next to the node labeled CouponDemo API.

      Magento automatically checks the child check boxes as the following figure shows.

    9. Click Save Role.
      Magento saves the resource API permissions you granted to the Coupon Auto Generate Demo REST role.
      The Coupon Auto Generate Demo role now has permission to use the Coupon AutoGen API.

    Adding Users to the Coupon Auto Generate Demo Role

    Now that you have a role, you must add users to give them permission to call the Coupon AutoGen API as follows:

    1. In the left navigation bar, click Role Users.
    2. Click Reset Filter (in the upper-right corner of the page).
      The page displays all registered users as the following figure shows.

    3. Select the check box next to each user to grant the user privileges to access the resources available to the Coupon Auto Generate Demo REST role—that is, permission to call the Coupon AutoGen API.

      Note: If a warning dialog box displays, click OK to dismiss it. This warning is not relevant when adding users to REST roles.

    4. When you're done, click Save Role.
      The specified user(s) can now grant an external program the right to call the Coupon AutoGen API.

    Setting up REST Attributes for the Coupon AutoGen API

    This section discusses how to enable any user with a REST Admin role to use the Coupon AutoGen API.

    To set REST attributes for the REST Admin role:

    1. Click System > Web Services > REST - Attributes.
    2. On the REST Attributes page, under User Type, click Admin.
    3. In the User Type Resources section, from the Resource Access list, click Custom.
    4. Select the CouponDemo API check box.
      Doing so selects all the child check boxes, as the following figure shows.
    5. Click Save.
      Any user with the REST Admin role can now read from and write to the Coupon AutoGen API.

    Creating an OAuth Consumer for Your Test Script

    This section discusses how to create a consumer so you can test the Coupon AutoGen API before you deploy it in a production system. After successfully testing the API, you can remove this user.

    1. In the Magento Admin Panel, click System > Web Services > REST - OAuth Consumers.
    2. Click Add New (in the upper-right corner of the page).
      The New Consumer page displays as the following figure shows.
    3. In the Name field, enterCoupon AutoGen Test Driver.
    4. Leave the other fields blank.
    5. Write down the values displayed in the Key and Secret text boxes.

      Note: The key and secret values are stored in the Magento database in the tableoauth_consumer. It might be more convenient for you to usephpmyadminor database tools to retrieve them from the database after you save the role.

      You must include these values in the test script you will write in the next section. The script uses these values to identify itself to Magento.
    6. Click Save (in the upper-right corner of the page).
    7. Log out of the Magento Admin Panel.

    Testing the Coupon AutoGen API

    This section discusses how to create a simple PHP file that acts as an external program and, with permissions you granted the OAuth consumer, enables the program to use the HTTP POST method to auto generate coupon codes.

    You can use any type of OAuth/REST call, in fact, such as using the Firefox REST Client plug-in as discussed here.

    The following sections discuss how to create and run the test script:

    Creating the Test Script

    The test script you create calls the Coupon AutoGen API, thereby causing Magento to generate the specified coupon codes and return them to the caller (rest_test.php) in the form of a JSON-encoded string. Finally, the server responds to the browser's request with an HTML page containing the generated coupon codes.

    The PHP code that follows:

    • Uses your OAuthconsumerKeyandconsumerSecretto set up the OAuth client.
    • Defines data to pass to the array$couponGenerationData. The data should include the following:
      • The rule ID (listed next to the rule in the rule list in the Magento Admin Panel)
      • The number of codes desired (in this case, two)
      • The length of the codes
      • The format to be used (in this case, alphanumeric)
    • The array of parameters is then passed in thefetchcommand with theresourceUrlfor the web service call.

    Finally, the server responds to the browser's request with an HTML page containing the generated coupon codes.

    To create the test script, namedrest_test.php:

    1. Create the filemagento-install-dir/rest_test.phpwith the following contents.
      1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
      											
      <?php
      /********************************************************************
      File name: rest_test.php
      Description:
      A PHP test script that calls the Coupon AutoGen extension
      to Magento's REST API.
      The Coupon AutoGen API takes:
      -- the rule ID of the "Generate Coupons" rule to execute
      -- the number of coupon codes to generate
      -- the length of each coupon code
      -- the format of each coupon code
      The API returns the generated coupon codes, in JSON-encoded form
      ********************************************************************/
       
      // Replace <<...>> below with the key and secret values generated for the Coupon AutoGen Test Driver
      $consumerKey = '<<YOUR CONSUMER KEY>>'; // from Admin Panel's "REST - OAuth Consumers page"
      $consumerSecret = '<<YOUR CONSUMER SECRET>>'; // from Admin Panel's "REST - OAuth Consumers page"
       
      // Set the OAuth callback URL to this script since it contains the logic
      // to execute *after* the user authorizes this script to use the Coupon AutoGen API
      $callbackUrl = "http://<<host-or-ip:port>>/<<path>>/rest_test.php";
       
      // Set the URLs below to match your Magento installation
      $temporaryCredentialsRequestUrl = "http://<<host-or-ip:port>>/<<path>>/oauth/initiate?oauth_callback=" . urlencode($callbackUrl);
      $adminAuthorizationUrl = 'http://<<host-or-ip:port>>/<<path>>/admin/oauth_authorize';
      $accessTokenRequestUrl = 'http://<<host-or-ip:port>>/<<path>>/oauth/token';
      $apiUrl = 'http://<<host-or-ip:port>>/<<path>>/api/rest';
       
      session_start();
       
      if (!isset($_GET['oauth_token']) && isset($_SESSION['state']) && $_SESSION['state'] == 1) {
      $_SESSION['state'] = 0;
      }
       
      try {
      $authType = ($_SESSION['state'] == 2) ? OAUTH_AUTH_TYPE_AUTHORIZATION : OAUTH_AUTH_TYPE_URI;
      $oauthClient = new OAuth($consumerKey, $consumerSecret, OAUTH_SIG_METHOD_HMACSHA1, $authType);
      $oauthClient->enableDebug();
       
      if (!isset($_GET['oauth_token']) && !$_SESSION['state']) {
      $requestToken = $oauthClient->getRequestToken($temporaryCredentialsRequestUrl);
      $_SESSION['secret'] = $requestToken['oauth_token_secret'];
      $_SESSION['state'] = 1;
      header('Location: ' . $adminAuthorizationUrl . '?oauth_token=' . $requestToken['oauth_token']);
      exit;
      } else if ($_SESSION['state'] == 1) {
      $oauthClient->setToken($_GET['oauth_token'], $_SESSION['secret']);
      $accessToken = $oauthClient->getAccessToken($accessTokenRequestUrl);
      $_SESSION['state'] = 2;
      $_SESSION['token'] = $accessToken['oauth_token'];
      $_SESSION['secret'] = $accessToken['oauth_token_secret'];
      header('Location: ' . $callbackUrl);
      exit;
      } else {
      // We have the OAuth client and token. Now, let's make the API call.
      $oauthClient->setToken($_SESSION['token'], $_SESSION['secret']);
       
      // Set the array of params to send with the request
      $ruleId = <<RULE_ID>>; // Set to the rule ID of the Generate Coupons rule
      $couponGenerationData = array();
      $couponGenerationData['qty'] = 2; // Number of coupons codes to create
      $couponGenerationData['length'] = 7; // Length of each coupon code
      // Options for format include:
      // alphanum (for alphanumeric codes), alpha (for alphabetical codes), and num (for numeric codes)
      $couponGenerationData['format'] = "alphanum"; // Use alphanumeric for the coupon code format
       
      // Generate coupon codes via POST
      $resourceUrl = "$apiUrl/coupondemo/rules/{$ruleId}/codes";
      $oauthClient->fetch($resourceUrl, json_encode($couponGenerationData), OAUTH_HTTP_METHOD_POST, array(
      'Accept' => 'application/json',
      'Content-Type' => 'application/json',
      ));
       
      // Retrieve list of created coupons via GET
      $collectionFilters = array('limit' => $couponGenerationData['qty'], 'order' => 'coupon_id', 'dir' => 'dsc');
      $oauthClient->fetch($resourceUrl, $collectionFilters, OAUTH_HTTP_METHOD_GET, array(
      'Accept' => 'application/json',
      'Content-Type' => 'application/json',
      ));
      $coupons = json_decode($oauthClient->getLastResponse(), true);
       
      // Display the newly generated codes to demonstrate that the Coupon AutoGen API works
      // In reality, you might put these codes in emails to customers, store them in a database, etc.
      echo "New coupon codes:<br/>";
      foreach ($coupons as $coupon) {
      echo " --> " . $coupon['code'] . "<br/>";
      }
      }
      } catch (OAuthException $e) {
      print_r($e->getMessage());
      echo "<br/>";
      print_r($e->lastResponse);
      }
      view raw rest_test.php hosted with ❤ by GitHub
    2. The following table discusses the values you must change.
      String to change How to change it
      <<YOUR CONSUMER KEY>>

      Coupon AutoGen Test Driver OAuth consumer's key.

      You can view this in the Admin Panel: System > Web Services > REST - OAuth Consumers or you can get the value from theoauth_consumertable in the Magento database.

      <<YOUR CONSUMER SECRET>>

      Coupon AutoGen Test Driver OAuth consumer's secret.

      You can view this in the Admin Panel: System > Web Services > REST - OAuth Consumers or you can get the value from theoauth_consumertable in the Magento database.

      <<host-or-ip:port>>/<<path>>

      Your Magento instance's fully qualified host name or IP address and port, if you are using a port other than 80, and the path to your Magento installation. If you are running Magento on localhost, enter127.0.0.1

      For example, if your Magento server's host name iswww.example.com, running on port 80, and Magento is installed at/var/www/magento, enterhttp://www.example.com/magento

      <<RULE_ID>>

      Generate Coupons rule ID.

      Get this value by clicking Promotions > Shopping Cart Price Rules

      .
    3. Save the file and close the text editor.

    Running the Test Script

    To run the test script:

    1. Start a web browser.
    2. In the browser's address or location field, enter:
      http://magento-server-host-or-ip[:port]/rest_test.php
    3. When prompted, enter the login credentials of the OAuth consumer you created as discussed in Creating an OAuth Consumer for Your Test Script.
    4. Click Login.
    5. When prompted, click Authorize to grant authorization for the script to access your OAuth consumer account, as the following figure shows.
    6. When prompted, log in as that user.
      After you log in, two new coupon codes display as follows to confirm you successfully used the API. If your browser displays a page like this one, you've successfully implemented the Coupon AutoGen REST API!

    To optionally see these codes in the Admin Panel:

    1. Log in to the Admin Panel as an administrator.
    2. Click Promotions > Shopping Cart Price Rules.
    3. Click Generate Coupons.
    4. In the left navigation bar, click Manage Coupon Codes.
      The codes you generated manually earlier display with the new codes (highlighted in red) as the following figure shows.

    Re-Enabling Magento's Cache

    Only after successfully completing the test, you should re-enable Magento's caching system, so performance returns to normal.


    To re-enable the Magento cache:

    1. In the Magento Admin Panel, click System > Cache Management.
    2. On the Cache Storage Management page, click Select All (in the upper-left of the page).
      A check mark displays next to each Magento cache in the list.
    3. ClickEnablefrom the Actions list.
    4. Click Submit.
      Magento enables the selected caches. You can tell because the red DISABLED status indicator is replaced by a green ENABLED indicator.
    5. Click Select All again.
    6. ClickRefreshfrom the Actions list.
    7. Click Submit.
      Magento reloads the selected caches. Magento now performs much faster.

    Congratulations! You have successfully added the Coupon AutoGen API to Magento's REST API. Following the same procedure, you can expose lots of Magento functionality to external programs.

    Troubleshooting Suggestions

    The following sections discuss solutions to issues you might encounter when setting up this demonstration:

    OAuth Package Installation Error: `make' failed

    Problem: OAuth package installation fails with the errorERROR: `make' failed.

    Description: In some cases, thepecl install oauthcommand does not install a C compiler. If you encounter the following error, you must install themakepackage; otherwise, OAuth won't compile:

    1: make: not found
    ERROR: `make' failed

    Solution:

    1. Enter the following commands in the order shown as a user withrootprivileges:
      apt-get install make
      pecl install oauth
    2. Make sure the messageBuild process completed successfullydisplays to indicate OAuth compiled successfully.
      If the following displays, you must edit yourphp.inifile to find the OAuth library:
      configuration option "php_ini" is not set to php.ini location
      You should add "extension=oauth.so" to php.ini
    3. Openphp.iniin a text editor.
      If you're not sure where it's located look in thephpinfo.phppage output. Add the following anywhere inphp.ini:
      [OAuth]
      extension=oauth.so
    4. Save your changes tophp.iniand exit the text editor.
    5. Enter the following command to restart the Apache web server.
      service apache2 restart
    6. Verify the OAuth installation succeeded as discussed in Confirming that OAuth Installed Successfully.

    CouponDemo API Calls Options Don't Display in the Admin Panel

    Problem: After setting up the CouponDemo configuration files, the CouponDemo API Calls check boxes do not display in the Admin Panel. A sample is shown in a figure earlier in this guide.

    Description: The CouponDemo API Calls check boxes display to indicate you set up the module correctly. If they don't display, either the Magento cache hasn't been entirely cleared or there's something wrong with the directory structure or configuration files.

    Solution: Use the following steps to isolate and correct the issue:

    1. Make sure your directory structure is set up exactly as shown in this figure earlier in this guide.
    2. Make sure you copied the exact text from the sample configuration files discussed in TBD. Do not change anything, and remember that case is important.
    3. Clear the Magento cache in all of the following ways:
      • As a user with sufficient privileges to delete files and directories in the Magento installation, enter the following commands:
        rm -r magento-install-dir/var/cache
        rm -r magento-install-dir/var/session
      • Log in to the Magento Admin Panel as an administrator and click System > Cache Management.
        Click Flush Magento Cache.
        Click Flush Cache Storage and follow the prompts on your screen to delete the cache storage.
    4. Log out of the Magento Admin Panel and log back in.
    5. Click System > REST - Roles.
    6. Click Coupon Auto Generate Demo.
    7. In the left navigation bar, click Role API Resources.
    8. If the CouponDemo API Calls check boxes do not display, double-check all of the.xmlconfiguration files to make sure there is no leading white space (that is, there are no blank lines at the beginning of the files.
      Remove any blank lines and save the.xmlfiles.

    Errors Running rest_test.php

    The following sections discuss issues you might encounter when you runrest_test.phpin a web browser:

    Invalid auth/bad request: oauth_problem=consumer_key_rejected

    The following error displays in the web browser:

    Invalid auth/bad request (got a 401, expected HTTP/1.1 20X or a redirect)
    {"messages":{"error":[{"code":401,"message":"oauth_problem=consumer_key_rejected"}]}}

    Description: Your OAuth authentication attempt failed because the credentials are incorrect.

    Solution: Openrest_test.phpin a text editor and verify the values of the following:

    $consumerKey = 'value';
    $consumerSecret = 'value';

    You can find these values in theoauth_consumerdatabase table or in the Admin Panel: System > Web Services > REST - OAuth Consumers.

    After verifying the correct values, save your changes torest_test.phpand try again.

    Invalid auth/bad request: Rule was not found

    The following error displays in the web browser:

    Invalid auth/bad request (got a 404, expected HTTP/1.1 20X or a redirect)
    {"messages":{"error":[{"code":404,"message":"Rule was not found."}]}}

    Description: The shopping cart promotion rule could not be found.

    Solution: Openrest_test.phpin a text editor and verify the value of the following:

    $ruleId = value;

    You can find this value in the Admin Panel: Promotions > Shopping Cart Price Rules.

    Change the value inrest_test.php, save it, and try again.

    Invalid auth/bad request: /magento/oauth/initiate was not found on this server

    The following error displays in the web browser:

    Invalid auth/bad request (got a 404, expected HTTP/1.1 20X or a redirect)
    Not Found
    The requested URL /magento/oauth/initiate was not found on this server.

    Description: The HTTP redirect failed, most likely because web server rewrites are not properly enabled.

    Solution: Make sure web server rewrites are enabled. The procedure you use depends on your web server and operating system. An example for Ubuntu can be found here.

    Next Steps

    • Refer to Magento APIs - REST for documentation explaining how the Magento's REST API framework works.
    • Refer to Documentation REST for instructions explaining how to use the REST APIs included in Magento "out of the box".
    类别 :  默认(739)  |  浏览(6676)  |  评论(0)
    发表评论(评论将通过邮件发给作者):

    Email: