-
Notifications
You must be signed in to change notification settings - Fork 1
/
search_item_hr.py
202 lines (167 loc) · 6.96 KB
/
search_item_hr.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
#!/usr/bin/env python
# coding=utf-8
import pprint
import csv
import click
import requests
import datetime as datetime
from datetime import date
from xml.etree import ElementTree as ET
import os
# from random import sample
import random
import json
import copy
# import os
# import json
# import logging
from xml.etree.ElementTree import ParseError
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)
# booking_id_secret = None
# with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'secrets.json')) as data_file:
# booking_id_secret = (json.load(data_file))['booking_id']
REF_API = 'api'
REF_CLIENT = 'client'
REF_AGENT = 'agent'
CONFIRMED = 'Confirmed or Completed'
bad_hotels = [{"city_code": "SHEN", "item_code": "ASC"},
{"city_code": "CHEG", "item_code": "HOW"},
{"city_code": "WUH", "item_code": "CIT"},
{"city_code": "CKG", "item_code": "94"}
]
def is_bad_hotel(city_code, item_code):
for bad_hotel in bad_hotels:
if bad_hotel['city_code'] == city_code and bad_hotel['item_code'] == item_code:
return True
return False
@click.command()
@click.option('--filename', default='output_Search_booking_id_171117_1000_2d.csv')
@click.option('--client', default='ctrip')
# @click.option('--days', default=1, type=int)
def searh_item_hr(filename, client):
url = 'https://rbs.gta-travel.com/rbscnapi/RequestListenerServlet'
pp = pprint
# agent_secret = None
# with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'secrets.json')) as data_file:
# agent_secret = (json.load(data_file))[client]
agent_secret = None
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), 'secrets.json')) as data_file:
agent_secret = json.load(data_file)
print('Search client.. ' + client)
bookings_c = []
with open('output_ctrip_booking_store.csv', encoding='utf-8-sig') as csvfile:
ids = set()
reader = csv.DictReader(csvfile)
for row in reader:
if row['gta_api_booking_id'] not in ids:
bookings_c.append(row['gta_api_booking_id'])
ids.add(row['gta_api_booking_id'])
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'] = ''
entry['client_name'] = ''
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']
if 'client_name' in row:
entry['client_name'] = row['client_name']
bookings.append(entry)
ids.add(row['gta_api_booking_id'])
search_tree = ET.parse(os.path.join(os.getcwd(), 'SearchBookingItemRequest.xml'))
for counter, booking in enumerate(bookings):
pp.pprint('Searching booking id: ' + str(counter) + ': ' + booking['gta_api_booking_id'])
if booking['gta_api_booking_id'] in bookings_c:
print('Warning: already pushed to Ctrip.. skip..')
continue
if 'client_name' not in booking.keys():
print('Error: No client name...')
continue
search_tree.find('.//RequestorID').set('Client', agent_secret[booking['client_name']]['id'])
search_tree.find('.//RequestorID').set('EMailAddress', agent_secret[booking['client_name']]['email'])
search_tree.find('.//RequestorID').set('Password', agent_secret[booking['client_name']]['password'])
if not booking['hotel_confirmation_#'] and booking['hotel_confirmation_#'] != '':
print('have hotel confirmation # already.. skipping')
entry = copy.deepcopy(booking)
res.append(entry)
continue
if not booking['hotel_confirmation_status'] and booking['hotel_confirmation_status'] != '':
print('status updated already.. skipping')
entry = copy.deepcopy(booking)
res.append(entry)
continue
if CONFIRMED not in booking['booking_status']:
print('Booking not confirmed.. skipping..')
continue
# search_tree.find('.//ItemDestination').set('DestinationCode', hotel_code['city_code'])
# search_tree.find('.//ItemCode').text = hotel_code['item_code']
booking_id = booking['gta_api_booking_id'].replace('041/', '')
for search_request in search_tree.find('.//RequestDetails'):
search_request.find('.//BookingReference').text = booking_id
try:
r = requests.post(url, data=ET.tostring(search_tree.getroot(), encoding='UTF-8', method='xml'), timeout=10)
except OSError:
pp.pprint('Error: OSError.. Searching has stopped..')
continue
try:
r_tree = ET.fromstring(r.text)
except ParseError:
print('Error: parsing error.. skip.. 1')
continue
items_ele = r_tree.find('.//BookingItems')
if items_ele == None:
print('Error: No BookingItems found..')
continue
# for booking_item in r_tree.find('.//BookingItems'):
for response in r_tree.find('.//ResponseDetails'):
# print(booking_item.text)
hotel_ref_ele = response.find('.//ItemConfirmationReference')
if hotel_ref_ele != None:
booking['hotel_confirmation_#'] = hotel_ref_ele.text
else:
continue
# logic to exclude bad hotels
city_ele = response.find('.//ItemCity')
item_ele = response.find('.//Item')
if city_ele != None and items_ele != None:
city_code = city_ele.get('Code')
item_code = item_ele.get('Code')
if is_bad_hotel(city_code, item_code):
print('Warning: bad hotel.. skipping.. ')
continue
entry = copy.deepcopy(booking)
res.append(entry)
# keys = res[0].keys()
keys = res[0].keys()
# with open('output_SearchPrice_' + date.today().strftime('%Y_%m_%d') + '.csv', 'w', encoding='utf-8') as output_file:
with open('output_Search_item_hr_' + datetime.datetime.today().date().strftime('%y%m%d') + '_' + datetime.datetime.now().strftime('%H%M') + '.csv', 'w', newline='', encoding='utf-8') as output_file:
dict_writer = csv.DictWriter(output_file, keys)
dict_writer.writeheader()
dict_writer.writerows(res)
if __name__ == '__main__':
searh_item_hr()