-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtvfetch.py
323 lines (265 loc) · 9.88 KB
/
tvfetch.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
import os
import re
import json
import logging
from datetime import datetime
from bs4 import BeautifulSoup
import web
log = logging.getLogger(__name__)
UNICODE_MAP = {
260: 'A',
261: 'a',
268: 'C',
269: 'c',
278: 'E',
279: 'e',
280: 'E',
281: 'e',
302: 'I',
303: 'i',
352: 'S',
353: 's',
362: 'U',
363: 'u',
370: 'U',
371: 'u',
381: 'Z',
382: 'z'
}
def fallbackEncoding(line):
def mutate(char):
code = ord(char)
if code in UNICODE_MAP:
char = UNICODE_MAP[code]
return char
return "".join(map(mutate, line))
def reduceCharset(line):
return line.lower().replace(' ', '-')
def readJson(fileName):
try:
fp = open(fileName, 'r')
data = json.load(fp)
fp.close()
return data
except Exception as e:
log.debug('Failed read JSON: %s', fileName)
return
def writeJson(fileName, data):
try:
fp = open(fileName, 'w')
json.dump(data, fp)
fp.close()
return True
except Exception as e:
log.warn('Failed read JSON: %s', fileName)
return False
def ensureSoup(data):
if type(data) == str:
return BeautifulSoup(data, 'html.parser')
return data
def parseChannels(content, quiet=True):
def doFixup(channels):
if not channels or len(channels) == 0:
return channels
chLink = re.compile('([\w\-]+)\/\d+$')
for channelInfo in channels:
match = chLink.search(channelInfo['link'])
if match:
channelInfo['name'] = match.group(1)
else:
channelInfo['name'] = reduceCharset(fallbackEncoding(channelInfo['label']))
channelInfo['group'] = reduceCharset(fallbackEncoding(channelInfo['category']))
return channels
def doParse(html):
chgroup = html.select("#topsearch_form")[0]
chstore = chgroup.select('script')[0]
chmatch = re.search("(\[.*\])", chstore.get_text())
chjson = chmatch.group(1)
return json.loads(chjson)
content = ensureSoup(content)
if quiet:
try:
return doFixup(doParse(content))
except Exception as e:
log.warn('Failed channels parse: %s', e.message)
return None
else:
return doFixup(doParse(content))
def parseSchedule(content, quiet=True):
def doParse(html):
result = []
today = datetime.now()
chgroup = html.select(".channel-list")[0]
chstore = chgroup.select('.channel')
for chdata in chstore:
head = chdata.select('header')[0].get_text().strip()
date = re.search("(\d\d\-\d\d)", head).group(1)
date = "%s-%s" % (today.year, date,)
records = []
schedule = chdata.select('div.item')
for entry in schedule:
entryFields = entry.select('span')
timeitem = entryFields[0]
time = timeitem.get_text().strip()
name = timeitem.next_sibling.strip()
if not name and len(entryFields) > 1:
name = entryFields[1].get_text()
infoitem = entry.select('.description')
if len(infoitem) > 0:
info = infoitem[0].get_text().strip()
else:
info = ''
records.append({
'date': date,
'time': time,
'title': name,
'description': info
})
result.append({
'date': date,
'shows': records
})
return result
content = ensureSoup(content)
if quiet:
try:
return doParse(content)
except Exception as e:
log.warn('Failed schedule parse: %s', e.message)
return None
else:
return doParse(content)
class ChannelStore:
CHANNELS_URL="http://www.tvprograma.lt/"
SCHEDULE_URL_SELF="http://www.tvprograma.lt/tv-programa/televizija/%s/%s"
SCHEDULE_URL_DATE="http://www.tvprograma.lt/tv-programa/televizija/%s/%s/%s"
def __init__(self, params):
self.params = params
self.http = web.Http(self.params)
def __getChannelsCache(self):
return os.path.join(self.params.storage_dir, 'channels.json')
def __getScheduleCache(self, channel, date):
fileName = "%s-%s.json" % (channel, date.strftime("%Y%m%d"))
return os.path.join(self.params.storage_dir, fileName)
def getChannelList(self):
log.debug('getChannelList()')
channels = self.readChannelList()
# Explicitly check None because empty lists is negative result too
if channels != None:
log.debug('Using cached channels list')
return channels
channels = self.harvestChannelList()
if not channels:
log.warn('Failed channel list harvest')
return None
self.saveChannelList(channels)
return channels
def getChannelSchedule(self, channel, date=None):
log.debug('getChannelSchedule(): %s (%s)', channel, date)
schedule = self.readChannelSchedule(channel, date)
# Explicitly check None because empty lists is negative result too
if schedule != None:
log.debug('Using cached channel schedule: %s (%s)', channel, date)
return schedule
shedules = self.harvestChannelSchedule(channel, date)
if not shedules or len(shedules) == 0:
log.warn('Failed channel schedule harvest: %s', channel)
return None
for schedule in shedules:
date = datetime.strptime(schedule['date'], "%Y-%m-%d")
shows = schedule['shows']
if not self.hasChannelSchedule(channel, date):
self.saveChannelSchedule(channel, date, shows)
else:
self.updateChannelSchedule(channel, date, shows)
return shedules[0]['shows']
def hasChannelSchedule(self, channel, date):
log.debug('hasChannelSchedule(): %s (%s)', channel, date)
return os.path.isfile(self.__getScheduleCache(channel, date))
def listChannelSchedules(self, channel):
log.debug('listChannelSchedules(): %s', channel)
filesList = os.listdir(self.params.storage_dir)
filePattern = re.compile("^" + channel + "\-(\d+)\.json")
dates = []
for fileName in filesList:
match = filePattern.match(fileName)
if not match:
continue
matchDate = match.group(1)
log.debug('Found "%s" schedule at: %s', channel, matchDate)
dates.append(datetime.strptime(matchDate, '%Y%m%d').date())
return dates
def readChannelSchedule(self, channel, date):
log.debug('readChannelSchedule(): %s (%s)', channel, date)
return readJson(self.__getScheduleCache(channel, date))
def saveChannelSchedule(self, channel, date, schedule):
log.debug('writeChannelSchedule(): %s (%s)', channel, date)
return writeJson(self.__getScheduleCache(channel, date), schedule)
def harvestChannelSchedule(self, channel, date):
log.debug('harvestChannelSchedule(): %s (%s)', channel, date)
if self.params.local_only:
log.info('Found LOCAL_ONLY. Skipping harvest')
return None
channelsList = self.getChannelList()
channelNumber = None
channelName = None
for channelData in channelsList:
if channelData['name'] == channel or channelData['label'] == channel:
# XXX(edzius): It could be simply just channelData['link']..?
channelNumber = channelData['value']
channelName = channelData['name']
break
if not channelName or not channelNumber:
log.info('Missing channel metadata to start harvest')
return
log.info('Start channel schedule harvest "%s" (%s) date %s', channelName, channelNumber, date)
if not date:
guideUrl = self.SCHEDULE_URL_SELF % (channelName, channelNumber,)
else:
guideUrl = self.SCHEDULE_URL_DATE % (channelName, channelNumber, date.strftime("%Y_%m_%d"),)
data = self.http.get(guideUrl)
content = BeautifulSoup(data, 'html.parser')
if not content:
log.error('Failed parse: %s', guideUrl)
self.http.archive()
return
# Attempt update channel list
if not self.updateChannelList(content):
log.debug('Failed attempt to update channel list')
pass
schedule = parseSchedule(content)
if not schedule:
log.error('Failed capture: %s', guideUrl)
self.http.archive()
return
return schedule
def readChannelList(self):
log.debug('readChannelList()')
return readJson(self.__getChannelsCache())
def saveChannelList(self, channels):
log.debug('saveChannelList()')
return writeJson(self.__getChannelsCache(), channels)
def harvestChannelList(self):
log.debug('harvestChannelList()')
if self.params.local_only:
log.info('Found LOCAL_ONLY. Skipping harvest')
return None
log.info('Start channel list harvest')
data = self.http.get(self.CHANNELS_URL)
content = BeautifulSoup(data, 'html.parser')
if not content:
log.error('Failed parse: %s', url)
self.http.archive()
return
channels = parseChannels(content)
if not channels:
log.error('Failed capture: %s', url)
self.http.archive()
return
return channels
def updateChannelList(self, channels):
# TODO: Not required still
return True
def updateChannelSchedule(self, channel, date, guide):
# TODO: Not required still
return True