-
Notifications
You must be signed in to change notification settings - Fork 0
/
dabc.js
206 lines (132 loc) · 4.12 KB
/
dabc.js
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
var request = require('requestretry'),
cheerio = require('cheerio'),
_ = require('underscore'),
async = require('async');
var URL_BASE = 'https://webapps2.abc.utah.gov/Production',
BEER_LIST_URL = '/OnlinePriceList/DisplayPriceList.aspx',
SPECIAL_ORDER_LIST_URL = '/OnlinePriceList/DisplayPriceList.aspx?ClassCd=YST',
INVENTORY_URL = '/OnlineInventoryQuery/IQ/InventoryQuery.aspx',
STORE_MAP_URL = 'http://abc.utah.gov/common/script/abcMap.js';
var colMap = [
'description',
'div',
'dept',
'cat',
'size',
'cs_code',
'price',
'status'
];
function parseBeerTable( html ) {
var inventory = [],
$ = cheerio.load( html );
$( '#ContentPlaceHolderBody_GridViewItem tr' ).each( function( idx, row ) {
var $cols = $( row ).find( 'td' );
if ( $cols.length ) {
var beer = {};
$cols.each( function( idx, td ) {
if ( idx in colMap ) {
beer[ colMap[ idx ] ] = $( td ).text().trim();
}
} );
if ( 'T' == beer.div || 'YST' == beer.cat ) {
beer.description = beer.description.replace( /\d+\s?ml$/, '' ).trim();
inventory.push( beer );
}
}
} );
return inventory;
}
function requestWithRetry( url, callback ) {
request( {
url: url,
maxAttempts: 2,
retryDelay: 1000,
}, callback );
}
function getAllBeers( callback ) {
async.concat(
[
URL_BASE + BEER_LIST_URL,
URL_BASE + SPECIAL_ORDER_LIST_URL
],
function( url, asyncCallback ) {
requestWithRetry( url, function( err, res, html ) {
if ( err ) return asyncCallback( err );
var inventory = parseBeerTable( html );
asyncCallback( null, inventory );
} );
},
callback
);
}
function getBeerInventory( csCode, callback ) {
requestWithRetry( URL_BASE + INVENTORY_URL, function( err, res, html ) {
if ( err ) {
return callback( err );
}
var $ = cheerio.load( html ),
VIEWSTATE = $( '#__VIEWSTATE' ).val(),
EVENTVALIDATION = $( '#__EVENTVALIDATION' ).val();
request.post(
URL_BASE + INVENTORY_URL,
{
'headers' : {
'User-Agent' : 'Mozilla'
},
'form' : {
'__VIEWSTATE' : VIEWSTATE,
'__EVENTVALIDATION' : EVENTVALIDATION,
'__ASYNCPOST' : true,
'ctl00$ContentPlaceHolderBody$tbCscCode' : csCode
}
},
function( err, res, html ) {
if ( err ) {
return callback( err );
}
var $ = cheerio.load( html );
var inventory = {
'sku' : $( '#ContentPlaceHolderBody_lblSku' ).text(),
'status' : $( '#ContentPlaceHolderBody_lblStatus' ).text(),
'price' : $( '#ContentPlaceHolderBody_lblPrice' ).text(),
'description' : $( '#ContentPlaceHolderBody_lblDesc' ).text(),
'warehouseOnOrder' : parseInt( $( '#ContentPlaceHolderBody_lblWhsOnOrder' ).text() ),
'warehouseInventory' : parseInt( $( '#ContentPlaceHolderBody_lblWhsInv' ).text() ),
'stores' : []
};
var colMap = [ 'store', 'name', 'qty', 'address', 'city', 'phone' ];
$( '#ContentPlaceHolderBody_gvInventoryDetails tr.gridViewRow' ).each( function( idx, row ) {
var store = {};
$( row ).find( 'td' ).each( function( idx, td ) {
store[ colMap[ idx ] ] = $( td ).text();
} );
store.qty = parseInt( store.qty );
inventory.stores.push( store );
} );
callback( null, inventory );
}
);
} );
}
function getAllStores( callback ) {
requestWithRetry( STORE_MAP_URL, function( err, res, mapJs ) {
if ( err ) {
return callback( err );
}
var storePattern = /^locations\.push\(({.+})\);/mg;
var matches = mapJs.match( storePattern );
var stores = matches.map( function( storeMatch ) {
var storeJSON = storeMatch.substring( 15, ( storeMatch.length - 2 ) );
storeJSON = storeJSON.replace( / ([a-zA-Z][\w\d]*):/g, ' "$1":' );
storeJSON = storeJSON.replace( /'/g, '"' );
return JSON.parse( storeJSON );
} );
callback( null, stores.filter( ( store ) => null !== store.storeNumber ) );
} );
}
module.exports = {
getAllBeers: getAllBeers,
getBeerInventory: getBeerInventory,
getAllStores: getAllStores
};