working fine in CentOS
[rainbowstream.git] / rainbowstream / draw.py
CommitLineData
e9f5200b
VNM
1import random
2import itertools
7500d90b 3import requests
8b3456f9 4import locale
5import arrow
59262e95 6import re
67c663f8 7import os
7500d90b 8
2da50cc4 9from twitter.util import printNicely
e9f5200b
VNM
10from functools import wraps
11from pyfiglet import figlet_format
7500d90b 12from dateutil import parser
2da50cc4 13from .c_image import *
7500d90b
VNM
14from .colors import *
15from .config import *
c3bab4ef 16from .py3patch import *
17
99b52f5f
O
18# Draw global variables
19dg = {}
1fdd6a5c 20
422dd385 21
e9f5200b
VNM
22def init_cycle():
23 """
24 Init the cycle
25 """
26 colors_shuffle = [globals()[i.encode('utf8')]
fa6e062d
O
27 if not str(i).isdigit()
28 else term_color(int(i))
422dd385 29 for i in c['CYCLE_COLOR']]
5f22104f 30 return itertools.cycle(colors_shuffle)
1fdd6a5c 31
e9f5200b 32
59262e95 33def start_cycle():
2359c276
VNM
34 """
35 Notify from rainbow
36 """
99b52f5f
O
37 dg['cyc'] = init_cycle()
38 dg['cache'] = {}
2359c276
VNM
39
40
e9f5200b
VNM
41def order_rainbow(s):
42 """
43 Print a string with ordered color with each character
44 """
5f22104f 45 colors_shuffle = [globals()[i.encode('utf8')]
fa6e062d
O
46 if not str(i).isdigit()
47 else term_color(int(i))
422dd385 48 for i in c['CYCLE_COLOR']]
5f22104f 49 colored = [colors_shuffle[i % 7](s[i]) for i in xrange(len(s))]
c3bab4ef 50 return ''.join(colored)
e9f5200b
VNM
51
52
53def random_rainbow(s):
54 """
55 Print a string with random color with each character
56 """
5f22104f 57 colors_shuffle = [globals()[i.encode('utf8')]
fa6e062d
O
58 if not str(i).isdigit()
59 else term_color(int(i))
422dd385 60 for i in c['CYCLE_COLOR']]
5f22104f 61 colored = [random.choice(colors_shuffle)(i) for i in s]
c3bab4ef 62 return ''.join(colored)
e9f5200b
VNM
63
64
65def Memoize(func):
66 """
67 Memoize decorator
68 """
e9f5200b
VNM
69 @wraps(func)
70 def wrapper(*args):
99b52f5f
O
71 if args not in dg['cache']:
72 dg['cache'][args] = func(*args)
73 return dg['cache'][args]
e9f5200b
VNM
74 return wrapper
75
76
77@Memoize
78def cycle_color(s):
79 """
80 Cycle the colors_shuffle
81 """
99b52f5f 82 return next(dg['cyc'])(s)
e9f5200b
VNM
83
84
85def ascii_art(text):
86 """
87 Draw the Ascii Art
88 """
89 fi = figlet_format(text, font='doom')
90 print('\n'.join(
99b52f5f 91 [next(dg['cyc'])(i) for i in fi.split('\n')]
e9f5200b
VNM
92 ))
93
94
92685d21 95def check_config():
ceec8593 96 """
97 Check if config is changed
98 """
99 changed = False
100 data = get_all_config()
101 for key in c:
102 if key in data:
103 if data[key] != c[key]:
104 changed = True
105 if changed:
106 reload_config()
107
108
109def validate_theme(theme):
110 """
111 Validate a theme exists or not
112 """
113 # Theme changed check
114 files = os.listdir(os.path.dirname(__file__) + '/colorset')
115 themes = [f.split('.')[0] for f in files if f.split('.')[-1] == 'json']
116 return theme in themes
92685d21 117
118
99b52f5f 119def reload_theme(value, prev):
4cf86720
VNM
120 """
121 Check current theme and update if necessary
122 """
99b52f5f 123 if value != prev:
1f2f6159 124 config = os.path.dirname(
99b52f5f 125 __file__) + '/colorset/' + value + '.json'
4cf86720
VNM
126 # Load new config
127 data = load_config(config)
a5301bc0
VNM
128 if data:
129 for d in data:
130 c[d] = data[d]
99b52f5f 131 # Restart color cycle and update config
ceec8593 132 start_cycle()
99b52f5f
O
133 set_config('THEME', value)
134 return value
135 return prev
7500d90b 136
fe08f905
VNM
137
138def color_func(func_name):
139 """
140 Call color function base on name
141 """
fa6e062d
O
142 if str(func_name).isdigit():
143 return term_color(int(func_name))
c3bab4ef 144 return globals()[func_name]
fe08f905
VNM
145
146
4dc385b5 147def draw(t, keyword=None, humanize=True, fil=[], ig=[]):
7500d90b
VNM
148 """
149 Draw the rainbow
150 """
99b52f5f 151 # Check config
92685d21 152 check_config()
c37c04a9 153
7500d90b
VNM
154 # Retrieve tweet
155 tid = t['id']
606def7e 156 text = t['text']
7500d90b
VNM
157 screen_name = t['user']['screen_name']
158 name = t['user']['name']
159 created_at = t['created_at']
160 favorited = t['favorited']
318cdd67
O
161 retweet_count = t['retweet_count']
162 favorite_count = t['favorite_count']
7500d90b 163 date = parser.parse(created_at)
8b3456f9 164 date = arrow.get(date).to('local')
165 if humanize:
166 lang, encode = locale.getdefaultlocale()
167 clock = arrow.get(date).to('local').humanize(locale=lang)
168 else:
169 try:
170 clock_format = c['FORMAT']['TWEET']['CLOCK_FORMAT']
171 except:
172 clock_format = '%Y/%m/%d %H:%M:%S'
173 clock = date.datetime.strftime(clock_format)
7500d90b 174
606def7e
BR
175 # Pull extended retweet text
176 try:
18df6e7f
O
177 text = 'RT @' + t['retweeted_status']['user']['screen_name'] + ': ' +\
178 t['retweeted_status']['text']
606def7e
BR
179 except:
180 pass
181
18df6e7f 182 # Unescape HTML character
606def7e
BR
183 text = unescape(text)
184
7500d90b
VNM
185 # Get expanded url
186 try:
187 expanded_url = []
188 url = []
189 urls = t['entities']['urls']
190 for u in urls:
191 expanded_url.append(u['expanded_url'])
192 url.append(u['url'])
193 except:
194 expanded_url = None
195 url = None
196
197 # Get media
198 try:
199 media_url = []
200 media = t['entities']['media']
201 for m in media:
202 media_url.append(m['media_url'])
203 except:
204 media_url = None
205
206 # Filter and ignore
207 screen_name = '@' + screen_name
e3927852
O
208 fil = list(set((fil or []) + c['ONLY_LIST']))
209 ig = list(set((ig or []) + c['IGNORE_LIST']))
7500d90b
VNM
210 if fil and screen_name not in fil:
211 return
212 if ig and screen_name in ig:
213 return
214
215 # Get rainbow id
99b52f5f
O
216 if tid not in c['tweet_dict']:
217 c['tweet_dict'].append(tid)
218 rid = len(c['tweet_dict']) - 1
219 else:
220 rid = c['tweet_dict'].index(tid)
7500d90b
VNM
221
222 # Format info
8c7ae594 223 name = cycle_color(name)
d6cc4c67 224 nick = color_func(c['TWEET']['nick'])(screen_name)
0d9977c7
O
225 clock = clock
226 id = str(rid)
8c7ae594 227 fav = ''
7500d90b 228 if favorited:
8c7ae594
O
229 fav = color_func(c['TWEET']['favorited'])(u'\u2605')
230
7500d90b
VNM
231 tweet = text.split()
232 # Replace url
233 if expanded_url:
13e6b275 234 for index in xrange(len(expanded_url)):
c3bab4ef 235 tweet = lmap(
8141aca6 236 lambda x: expanded_url[index]
237 if x == url[index]
238 else x,
7500d90b
VNM
239 tweet)
240 # Highlight RT
c3bab4ef 241 tweet = lmap(
8141aca6 242 lambda x: color_func(c['TWEET']['rt'])(x)
243 if x == 'RT'
244 else x,
c075e6dc 245 tweet)
7500d90b 246 # Highlight screen_name
c3bab4ef 247 tweet = lmap(lambda x: cycle_color(x) if x[0] == '@' else x, tweet)
7500d90b 248 # Highlight link
c3bab4ef 249 tweet = lmap(
8141aca6 250 lambda x: color_func(c['TWEET']['link'])(x)
251 if x[0:4] == 'http'
252 else x,
c075e6dc 253 tweet)
4c025026 254 # Highlight hashtag
255 tweet = lmap(
8141aca6 256 lambda x: color_func(c['TWEET']['hashtag'])(x)
257 if x.startswith('#')
258 else x,
4c025026 259 tweet)
59262e95 260 # Highlight keyword
7500d90b 261 tweet = ' '.join(tweet)
59262e95 262 if keyword:
a8c5fce4 263 roj = re.search(keyword, tweet, re.IGNORECASE)
59262e95
O
264 if roj:
265 occur = roj.group()
266 ary = tweet.split(occur)
b13c6a0d 267 delimiter = color_func(c['TWEET']['keyword'])(occur)
268 tweet = delimiter.join(ary)
7500d90b 269
8c7ae594 270 # Load config formater
318cdd67 271 formater = ''
8c7ae594
O
272 try:
273 formater = c['FORMAT']['TWEET']['DISPLAY']
7c437a0f
O
274 formater = name.join(formater.split('#name'))
275 formater = nick.join(formater.split('#nick'))
276 formater = fav.join(formater.split('#fav'))
277 formater = tweet.join(formater.split('#tweet'))
0d9977c7 278 # Change clock word
03c0d30b 279 word = [wo for wo in formater.split() if '#clock' in wo][0]
8141aca6 280 delimiter = color_func(c['TWEET']['clock'])(
281 clock.join(word.split('#clock')))
0d9977c7
O
282 formater = delimiter.join(formater.split(word))
283 # Change id word
03c0d30b 284 word = [wo for wo in formater.split() if '#id' in wo][0]
0d9977c7
O
285 delimiter = color_func(c['TWEET']['id'])(id.join(word.split('#id')))
286 formater = delimiter.join(formater.split(word))
318cdd67 287 # Change retweet count word
03c0d30b 288 word = [wo for wo in formater.split() if '#rt_count' in wo][0]
318cdd67
O
289 delimiter = color_func(c['TWEET']['retweet_count'])(
290 str(retweet_count).join(word.split('#rt_count')))
291 formater = delimiter.join(formater.split(word))
292 # Change favorites count word
03c0d30b 293 word = [wo for wo in formater.split() if '#fa_count' in wo][0]
318cdd67
O
294 delimiter = color_func(c['TWEET']['favorite_count'])(
295 str(favorite_count).join(word.split('#fa_count')))
296 formater = delimiter.join(formater.split(word))
8c7ae594 297 except:
318cdd67 298 pass
7500d90b 299
8c7ae594
O
300 # Draw
301 printNicely(formater)
7500d90b
VNM
302
303 # Display Image
fe9bb33b 304 if c['IMAGE_ON_TERM'] and media_url:
7500d90b 305 for mu in media_url:
17bc529d 306 try:
307 response = requests.get(mu)
77f1d210 308 image_to_display(BytesIO(response.content))
309 except Exception:
17bc529d 310 printNicely(red('Sorry, image link is broken'))
7500d90b
VNM
311
312
67c663f8
O
313def print_threads(d):
314 """
315 Print threads of messages
316 """
317 id = 1
318 rel = {}
319 for partner in d:
320 messages = d[partner]
321 count = len(messages)
322 screen_name = '@' + partner[0]
323 name = partner[1]
324 screen_name = color_func(c['MESSAGE']['partner'])(screen_name)
325 name = cycle_color(name)
03c0d30b 326 thread_id = color_func(c['MESSAGE']['id'])('thread_id:' + str(id))
327 line = ' ' * 2 + name + ' ' + screen_name + \
67c663f8
O
328 ' (' + str(count) + ' message) ' + thread_id
329 printNicely(line)
330 rel[id] = partner
331 id += 1
332 dg['thread'] = d
333 return rel
334
335
336def print_thread(partner, me_nick, me_name):
337 """
338 Print a thread of messages
339 """
340 # Sort messages by time
341 messages = dg['thread'][partner]
03c0d30b 342 messages.sort(key=lambda x: parser.parse(x['created_at']))
343 # Use legacy display on non-ascii text message
344 text_ary = [m['text'] for m in messages]
345 not_ascii_text_ary = [t for t in text_ary if not is_ascii(t)]
346 if not_ascii_text_ary:
347 for m in messages:
348 print_message(m)
349 printNicely('')
350 return
351 # Print the first line
352 dg['frame_margin'] = margin = 2
353 partner_nick = partner[0]
354 partner_name = partner[1]
355 left_size = len(partner_nick) + len(partner_name) + 2
356 right_size = len(me_nick) + len(me_name) + 2
357 partner_nick = color_func(c['MESSAGE']['partner'])('@' + partner_nick)
358 partner_name = cycle_color(partner_name)
67c663f8
O
359 me_screen_name = color_func(c['MESSAGE']['me'])('@' + me_nick)
360 me_name = cycle_color(me_name)
03c0d30b 361 left = ' ' * margin + partner_name + ' ' + partner_nick
67c663f8
O
362 right = me_name + ' ' + me_screen_name + ' ' * margin
363 h, w = os.popen('stty size', 'r').read().split()
364 w = int(w)
03c0d30b 365 line = '{}{}{}'.format(
366 left, ' ' * (w - left_size - right_size - 2 * margin), right)
67c663f8
O
367 printNicely('')
368 printNicely(line)
369 printNicely('')
67c663f8
O
370 # Print messages
371 for m in messages:
372 if m['sender_screen_name'] == me_nick:
373 print_right_message(m)
374 elif m['recipient_screen_name'] == me_nick:
375 print_left_message(m)
376
377
378def print_right_message(m):
379 """
380 Print a message on the right of screen
381 """
382 h, w = os.popen('stty size', 'r').read().split()
383 w = int(w)
03c0d30b 384 frame_width = w // 3 - dg['frame_margin']
385 step = frame_width - 2 * dg['frame_margin']
386 slicing = [m['text'][i:i + step] for i in range(0, len(m['text']), step)]
387 spaces = w - frame_width - dg['frame_margin']
67c663f8 388 dotline = ' ' * spaces + '-' * frame_width
03c0d30b 389 dotline = color_func(c['MESSAGE']['me_frame'])(dotline)
223d2e05 390 # Draw the frame
67c663f8
O
391 printNicely(dotline)
392 for line in slicing:
393 fill = step - len(line)
394 screen_line = ' ' * spaces + '| ' + line + ' ' * fill + ' '
395 if slicing[-1] == line:
396 screen_line = screen_line + ' >'
397 else:
398 screen_line = screen_line + '|'
03c0d30b 399 screen_line = color_func(c['MESSAGE']['me_frame'])(screen_line)
67c663f8
O
400 printNicely(screen_line)
401 printNicely(dotline)
03c0d30b 402 # Format clock
223d2e05
O
403 date = parser.parse(m['created_at'])
404 date = arrow.get(date).to('local').datetime
405 clock_format = '%Y/%m/%d %H:%M:%S'
406 try:
407 clock_format = c['FORMAT']['MESSAGE']['CLOCK_FORMAT']
408 except:
409 pass
410 clock = date.strftime(clock_format)
03c0d30b 411 # Format id
223d2e05
O
412 if m['id'] not in c['message_dict']:
413 c['message_dict'].append(m['id'])
414 rid = len(c['message_dict']) - 1
415 else:
416 rid = c['message_dict'].index(m['id'])
03c0d30b 417 id = str(rid)
418 # Print meta
419 formater = ''
420 try:
421 virtual_meta = formater = c['THREAD_META_RIGHT']
422 virtual_meta = clock.join(virtual_meta.split('#clock'))
423 virtual_meta = id.join(virtual_meta.split('#id'))
424 # Change clock word
425 word = [wo for wo in formater.split() if '#clock' in wo][0]
426 delimiter = color_func(c['MESSAGE']['clock'])(
427 clock.join(word.split('#clock')))
428 formater = delimiter.join(formater.split(word))
429 # Change id word
430 word = [wo for wo in formater.split() if '#id' in wo][0]
431 delimiter = color_func(c['MESSAGE']['id'])(id.join(word.split('#id')))
432 formater = delimiter.join(formater.split(word))
433 except Exception:
434 printNicely(red('Wrong format in config.'))
435 return
436 meta = formater
437 line = ' ' * (w - len(virtual_meta) - dg['frame_margin']) + meta
223d2e05 438 printNicely(line)
67c663f8
O
439
440
441def print_left_message(m):
442 """
443 Print a message on the left of screen
444 """
445 h, w = os.popen('stty size', 'r').read().split()
446 w = int(w)
03c0d30b 447 frame_width = w // 3 - dg['frame_margin']
448 step = frame_width - 2 * dg['frame_margin']
449 slicing = [m['text'][i:i + step] for i in range(0, len(m['text']), step)]
450 spaces = dg['frame_margin']
67c663f8 451 dotline = ' ' * spaces + '-' * frame_width
03c0d30b 452 dotline = color_func(c['MESSAGE']['partner_frame'])(dotline)
223d2e05 453 # Draw the frame
67c663f8
O
454 printNicely(dotline)
455 for line in slicing:
456 fill = step - len(line)
457 screen_line = ' ' + line + ' ' * fill + ' |'
458 if slicing[-1] == line:
03c0d30b 459 screen_line = ' ' * (spaces - 1) + '< ' + screen_line
67c663f8
O
460 else:
461 screen_line = ' ' * spaces + '|' + screen_line
03c0d30b 462 screen_line = color_func(c['MESSAGE']['partner_frame'])(screen_line)
67c663f8
O
463 printNicely(screen_line)
464 printNicely(dotline)
03c0d30b 465 # Format clock
223d2e05
O
466 date = parser.parse(m['created_at'])
467 date = arrow.get(date).to('local').datetime
468 clock_format = '%Y/%m/%d %H:%M:%S'
469 try:
470 clock_format = c['FORMAT']['MESSAGE']['CLOCK_FORMAT']
471 except:
472 pass
473 clock = date.strftime(clock_format)
03c0d30b 474 # Format id
223d2e05
O
475 if m['id'] not in c['message_dict']:
476 c['message_dict'].append(m['id'])
477 rid = len(c['message_dict']) - 1
478 else:
479 rid = c['message_dict'].index(m['id'])
03c0d30b 480 id = str(rid)
481 # Print meta
482 formater = ''
483 try:
484 virtual_meta = formater = c['THREAD_META_LEFT']
485 virtual_meta = clock.join(virtual_meta.split('#clock'))
486 virtual_meta = id.join(virtual_meta.split('#id'))
487 # Change clock word
488 word = [wo for wo in formater.split() if '#clock' in wo][0]
489 delimiter = color_func(c['MESSAGE']['clock'])(
490 clock.join(word.split('#clock')))
491 formater = delimiter.join(formater.split(word))
492 # Change id word
493 word = [wo for wo in formater.split() if '#id' in wo][0]
494 delimiter = color_func(c['MESSAGE']['id'])(id.join(word.split('#id')))
495 formater = delimiter.join(formater.split(word))
496 except Exception:
497 printNicely(red('Wrong format in config.'))
498 return
499 meta = formater
500 line = ' ' * dg['frame_margin'] + meta
223d2e05 501 printNicely(line)
67c663f8
O
502
503
4dc385b5 504def print_message(m):
7500d90b
VNM
505 """
506 Print direct message
507 """
c37c04a9 508 # Retrieve message
7500d90b
VNM
509 sender_screen_name = '@' + m['sender_screen_name']
510 sender_name = m['sender']['name']
b2cde062 511 text = unescape(m['text'])
7500d90b
VNM
512 recipient_screen_name = '@' + m['recipient_screen_name']
513 recipient_name = m['recipient']['name']
514 mid = m['id']
515 date = parser.parse(m['created_at'])
8b3456f9 516 date = arrow.get(date).to('local').datetime
8c7ae594
O
517 clock_format = '%Y/%m/%d %H:%M:%S'
518 try:
519 clock_format = c['FORMAT']['MESSAGE']['CLOCK_FORMAT']
520 except:
521 pass
522 clock = date.strftime(clock_format)
7500d90b
VNM
523
524 # Get rainbow id
99b52f5f
O
525 if mid not in c['message_dict']:
526 c['message_dict'].append(mid)
527 rid = len(c['message_dict']) - 1
528 else:
529 rid = c['message_dict'].index(mid)
7500d90b 530
6fa09c14 531 # Draw
8c7ae594
O
532 sender_name = cycle_color(sender_name)
533 sender_nick = color_func(c['MESSAGE']['sender'])(sender_screen_name)
534 recipient_name = cycle_color(recipient_name)
0d9977c7
O
535 recipient_nick = color_func(
536 c['MESSAGE']['recipient'])(recipient_screen_name)
8c7ae594 537 to = color_func(c['MESSAGE']['to'])('>>>')
0d9977c7
O
538 clock = clock
539 id = str(rid)
8c7ae594 540
c3bab4ef 541 text = ''.join(lmap(lambda x: x + ' ' if x == '\n' else x, text))
7500d90b 542
8c7ae594
O
543 # Load config formater
544 try:
545 formater = c['FORMAT']['MESSAGE']['DISPLAY']
0d9977c7
O
546 formater = sender_name.join(formater.split("#sender_name"))
547 formater = sender_nick.join(formater.split("#sender_nick"))
548 formater = to.join(formater.split("#to"))
549 formater = recipient_name.join(formater.split("#recipient_name"))
550 formater = recipient_nick.join(formater.split("#recipient_nick"))
551 formater = text.join(formater.split("#message"))
552 # Change clock word
03c0d30b 553 word = [wo for wo in formater.split() if '#clock' in wo][0]
8141aca6 554 delimiter = color_func(c['MESSAGE']['clock'])(
555 clock.join(word.split('#clock')))
0d9977c7
O
556 formater = delimiter.join(formater.split(word))
557 # Change id word
03c0d30b 558 word = [wo for wo in formater.split() if '#id' in wo][0]
0d9977c7
O
559 delimiter = color_func(c['MESSAGE']['id'])(id.join(word.split('#id')))
560 formater = delimiter.join(formater.split(word))
8c7ae594
O
561 except:
562 printNicely(red('Wrong format in config.'))
563 return
564
565 # Draw
566 printNicely(formater)
7500d90b
VNM
567
568
fe9bb33b 569def show_profile(u):
7500d90b
VNM
570 """
571 Show a profile
572 """
573 # Retrieve info
574 name = u['name']
575 screen_name = u['screen_name']
576 description = u['description']
577 profile_image_url = u['profile_image_url']
578 location = u['location']
579 url = u['url']
580 created_at = u['created_at']
581 statuses_count = u['statuses_count']
582 friends_count = u['friends_count']
583 followers_count = u['followers_count']
6fa09c14 584
7500d90b 585 # Create content
c075e6dc
O
586 statuses_count = color_func(
587 c['PROFILE']['statuses_count'])(
588 str(statuses_count) +
589 ' tweets')
590 friends_count = color_func(
591 c['PROFILE']['friends_count'])(
592 str(friends_count) +
593 ' following')
594 followers_count = color_func(
595 c['PROFILE']['followers_count'])(
596 str(followers_count) +
597 ' followers')
7500d90b 598 count = statuses_count + ' ' + friends_count + ' ' + followers_count
c075e6dc
O
599 user = cycle_color(
600 name) + color_func(c['PROFILE']['nick'])(' @' + screen_name + ' : ') + count
601 profile_image_raw_url = 'Profile photo: ' + \
602 color_func(c['PROFILE']['profile_image_url'])(profile_image_url)
7500d90b 603 description = ''.join(
c3bab4ef 604 lmap(lambda x: x + ' ' * 4 if x == '\n' else x, description))
632c6fa5
O
605 description = color_func(c['PROFILE']['description'])(description)
606 location = 'Location : ' + color_func(c['PROFILE']['location'])(location)
607 url = 'URL : ' + (color_func(c['PROFILE']['url'])(url) if url else '')
7500d90b 608 date = parser.parse(created_at)
8b3456f9 609 lang, encode = locale.getdefaultlocale()
610 clock = arrow.get(date).to('local').humanize(locale=lang)
632c6fa5 611 clock = 'Join at ' + color_func(c['PROFILE']['clock'])(clock)
6fa09c14 612
7500d90b
VNM
613 # Format
614 line1 = u"{u:>{uw}}".format(
615 u=user,
616 uw=len(user) + 2,
617 )
618 line2 = u"{p:>{pw}}".format(
619 p=profile_image_raw_url,
620 pw=len(profile_image_raw_url) + 4,
621 )
622 line3 = u"{d:>{dw}}".format(
623 d=description,
624 dw=len(description) + 4,
625 )
626 line4 = u"{l:>{lw}}".format(
627 l=location,
628 lw=len(location) + 4,
629 )
630 line5 = u"{u:>{uw}}".format(
631 u=url,
632 uw=len(url) + 4,
633 )
634 line6 = u"{c:>{cw}}".format(
635 c=clock,
636 cw=len(clock) + 4,
637 )
6fa09c14 638
7500d90b
VNM
639 # Display
640 printNicely('')
641 printNicely(line1)
fe9bb33b 642 if c['IMAGE_ON_TERM']:
17bc529d 643 try:
644 response = requests.get(profile_image_url)
c37c04a9 645 image_to_display(BytesIO(response.content))
17bc529d 646 except:
647 pass
7500d90b
VNM
648 else:
649 printNicely(line2)
650 for line in [line3, line4, line5, line6]:
651 printNicely(line)
652 printNicely('')
653
654
655def print_trends(trends):
656 """
657 Display topics
658 """
632c6fa5 659 for topic in trends[:c['TREND_MAX']]:
7500d90b
VNM
660 name = topic['name']
661 url = topic['url']
8394e34b 662 line = cycle_color(name) + ': ' + color_func(c['TREND']['url'])(url)
7500d90b
VNM
663 printNicely(line)
664 printNicely('')
2d341029
O
665
666
667def print_list(group):
668 """
669 Display a list
670 """
99b52f5f 671 for grp in group:
2d341029 672 # Format
99b52f5f 673 name = grp['full_name']
2d341029 674 name = color_func(c['GROUP']['name'])(name + ' : ')
99b52f5f 675 member = str(grp['member_count'])
422dd385 676 member = color_func(c['GROUP']['member'])(member + ' member')
99b52f5f 677 subscriber = str(grp['subscriber_count'])
422dd385
O
678 subscriber = color_func(
679 c['GROUP']['subscriber'])(
680 subscriber +
681 ' subscriber')
99b52f5f 682 description = grp['description'].strip()
2d341029 683 description = color_func(c['GROUP']['description'])(description)
99b52f5f 684 mode = grp['mode']
422dd385 685 mode = color_func(c['GROUP']['mode'])('Type: ' + mode)
99b52f5f 686 created_at = grp['created_at']
2d341029 687 date = parser.parse(created_at)
8b3456f9 688 lang, encode = locale.getdefaultlocale()
689 clock = arrow.get(date).to('local').humanize(locale=lang)
2d341029
O
690 clock = 'Created at ' + color_func(c['GROUP']['clock'])(clock)
691
2d341029 692 # Create lines
422dd385
O
693 line1 = ' ' * 2 + name + member + ' ' + subscriber
694 line2 = ' ' * 4 + description
695 line3 = ' ' * 4 + mode
696 line4 = ' ' * 4 + clock
2d341029
O
697
698 # Display
699 printNicely('')
700 printNicely(line1)
701 printNicely(line2)
702 printNicely(line3)
703 printNicely(line4)
704
705 printNicely('')
59262e95
O
706
707
8141aca6 708def show_calendar(month, date, rel):
709 """
710 Show the calendar in rainbow mode
711 """
712 month = random_rainbow(month)
713 date = ' '.join([cycle_color(i) for i in date.split(' ')])
714 today = str(int(os.popen('date +\'%d\'').read().strip()))
715 # Display
716 printNicely(month)
717 printNicely(date)
718 for line in rel:
719 ary = line.split(' ')
720 ary = lmap(
721 lambda x: color_func(c['CAL']['today'])(x)
722 if x == today
723 else color_func(c['CAL']['days'])(x),
724 ary)
725 printNicely(' '.join(ary))
726
727
b7c9c570 728def format_quote(tweet):
729 """
730 Quoting format
731 """
732 # Retrieve info
733 screen_name = '@' + tweet['user']['screen_name']
734 text = tweet['text']
735 # Validate quote format
736 if '#owner' not in c['QUOTE_FORMAT']:
737 printNicely(light_magenta('Quote should contains #owner'))
738 return False
739 if '#comment' not in c['QUOTE_FORMAT']:
740 printNicely(light_magenta('Quote format should have #comment'))
741 return False
742 # Build formater
743 formater = ''
744 try:
745 formater = c['QUOTE_FORMAT']
746 formater = screen_name.join(formater.split('#owner'))
747 formater = text.join(formater.split('#tweet'))
748 formater = u2str(formater)
749 except:
750 pass
751 # Highlight like a tweet
4dc385b5
O
752 notice = formater.split()
753 notice = lmap(
b7c9c570 754 lambda x: light_green(x)
755 if x == '#comment'
756 else x,
4dc385b5
O
757 notice)
758 notice = lmap(
b7c9c570 759 lambda x: color_func(c['TWEET']['rt'])(x)
760 if x == 'RT'
761 else x,
4dc385b5
O
762 notice)
763 notice = lmap(lambda x: cycle_color(x) if x[0] == '@' else x, notice)
764 notice = lmap(
b7c9c570 765 lambda x: color_func(c['TWEET']['link'])(x)
766 if x[0:4] == 'http'
767 else x,
4dc385b5
O
768 notice)
769 notice = lmap(
b7c9c570 770 lambda x: color_func(c['TWEET']['hashtag'])(x)
771 if x.startswith('#')
772 else x,
4dc385b5
O
773 notice)
774 notice = ' '.join(notice)
b7c9c570 775 # Notice
4dc385b5 776 notice = light_magenta('Quoting: "') + notice + light_magenta('"')
b7c9c570 777 printNicely(notice)
778 return formater
779
780
59262e95 781# Start the color cycle
b2cde062 782start_cycle()