Skip to content

Commit 45dd710

Browse files
author
schildsCC
committed
Added the ability to have code based configuration rather than file based.
Logfiles now no longer have to exist, they are created upon first use.
1 parent ddede71 commit 45dd710

17 files changed

+666
-176
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ test.php
44
log.txt
55
/test-cases/log.txt
66
composer.lock
7+
/.idea/

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
# 1.4.0 - 2016-08-27
6+
## Added
7+
- Added support for passing code-based configuration, rather than file based, using the new AmazonMWSConfig class
8+
- Log files no longer need to exist before the library is used, if they can be created they will be upon first use.
9+
510
## 1.3.0 - 2016-08-03
611
### Added
712
- Travis support

CREDITS

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
The phpAmazonMWS library was designed and written by Thomas Hernandez (peardian at gmail) for the CPI Group.
2+
The v1.4.0 refactoring when adding the AmazonMWSConfig class was done by Steve Childs (stevechilds76 at gmail) for Color Confidence (UK).

INSTALL.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22
To install, simply add the library to your project. Composer is the default installation tool for this library.
33
If you do not use Composer for your project, you can still auto-load classes by including the file **includes/classes.php** in the page or function.
44

5-
Before you use any commands, you need to create an **amazon-config.php** file with your account credentials. Start by copying the template provided (*amazon-config.default.php*) and renaming the file.
5+
Before you use any commands, you need to either create an **amazon-config.php** file or define an array with your account credentials.
6+
For the file approach start by copying the template provided (*amazon-config.default.php*) and renaming the file, for the array based approach
7+
see the supplied example (code_config_examples.php)
68

79
If you are operating outside of the United States, be sure to change the Amazon Service URL to the one matching your region.
810

amazon-config.default.php

-2
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,3 @@
3636

3737
//Turn off normal logging
3838
$muteLog = false;
39-
40-
?>

examples/code_config_examples.php

+68
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
<?php
2+
die('This is just an example and will not work without proper store credentials.');
3+
4+
$amazonConfig = array(
5+
'stores' =>
6+
array('myStoreName' =>
7+
array(
8+
'merchantId' => 'AAAAAAAAAAAA',
9+
'marketplaceId' => 'AAAAAAAAAAAAAA',
10+
'keyId' => 'AAAAAAAAAAAAAAAAAAAA',
11+
'secretKey' => 'BABABABABABABABABABABABABABABABABABABABA',
12+
'serviceUrl' => '',
13+
'MWSAuthToken' => '',
14+
)
15+
),
16+
'AMAZON_SERVICE_URL' => 'https://mws-eu.amazonservices.com', // eu store
17+
'logpath' => __DIR__ . './logs/amazon_mws.log',
18+
'logfunction' => '',
19+
'muteLog' => false
20+
);
21+
22+
/**
23+
* This function will retrieve a list of all items with quantity that was adjusted within the past 24 hours.
24+
* The entire list of items is returned, with each item contained in an array.
25+
* Note that this does not relay whether or not the feed had any errors.
26+
* To get this information, the feed's results must be retrieved.
27+
*/
28+
function getAmazonFeedStatusA(){
29+
global $amazonConfig; // only for example purposes, please don't use globals!
30+
31+
32+
try {
33+
$amz=new AmazonFeedList($amazonConfig);
34+
$amz->setStore('myStoreName'); // Not strictly needed as there is only 1 store in the array and its automatically activated
35+
$amz->setTimeLimits('- 24 hours'); //limit time frame for feeds to any updated since the given time
36+
$amz->setFeedStatuses(array("_SUBMITTED_", "_IN_PROGRESS_", "_DONE_")); //exclude cancelled feeds
37+
$amz->fetchFeedSubmissions(); //this is what actually sends the request
38+
return $amz->getFeedList();
39+
} catch (Exception $ex) {
40+
echo 'There was a problem with the Amazon library. Error: '.$ex->getMessage();
41+
}
42+
}
43+
44+
/**
45+
* As above but with an alternative method of creating the config object.
46+
*/
47+
function getAmazonFeedStatusB(){
48+
global $amazonConfig; // only for example purposes, please don't use globals!
49+
50+
$configObject = new \AmazonMWSConfig($amazonConfig);
51+
52+
try {
53+
// using the getConfigFor method creates another instance of AmazonMWSConfig containing just that store's data
54+
// If the method in getAmazonFeedStatusA() has more than 1 store setup in the array, they all are available to
55+
// the Amazon MWS library and you can switch between them using setStore(). However, should you want to
56+
// have clear seperation between the stores forwhatever reason, you can use getConfigFor to ensure that only
57+
// one store is available to the library. They're all still available in the configObject for later use,
58+
// calling getConfigFor does not affect the store list within the $configObject
59+
60+
$amz=new AmazonFeedList($configObject->getConfigFor('myStoreName'));
61+
$amz->setTimeLimits('- 24 hours'); //limit time frame for feeds to any updated since the given time
62+
$amz->setFeedStatuses(array("_SUBMITTED_", "_IN_PROGRESS_", "_DONE_")); //exclude cancelled feeds
63+
$amz->fetchFeedSubmissions(); //this is what actually sends the request
64+
return $amz->getFeedList();
65+
} catch (Exception $ex) {
66+
echo 'There was a problem with the Amazon library. Error: '.$ex->getMessage();
67+
}
68+
}?>

0 commit comments

Comments
 (0)