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