refactoring some code
[rainbowstream.git] / rainbowstream / draw.py
... / ...
CommitLineData
1import random
2import itertools
3import requests
4import datetime
5import time
6import re
7
8from twitter.util import printNicely
9from functools import wraps
10from pyfiglet import figlet_format
11from dateutil import parser
12from .c_image import *
13from .colors import *
14from .config import *
15from .db import *
16from .py3patch import *
17
18
19db = RainbowDB()
20g = {}
21
22
23def init_cycle():
24 """
25 Init the cycle
26 """
27 colors_shuffle = [globals()[i.encode('utf8')]
28 if not str(i).isdigit()
29 else term_color(int(i))
30 for i in c['CYCLE_COLOR']]
31 return itertools.cycle(colors_shuffle)
32
33
34def start_cycle():
35 """
36 Notify from rainbow
37 """
38 g['cyc'] = init_cycle()
39 g['cache'] = {}
40
41
42def order_rainbow(s):
43 """
44 Print a string with ordered color with each character
45 """
46 colors_shuffle = [globals()[i.encode('utf8')]
47 if not str(i).isdigit()
48 else term_color(int(i))
49 for i in c['CYCLE_COLOR']]
50 colored = [colors_shuffle[i % 7](s[i]) for i in xrange(len(s))]
51 return ''.join(colored)
52
53
54def random_rainbow(s):
55 """
56 Print a string with random color with each character
57 """
58 colors_shuffle = [globals()[i.encode('utf8')]
59 if not str(i).isdigit()
60 else term_color(int(i))
61 for i in c['CYCLE_COLOR']]
62 colored = [random.choice(colors_shuffle)(i) for i in s]
63 return ''.join(colored)
64
65
66def Memoize(func):
67 """
68 Memoize decorator
69 """
70 @wraps(func)
71 def wrapper(*args):
72 if args not in g['cache']:
73 g['cache'][args] = func(*args)
74 return g['cache'][args]
75 return wrapper
76
77
78@Memoize
79def cycle_color(s):
80 """
81 Cycle the colors_shuffle
82 """
83 return next(g['cyc'])(s)
84
85
86def ascii_art(text):
87 """
88 Draw the Ascii Art
89 """
90 fi = figlet_format(text, font='doom')
91 print('\n'.join(
92 [next(g['cyc'])(i) for i in fi.split('\n')]
93 ))
94
95
96def check_config():
97 """
98 Check if config is changed
99 """
100 changed = False
101 data = get_all_config()
102 for key in c:
103 if key in data:
104 if data[key] != c[key]:
105 changed = True
106 if changed:
107 reload_config()
108
109
110def validate_theme(theme):
111 """
112 Validate a theme exists or not
113 """
114 # Theme changed check
115 files = os.listdir(os.path.dirname(__file__) + '/colorset')
116 themes = [f.split('.')[0] for f in files if f.split('.')[-1] == 'json']
117 return theme in themes
118
119
120def reload_theme(current_config):
121 """
122 Check current theme and update if necessary
123 """
124 exists = db.theme_query()
125 themes = [t.theme_name for t in exists]
126 if current_config != themes[0]:
127 config = os.path.dirname(
128 __file__) + '/colorset/' + current_config + '.json'
129 # Load new config
130 data = load_config(config)
131 if data:
132 for d in data:
133 c[d] = data[d]
134 # Restart color cycle and update db/config
135 start_cycle()
136 db.theme_update(current_config)
137 set_config('THEME', current_config)
138
139
140def color_func(func_name):
141 """
142 Call color function base on name
143 """
144 if str(func_name).isdigit():
145 return term_color(int(func_name))
146 return globals()[func_name]
147
148
149def draw(t, keyword=None, check_semaphore=False, fil=[], ig=[]):
150 """
151 Draw the rainbow
152 """
153
154 # Check the semaphore lock (stream process only)
155 if check_semaphore:
156 if db.semaphore_query_pause():
157 return
158 while db.semaphore_query_lock():
159 time.sleep(0.5)
160
161 # Check config and theme
162 check_config()
163 reload_theme(c['THEME'])
164
165 # Retrieve tweet
166 tid = t['id']
167 text = t['text']
168 screen_name = t['user']['screen_name']
169 name = t['user']['name']
170 created_at = t['created_at']
171 favorited = t['favorited']
172 date = parser.parse(created_at)
173 date = date - datetime.timedelta(seconds=time.timezone)
174 clock_format = '%Y/%m/%d %H:%M:%S'
175 try:
176 clock_format = c['FORMAT']['TWEET']['CLOCK_FORMAT']
177 except:
178 pass
179 clock = date.strftime(clock_format)
180
181 # Pull extended retweet text
182 try:
183 text = 'RT @' + t['retweeted_status']['user']['screen_name'] + ': ' +\
184 t['retweeted_status']['text']
185 except:
186 pass
187
188 # Unescape HTML character
189 text = unescape(text)
190
191 # Get expanded url
192 try:
193 expanded_url = []
194 url = []
195 urls = t['entities']['urls']
196 for u in urls:
197 expanded_url.append(u['expanded_url'])
198 url.append(u['url'])
199 except:
200 expanded_url = None
201 url = None
202
203 # Get media
204 try:
205 media_url = []
206 media = t['entities']['media']
207 for m in media:
208 media_url.append(m['media_url'])
209 except:
210 media_url = None
211
212 # Filter and ignore
213 screen_name = '@' + screen_name
214 if fil and screen_name not in fil:
215 return
216 if ig and screen_name in ig:
217 return
218
219 # Get rainbow id
220 res = db.tweet_to_rainbow_query(tid)
221 if not res:
222 db.tweet_store(tid)
223 res = db.tweet_to_rainbow_query(tid)
224 rid = res[0].rainbow_id
225
226 # Format info
227 name = cycle_color(name)
228 nick = color_func(c['TWEET']['nick'])(screen_name)
229 clock = clock
230 id = str(rid)
231 fav = ''
232 if favorited:
233 fav = color_func(c['TWEET']['favorited'])(u'\u2605')
234
235 tweet = text.split()
236 # Replace url
237 if expanded_url:
238 for index in range(len(expanded_url)):
239 tweet = lmap(
240 lambda x: expanded_url[index]
241 if x == url[index]
242 else x,
243 tweet)
244 # Highlight RT
245 tweet = lmap(
246 lambda x: color_func(c['TWEET']['rt'])(x)
247 if x == 'RT'
248 else x,
249 tweet)
250 # Highlight screen_name
251 tweet = lmap(lambda x: cycle_color(x) if x[0] == '@' else x, tweet)
252 # Highlight link
253 tweet = lmap(
254 lambda x: color_func(c['TWEET']['link'])(x)
255 if x[0:4] == 'http'
256 else x,
257 tweet)
258 # Highlight hashtag
259 tweet = lmap(
260 lambda x: color_func(c['TWEET']['hashtag'])(x)
261 if x.startswith('#')
262 else x,
263 tweet)
264 # Highlight keyword
265 tweet = ' '.join(tweet)
266 if keyword:
267 roj = re.search(keyword, tweet, re.IGNORECASE)
268 if roj:
269 occur = roj.group()
270 ary = tweet.split(occur)
271 delimiter = color_func(c['TWEET']['keyword'])(occur)
272 tweet = delimiter.join(ary)
273
274 # Load config formater
275 try:
276 formater = c['FORMAT']['TWEET']['DISPLAY']
277 formater = name.join(formater.split("#name"))
278 formater = nick.join(formater.split("#nick"))
279 formater = fav.join(formater.split("#fav"))
280 formater = tweet.join(formater.split("#tweet"))
281 # Change clock word
282 word = [w for w in formater.split() if '#clock' in w][0]
283 delimiter = color_func(c['TWEET']['clock'])(
284 clock.join(word.split('#clock')))
285 formater = delimiter.join(formater.split(word))
286 # Change id word
287 word = [w for w in formater.split() if '#id' in w][0]
288 delimiter = color_func(c['TWEET']['id'])(id.join(word.split('#id')))
289 formater = delimiter.join(formater.split(word))
290 except:
291 printNicely(red('Wrong format in config.'))
292 return
293
294 # Draw
295 printNicely(formater)
296
297 # Display Image
298 if c['IMAGE_ON_TERM'] and media_url:
299 for mu in media_url:
300 try:
301 response = requests.get(mu)
302 image_to_display(BytesIO(response.content))
303 except Exception:
304 printNicely(red('Sorry, image link is broken'))
305
306
307def print_message(m, check_semaphore=False):
308 """
309 Print direct message
310 """
311
312 # Check the semaphore lock (stream process only)
313 if check_semaphore:
314 if db.semaphore_query_pause():
315 return
316 while db.semaphore_query_lock():
317 time.sleep(0.5)
318
319 # Retrieve message
320 sender_screen_name = '@' + m['sender_screen_name']
321 sender_name = m['sender']['name']
322 text = unescape(m['text'])
323 recipient_screen_name = '@' + m['recipient_screen_name']
324 recipient_name = m['recipient']['name']
325 mid = m['id']
326 date = parser.parse(m['created_at'])
327 date = date - datetime.timedelta(seconds=time.timezone)
328 clock_format = '%Y/%m/%d %H:%M:%S'
329 try:
330 clock_format = c['FORMAT']['MESSAGE']['CLOCK_FORMAT']
331 except:
332 pass
333 clock = date.strftime(clock_format)
334
335 # Get rainbow id
336 res = db.message_to_rainbow_query(mid)
337 if not res:
338 db.message_store(mid)
339 res = db.message_to_rainbow_query(mid)
340 rid = res[0].rainbow_id
341
342 # Draw
343 sender_name = cycle_color(sender_name)
344 sender_nick = color_func(c['MESSAGE']['sender'])(sender_screen_name)
345 recipient_name = cycle_color(recipient_name)
346 recipient_nick = color_func(
347 c['MESSAGE']['recipient'])(recipient_screen_name)
348 to = color_func(c['MESSAGE']['to'])('>>>')
349 clock = clock
350 id = str(rid)
351
352 text = ''.join(lmap(lambda x: x + ' ' if x == '\n' else x, text))
353
354 # Load config formater
355 try:
356 formater = c['FORMAT']['MESSAGE']['DISPLAY']
357 formater = sender_name.join(formater.split("#sender_name"))
358 formater = sender_nick.join(formater.split("#sender_nick"))
359 formater = to.join(formater.split("#to"))
360 formater = recipient_name.join(formater.split("#recipient_name"))
361 formater = recipient_nick.join(formater.split("#recipient_nick"))
362 formater = text.join(formater.split("#message"))
363 # Change clock word
364 word = [w for w in formater.split() if '#clock' in w][0]
365 delimiter = color_func(c['MESSAGE']['clock'])(
366 clock.join(word.split('#clock')))
367 formater = delimiter.join(formater.split(word))
368 # Change id word
369 word = [w for w in formater.split() if '#id' in w][0]
370 delimiter = color_func(c['MESSAGE']['id'])(id.join(word.split('#id')))
371 formater = delimiter.join(formater.split(word))
372 except:
373 printNicely(red('Wrong format in config.'))
374 return
375
376 # Draw
377 printNicely(formater)
378
379
380def show_profile(u):
381 """
382 Show a profile
383 """
384 # Retrieve info
385 name = u['name']
386 screen_name = u['screen_name']
387 description = u['description']
388 profile_image_url = u['profile_image_url']
389 location = u['location']
390 url = u['url']
391 created_at = u['created_at']
392 statuses_count = u['statuses_count']
393 friends_count = u['friends_count']
394 followers_count = u['followers_count']
395
396 # Create content
397 statuses_count = color_func(
398 c['PROFILE']['statuses_count'])(
399 str(statuses_count) +
400 ' tweets')
401 friends_count = color_func(
402 c['PROFILE']['friends_count'])(
403 str(friends_count) +
404 ' following')
405 followers_count = color_func(
406 c['PROFILE']['followers_count'])(
407 str(followers_count) +
408 ' followers')
409 count = statuses_count + ' ' + friends_count + ' ' + followers_count
410 user = cycle_color(
411 name) + color_func(c['PROFILE']['nick'])(' @' + screen_name + ' : ') + count
412 profile_image_raw_url = 'Profile photo: ' + \
413 color_func(c['PROFILE']['profile_image_url'])(profile_image_url)
414 description = ''.join(
415 lmap(lambda x: x + ' ' * 4 if x == '\n' else x, description))
416 description = color_func(c['PROFILE']['description'])(description)
417 location = 'Location : ' + color_func(c['PROFILE']['location'])(location)
418 url = 'URL : ' + (color_func(c['PROFILE']['url'])(url) if url else '')
419 date = parser.parse(created_at)
420 date = date - datetime.timedelta(seconds=time.timezone)
421 clock = date.strftime('%Y/%m/%d %H:%M:%S')
422 clock = 'Join at ' + color_func(c['PROFILE']['clock'])(clock)
423
424 # Format
425 line1 = u"{u:>{uw}}".format(
426 u=user,
427 uw=len(user) + 2,
428 )
429 line2 = u"{p:>{pw}}".format(
430 p=profile_image_raw_url,
431 pw=len(profile_image_raw_url) + 4,
432 )
433 line3 = u"{d:>{dw}}".format(
434 d=description,
435 dw=len(description) + 4,
436 )
437 line4 = u"{l:>{lw}}".format(
438 l=location,
439 lw=len(location) + 4,
440 )
441 line5 = u"{u:>{uw}}".format(
442 u=url,
443 uw=len(url) + 4,
444 )
445 line6 = u"{c:>{cw}}".format(
446 c=clock,
447 cw=len(clock) + 4,
448 )
449
450 # Display
451 printNicely('')
452 printNicely(line1)
453 if c['IMAGE_ON_TERM']:
454 try:
455 response = requests.get(profile_image_url)
456 image_to_display(BytesIO(response.content))
457 except:
458 pass
459 else:
460 printNicely(line2)
461 for line in [line3, line4, line5, line6]:
462 printNicely(line)
463 printNicely('')
464
465
466def print_trends(trends):
467 """
468 Display topics
469 """
470 for topic in trends[:c['TREND_MAX']]:
471 name = topic['name']
472 url = topic['url']
473 line = cycle_color(name) + ': ' + color_func(c['TREND']['url'])(url)
474 printNicely(line)
475 printNicely('')
476
477
478def print_list(group):
479 """
480 Display a list
481 """
482 for g in group:
483 # Format
484 name = g['full_name']
485 name = color_func(c['GROUP']['name'])(name + ' : ')
486 member = str(g['member_count'])
487 member = color_func(c['GROUP']['member'])(member + ' member')
488 subscriber = str(g['subscriber_count'])
489 subscriber = color_func(
490 c['GROUP']['subscriber'])(
491 subscriber +
492 ' subscriber')
493 description = g['description'].strip()
494 description = color_func(c['GROUP']['description'])(description)
495 mode = g['mode']
496 mode = color_func(c['GROUP']['mode'])('Type: ' + mode)
497 created_at = g['created_at']
498 date = parser.parse(created_at)
499 date = date - datetime.timedelta(seconds=time.timezone)
500 clock = date.strftime('%Y/%m/%d %H:%M:%S')
501 clock = 'Created at ' + color_func(c['GROUP']['clock'])(clock)
502
503 # Create lines
504 line1 = ' ' * 2 + name + member + ' ' + subscriber
505 line2 = ' ' * 4 + description
506 line3 = ' ' * 4 + mode
507 line4 = ' ' * 4 + clock
508
509 # Display
510 printNicely('')
511 printNicely(line1)
512 printNicely(line2)
513 printNicely(line3)
514 printNicely(line4)
515
516 printNicely('')
517
518
519def show_calendar(month, date, rel):
520 """
521 Show the calendar in rainbow mode
522 """
523 month = random_rainbow(month)
524 date = ' '.join([cycle_color(i) for i in date.split(' ')])
525 today = str(int(os.popen('date +\'%d\'').read().strip()))
526 # Display
527 printNicely(month)
528 printNicely(date)
529 for line in rel:
530 ary = line.split(' ')
531 ary = lmap(
532 lambda x: color_func(c['CAL']['today'])(x)
533 if x == today
534 else color_func(c['CAL']['days'])(x),
535 ary)
536 printNicely(' '.join(ary))
537
538
539# Start the color cycle
540start_cycle()