I've written a plugin which retrieves product info from the Amazon Product Advertising API via shortcode. When I retrieve the results from Amazon, I'm storing each individual product in a transient so that I don't need to make that particular call again. On most pages of my site which use this shortcode, it's only for a single product. But but in the case of one particular page I’m getting a TooManyRequests
response because I'm using the shortcode 20 or 30 times.
The Amazon API allows me to pass in multiple products at a time, but I’m not sure how I could do that given I’m using multiple occurrences of a plugin.
Here's an example of how I'm calling the plugin right now.
[mm-productlinking id="1" template="image"]
Is there any way to collect multiple shortcode uses before execution, then call all of them at the same time? Perhaps something like this?
[mm-productlinking-group]
some html code here
[mm-productlinking id="1" template="image"]
more html code here
[mm-productlinking id="2" template="image"]
and even more html code
[/mm-productlinking-group]
If I did something like this, I'd want it to be optional so that I wasn't forced to include the mm-productlinking-group
outer shortcode.
Thoughts?
The solution I'm presenting is in many ways similar to @commadelimited's answer, but with a different approach to the structure and responsibilities.
AmazonAdStorage class
I'd create a singleton which can be accessed from anywhere within the code. This class will function as a controller which is repsonsible for getting and storing the Amazon API data. Both the
mm-productlinking-group
andmm-productlinking
shortcodes will use this class to fetch the items and get the items that have been fetched.mm-productlinking-group
The group will have the responsibility of pre-fetching the ids that the children will be using. In contrast to your own solution, this implementation expects that the ids are passed as attributes. It will then fetch the ids and store them in the class.
mm-productlinking
The child shortcode will access the same class and check if the
id
is found within the stored items in the class. If it is, use that result. If not, fetch the item from the API and then render the shortcode. This allows themm-productlinking
shortcode to function independently if needed.Implementation
The usage should look like this:
Sidenote
I haven't been able to test the above and expect it needs some modification for it to work properly, like an actual implementation of the Amazon API.