@@ -12,20 +12,27 @@ governing permissions and limitations under the License.
12
12
13
13
require ( 'dotenv' ) . config ( ) ;
14
14
15
+ const { program } = require ( 'commander' ) ;
15
16
const { requestSaaS, requestSpreadsheet } = require ( '../actions/utils' ) ;
16
17
const { GetAllSkusPaginatedQuery } = require ( '../actions/queries' ) ;
17
18
18
19
async function main ( ) {
19
20
// TODO: fetch from app.config.yaml (incl. mapped env vars)?
20
21
// https://jira.corp.adobe.com/browse/SITES-28254
21
- const {
22
- COMMERCE_STORE_CODE : storeCode ,
23
- COMMERCE_STORE_URL : storeUrl ,
24
- COMMERCE_CONFIG_NAME : configName ,
25
- // eslint-disable-next-line no-undef
26
- } = process . env ;
27
-
28
- const context = { storeCode, storeUrl, configName } ;
22
+ program
23
+ . option ( '-h, --help' , 'Display help for cli' )
24
+ . option ( '-s, --storecode <storecode>' , 'Commerce Store Code' )
25
+ . option ( '-c, --config <config>' , 'Config name' )
26
+ . option ( '-u, --url <url>' , 'Root URL of the store' )
27
+
28
+ program . parse ( process . argv ) ;
29
+ const options = program . opts ( ) ;
30
+
31
+ if ( options . help || ! options . storecode || ! options . config || ! options . url ) {
32
+ program . help ( ) ;
33
+ }
34
+
35
+ const context = { storeCode : options . storecode , storeUrl : options . url , configName : options . config } ;
29
36
const { total : actualCount } = await requestSpreadsheet ( 'published-products-index' , context ) ;
30
37
let [ productsCount , currentPage , expectedCount ] = [ - 1 , 1 , 0 ] ;
31
38
while ( productsCount !== 0 ) {
0 commit comments