Using Amazon MWS (Inventory API) with CodeIgniter

2019-07-31 14:59发布

问题:

I'm somewhat familiar with using the Amazon MWS apis, but I'm new to CodeIgniter and the whole hmvc thing. I'm curious how I would add the api into CodeIgniter. Would I have to dissect the entire api into the appropriate mvc folders, or could I just add it as a library. If the latter is the case, how would I use the api?

I'm sorry if this is vague, but I would greatly appreciate any help you're willing to offer! Thanks

回答1:

I cannot say anthing specific to CodeIgniter, but I've worked with various MVC libraries, so I can give a general overview. Your options are:

I) Write a model from scratch

New code accessing the MWS would mostly end up in the "Model" space. The controllers and views (which you'll probably eventually need) are outside the scope of the code that Amazon provides, so they need to be written anyways. As far as the MVC (and OOP) idea goes, this is the "proper" way to do it, you can make full use of inheritance and polymorphism.

Advantages: Your model accessing the MWS will follow the rules and guidelines of your MVC framework. It will be easy to integrate into other parts of the framework, and integrate nicely with the rest of the code.

Disadvantages: lots of code to write and (more importantly, since MWS is a moving target) maintain.

II) Use Amazon's code as a library

Amazon's code would go into the "Libraries" space. As it doesn't follow the rules of your MVC framework, it will "feel" foreign to the rest of the code.

Advantages: Less code to write and maintain.

Disadvantages: No usage of the framework, no code reuse, no inheritance and no polymorphism.

III) Write a wrapper

This is basically a mix of the two options above. You write a very thin wrapper around the library (goes into the Model space) which calls the unmodified Amazon library. Written properly, you might get a "best of both worlds" - this depends on how much the interface the library matches your desired model interface.

Advantages: Often only little extra code is needed, when compared to the "library" approach", while the model can be used in the same way as a complete rewrite.

Disadvantages: Sometimes needs almost as much code as writing from scratch.

Suggestions and Comments

My approach would probably be to go with a wrapper, unless I need just a fraction of the library's code. Since PHP does not have a strict object hierarchy, it is usually possibly to properly mimic inheritance anyways if needed.

A side note on designing a model around the MWS: Unlike most web services, some calls to the MWS API (e.g. SubmitFeed) work asynchronously in that information about the success or failure of an operation will only be available minutes (or even hours) after the call has been made. Most MVC model hierarchies and interfaces are not designed to handle that type of thing well, so a complete rewrite might not give you the benefits that you'd normally get.

Please remember, that I have no knowledge about CodeIgniter. Your mileage may vary.



回答2:

My solution is specifically for the Yii PHP Framework but principle should work modifed for Codeigniter external library autoloader:

  1. Put the entire Amazon MWS PHP SDK into your Vendors folder or into an Extensions folder or whatever CI prefers for external libraries. You might have to create that folder and refer to it within CI

  2. Then find out how to use CI's autoloader so it autoloads the library from step 1 above.

  3. Then just call whatever part of the Amazon MWS library from step 1 from your controllers.

This is quick reply, so if I've missed something let me know so I can edit.

For more in-depth discussion visit below to see how we overcame this along with exact code we used for the autoloader and other things dealing with the Amazon MWS PHP SDK

http://www.jescor.com/amazon-price-update-program/