-
Notifications
You must be signed in to change notification settings - Fork 1
/
hc.py
377 lines (319 loc) · 12.1 KB
/
hc.py
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
#!/usr/bin/env python
# coding=utf-8
import pprint
import csv
import click
import requests
import datetime as datetime
from bs4 import BeautifulSoup
# from splinter import Browser
import time
import re
import copy
import os
import json
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.common.exceptions import NoSuchElementException
from selenium.common.exceptions import ElementNotVisibleException
from selenium.common.exceptions import StaleElementReferenceException
from selenium.common.exceptions import WebDriverException
from selenium.common.exceptions import TimeoutException
from requests.exceptions import ConnectionError
from requests.exceptions import ChunkedEncodingError
from requests.exceptions import ReadTimeout
TIME_OUT = 30
# hua shi shui jiao
def hua_style_sleep(seconds):
for i in range(seconds):
print('hc sleeping..' + str(i))
time.sleep(1)
hc_secret = None
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'secrets.json')) as data_file:
hc_secret = (json.load(data_file))['hc']
def validate_d(date_text):
try:
datetime.datetime.strptime(date_text, '%Y-%m-%d')
except ValueError:
raise ValueError("Incorrect data format, should be YYYY-MM-DD")
def daterange(start_date, end_date):
for n in range(int ((end_date - start_date).days)):
yield start_date + datetime.timedelta(n)
HOTEL_REF = 'Hotel Ref:'
def get_hotel_ref(booking_id, cookies):
hotel_ref_url = 'http://hotels.gta-travel.com/gcres/bookingDetail/section/' + str(booking_id) + '?cbsRevision=0'
try:
r = requests.get(hotel_ref_url, cookies=cookies, timeout=TIME_OUT)
except ConnectionError as e:
print('fatal Connection error...r')
return None
except ReadTimeout as e:
print('fatal Read timeout error...r')
return None
except ChunkedEncodingError as e:
print('fatal Chunked encoding error...s')
return None
# print('parsing hotel ref...')
soup = BeautifulSoup(r.text)
hotel_ref_label = soup.find('label', {"for":"hotelRef"})
if hotel_ref_label != None:
hotel_ref = hotel_ref_label.parent.get_text().replace(HOTEL_REF, '').strip()
print(hotel_ref)
return hotel_ref
return None
STATUS = 'Status:'
def get_hotel_status(booking_id, cookies):
hotel_status_url = 'http://hotels.gta-travel.com/gcres/bookingHeader/show/' + str(booking_id) + '?cbsRevision=0'
try:
r = requests.get(hotel_status_url, cookies=cookies, timeout=TIME_OUT)
except ConnectionError as e:
print('fatal Connection error...st')
return None
except ReadTimeout as e:
print('fatal Read timeout error...r')
return None
except ChunkedEncodingError as e:
print('fatal Chunked encoding error...s')
return None
soup = BeautifulSoup(r.text)
hotel_status_label = soup.find('label', {"for":"status"})
if hotel_status_label != None:
# booking_status = hotel_status_label.parent.get_text().replace(STATUS, '').strip()
booking_status = ' '.join(hotel_status_label.parent.get_text().replace(STATUS, '').strip().split())
# print(booking_status)
return booking_status
return None
RESERVATIONS = 'FIT Reservations'
def get_hotel_email(hotel_id, cookies):
# section=bookingContacts&containingElementContent=bookingContactsContent&containingElementCreate=bookingContacts_create&additionalParams=
payload = {'section': 'bookingContacts',
'containingElementContent': 'bookingContactsContent',
'containingElementCreate': 'bookingContacts_create'
}
hotel_status_url = 'http://hotels.gta-travel.com/gcres/bookingContacts/list/' + str(hotel_id)
try:
r = requests.get(hotel_status_url, params=payload, cookies=cookies, timeout=TIME_OUT)
except ConnectionError as e:
print('fatal Connection error...st')
return None
except ReadTimeout as e:
print('fatal Read timeout error...r')
return None
except ChunkedEncodingError as e:
print('fatal Chunked encoding error...s')
return None
soup = BeautifulSoup(r.text)
# hotel_email_td = soup.find("td", text=RESERVATIONS)
hotel_email_tbl = soup.find("tbody")
if hotel_email_tbl == None:
return None
rows = hotel_email_tbl.find_all('tr')
if rows == None:
return None
hotel_email_td = None
for row in rows:
cols = row.find_all('td')
if cols[0].text == RESERVATIONS:
hotel_email_td = cols[5]
# for i in range(5):
# hotel_email_td = hotel_email_td.find_next_sibling("td")
# break
if hotel_email_td != None:
# booking_status = hotel_status_label.parent.get_text().replace(STATUS, '').strip()
# booking_status = ' '.join(hotel_status_label.parent.get_text().replace(STATUS, '').strip().split())
hotel_email = hotel_email_td.text.strip()
print(hotel_email)
return hotel_email
return None
TO_REGISTER = 'Confirmed (to register)'
MAX_RETRIES = 100
def login_GCres(driver):
GCres_url = 'https://hotels.gta-travel.com/gcres/auth/securelogin'
for i in range(MAX_RETRIES):
try:
driver.get(GCres_url)
company_code = driver.find_element_by_id("qualifier")
username = driver.find_element_by_id("username")
password = driver.find_element_by_id("password")
except TimeoutException:
print('Error: f.. GCres login page time out..')
print('retry.. ' + str(i))
continue
except NoSuchElementException:
print('Error: f.. GCres login page not displaying properly?..')
print('retry.. ' + str(i))
continue
except WebDriverException:
print('Error: f.. GCres login WebDriverException..')
print('retry.. ' + str(i))
continue
company_code.clear()
username.clear()
password.clear()
company_code.send_keys("GTA")
username.send_keys(hc_secret['username'])
password.send_keys(hc_secret['password'])
driver.find_element_by_id("login").click()
time.sleep(5)
# get cookie
cookies = {}
for cookie in driver.get_cookies():
# pprint.pprint(cookie)
pprint.pprint('Setting cookie..')
cookies[cookie['name']] = cookie['value']
print(cookies)
if len(cookies.items()) <= 1:
print('Warning: Retry login.. ' + str(i))
hua_style_sleep(30)
continue
else:
print('Cookies secured.. ' + str(i))
break
return cookies
CONFIRMED = 'Confirmed or Completed'
HOTEL_CONFIRMED = 'Confirmed (registered )'
@click.command()
@click.option('--filename', default='output_Search_item_hr_171027_1210.csv')
# @click.option('--days', default=15, type=int)
def hc(filename):
driver = webdriver.Firefox()
driver.implicitly_wait(10)
# cookies = login_GCres(driver)
bookings = []
res = []
# filename = 'gtaConfirmRefs_5867_2017-06-30_2017-07-07.csv'
with open(filename, encoding='utf-8-sig') as csvfile:
ids = set()
reader = csv.DictReader(csvfile)
for row in reader:
# pp.pprint(row['hotel_id'])
# if row['gta_api_booking_id'] not in ids:
entry = dict()
entry['client_booking_id'] = row['client_booking_id']
entry['agent_booking_id'] = row['agent_booking_id']
entry['gta_api_booking_id'] = row['gta_api_booking_id']
entry['booking_status'] = row['booking_status']
entry['booking_creation_date'] = row['booking_creation_date']
entry['booking_departure_date'] = row['booking_departure_date']
entry['booking_name'] = row['booking_name']
entry['booking_net_price'] = row['booking_net_price']
entry['booking_currency'] = row['booking_currency']
entry['hotel_confirmation_#'] = ''
entry['hotel_confirmation_status'] = ''
if 'hotel_confirmation_#' in row:
entry['hotel_confirmation_#'] = row['hotel_confirmation_#']
if 'hotel_confirmation_status' in row:
entry['hotel_confirmation_status'] = row['hotel_confirmation_status']
entry['hotel_email'] = ''
bookings.append(entry)
# ids.add(row['gta_api_booking_id'])
# print(bookings)
for counter, booking in enumerate(bookings):
print('Search booking id: ' + str(counter) + ': ' + str(booking['gta_api_booking_id']))
if counter % 300 == 0:
print('Logging in..')
cookies = login_GCres(driver)
if not cookies:
print('Fatal: Failed to get cookies...')
break
if len(cookies.items()) <= 1:
print('Fatal: Login may have failed...')
break
if CONFIRMED not in booking['booking_status']:
print('Booking not confirmed.. skipping..')
continue
search_url = 'http://hotels.gta-travel.com/gcres/bookingSearch/search'
payload = {'bookingId': booking['gta_api_booking_id'],
'searchType': 'manual',
'currentLanguage': 'en',
'bookingType': 'F',
'dateType': 'A',
'statusAll': '*',
'statuses': 'P',
'statuses': 'C',
'statuses': 'R',
'statuses': 'X',
'search': 'Search'}
try:
r = requests.get(search_url, params=payload, cookies=cookies, timeout=TIME_OUT)
except ConnectionError as e:
print('fatal Connection error...s')
continue
except ChunkedEncodingError as e:
print('fatal Chunked encoding error...s')
continue
except ReadTimeout as e:
print('fatal Read timeout error...r')
continue
# print(r.text)
soup = BeautifulSoup(r.text)
for i in range(4):
tr_element = soup.find('tr', id='bkgList_row' + str(i))
if tr_element == None:
# first time no search result from ajax search request
if i == 0:
entry = copy.deepcopy(booking)
res.append(entry)
break
continue
hotel_onclick = tr_element['onclick']
# print(hotel_onclick)
try:
booking_id = re.search('/gcres/bookingHeader/show/(\d+)', hotel_onclick).group(1)
hotel_id = re.search('/gcres/bookingContacts/section/(\d+)', hotel_onclick).group(1)
except AttributeError:
booking_id = ''
hotel_id = ''
if booking_id == '':
continue
print('Booking id: ' + booking_id)
# print('Hotel id: ' + hotel_id)
booking['hotel_confirmation_status'] = get_hotel_status(booking_id, cookies)
# hotel_ref_num = get_hotel_ref(booking_id, cookies)
# booking['hotel_confirmation_status'] = ''
# booking['hotel_confirmation_#'] = get_hotel_ref(booking_id, cookies)
# if hotel_ref_num == None:
# # when internet is extremely slow booking['hotel_confirmation_status'] would be None sometimes
# if booking['hotel_confirmation_status'] != None and HOTEL_CONFIRMED in booking['hotel_confirmation_status']:
# # ctrip doesn't like this...
# # booking['hotel_confirmation_#'] = 'Confirmed'
# pass
# # elif TO_REGISTER in booking['hotel_confirmation_status']:
# # continue
# else:
# booking['hotel_confirmation_#'] = hotel_ref_num
# if hotel_ref_num != None:
# booking['hotel_confirmation_#'] = hotel_ref_num
booking['hotel_confirmation_#'] = get_hotel_ref(booking_id, cookies)
# turn off for now
# booking['hotel_email'] = get_hotel_email(hotel_id, cookies)
entry = copy.deepcopy(booking)
# print(entry)
res.append(entry)
# print('fetching hotel ref...')
# hotel_ref_url = 'http://hotels.gta-travel.com/gcres/bookingDetail/section/37102807?cbsRevision=0'
# r = requests.get(hotel_ref_url, cookies=cookies)
# # print(r.text)
# print('parsing hotel ref...')
# soup = BeautifulSoup(r.text)
# # hotel_ref = name = soup.find('label', attrs={"for":True}).get_text()
# # hotel_ref_label = name = soup.find('label', {"for":"hotelRef"}).get_text()
# hotel_ref_label = soup.find('label', {"for":"hotelRef"})
# if hotel_ref_label != None:
# hotel_ref = hotel_ref_label.parent.get_text().replace(HOTEL_REF, '').strip()
# print(hotel_ref)
# cookies = dict(JSESSIONID='A43FFE768312463D43CFE945A5292EB9.01bgs-tc4',
# __qca='P0-1834765283-1494573658960',
# _ga='GA1.2.440674599.1494573659',
# qualifier='GTA')
driver.quit()
keys = res[0].keys()
with open('output_hotel_ref_' + datetime.datetime.now().strftime('%y%m%d_%H%M') + '.csv', 'w', newline='', encoding='utf-8') as output_file:
dict_writer = csv.DictWriter(output_file, keys)
# dict_writer = csv.DictWriter(output_file, field_names)
dict_writer.writeheader()
dict_writer.writerows(res)
if __name__ == '__main__':
hc()