Add `DISABLE_EXTENDED_TWEETS` config option to disable extended tweets support
[rainbowstream.git] / rainbowstream / draw.py
CommitLineData
e9f5200b 1import random
bcb5518e 2import textwrap
e9f5200b 3import itertools
7500d90b 4import requests
8b3456f9 5import locale
6import arrow
59262e95 7import re
67c663f8 8import os
7500d90b 9
a65129d4 10from io import BytesIO
2da50cc4 11from twitter.util import printNicely
e9f5200b
VNM
12from functools import wraps
13from pyfiglet import figlet_format
7500d90b 14from dateutil import parser
2da50cc4 15from .c_image import *
7500d90b
VNM
16from .colors import *
17from .config import *
c3bab4ef 18from .py3patch import *
841260fe 19from .emoji import *
c3bab4ef 20
99b52f5f
O
21# Draw global variables
22dg = {}
1fdd6a5c 23
422dd385 24
e9f5200b
VNM
25def init_cycle():
26 """
27 Init the cycle
28 """
29 colors_shuffle = [globals()[i.encode('utf8')]
fa6e062d
O
30 if not str(i).isdigit()
31 else term_color(int(i))
422dd385 32 for i in c['CYCLE_COLOR']]
5f22104f 33 return itertools.cycle(colors_shuffle)
1fdd6a5c 34
e9f5200b 35
59262e95 36def start_cycle():
2359c276
VNM
37 """
38 Notify from rainbow
39 """
99b52f5f
O
40 dg['cyc'] = init_cycle()
41 dg['cache'] = {}
e5455a30 42 dg['humanize_unsupported'] = False
2359c276
VNM
43
44
e9f5200b
VNM
45def order_rainbow(s):
46 """
47 Print a string with ordered color with each character
48 """
5f22104f 49 colors_shuffle = [globals()[i.encode('utf8')]
fa6e062d
O
50 if not str(i).isdigit()
51 else term_color(int(i))
422dd385 52 for i in c['CYCLE_COLOR']]
5f22104f 53 colored = [colors_shuffle[i % 7](s[i]) for i in xrange(len(s))]
c3bab4ef 54 return ''.join(colored)
e9f5200b
VNM
55
56
57def random_rainbow(s):
58 """
59 Print a string with random color with each character
60 """
5f22104f 61 colors_shuffle = [globals()[i.encode('utf8')]
fa6e062d
O
62 if not str(i).isdigit()
63 else term_color(int(i))
422dd385 64 for i in c['CYCLE_COLOR']]
5f22104f 65 colored = [random.choice(colors_shuffle)(i) for i in s]
c3bab4ef 66 return ''.join(colored)
e9f5200b
VNM
67
68
69def Memoize(func):
70 """
71 Memoize decorator
72 """
e9f5200b
VNM
73 @wraps(func)
74 def wrapper(*args):
99b52f5f
O
75 if args not in dg['cache']:
76 dg['cache'][args] = func(*args)
77 return dg['cache'][args]
e9f5200b
VNM
78 return wrapper
79
80
81@Memoize
82def cycle_color(s):
83 """
84 Cycle the colors_shuffle
85 """
99b52f5f 86 return next(dg['cyc'])(s)
e9f5200b
VNM
87
88
89def ascii_art(text):
90 """
91 Draw the Ascii Art
92 """
93 fi = figlet_format(text, font='doom')
94 print('\n'.join(
99b52f5f 95 [next(dg['cyc'])(i) for i in fi.split('\n')]
e9f5200b
VNM
96 ))
97
98
92685d21 99def check_config():
ceec8593 100 """
101 Check if config is changed
102 """
103 changed = False
104 data = get_all_config()
105 for key in c:
106 if key in data:
107 if data[key] != c[key]:
108 changed = True
109 if changed:
110 reload_config()
111
112
113def validate_theme(theme):
114 """
115 Validate a theme exists or not
116 """
117 # Theme changed check
118 files = os.listdir(os.path.dirname(__file__) + '/colorset')
119 themes = [f.split('.')[0] for f in files if f.split('.')[-1] == 'json']
120 return theme in themes
92685d21 121
122
99b52f5f 123def reload_theme(value, prev):
4cf86720
VNM
124 """
125 Check current theme and update if necessary
126 """
99b52f5f 127 if value != prev:
1f2f6159 128 config = os.path.dirname(
99b52f5f 129 __file__) + '/colorset/' + value + '.json'
4cf86720
VNM
130 # Load new config
131 data = load_config(config)
a5301bc0
VNM
132 if data:
133 for d in data:
134 c[d] = data[d]
99b52f5f 135 # Restart color cycle and update config
ceec8593 136 start_cycle()
99b52f5f
O
137 set_config('THEME', value)
138 return value
139 return prev
7500d90b 140
fe08f905
VNM
141
142def color_func(func_name):
143 """
144 Call color function base on name
145 """
fa6e062d
O
146 if str(func_name).isdigit():
147 return term_color(int(func_name))
c3bab4ef 148 return globals()[func_name]
fe08f905
VNM
149
150
e5455a30
O
151def fallback_humanize(date, fallback_format=None, use_fallback=False):
152 """
153 Format date with arrow and a fallback format
154 """
155 # Convert to local timezone
156 date = arrow.get(date).to('local')
157 # Set default fallback format
158 if not fallback_format:
159 fallback_format = '%Y/%m/%d %H:%M:%S'
160 # Determine using fallback format or not by a variable
161 if use_fallback:
162 return date.datetime.strftime(fallback_format)
163 try:
164 # Use Arrow's humanize function
165 lang, encode = locale.getdefaultlocale()
166 clock = date.humanize(locale=lang)
167 except:
168 # Notice at the 1st time only
169 if not dg['humanize_unsupported']:
170 dg['humanize_unsupported'] = True
171 printNicely(
172 light_magenta('Humanized date display method does not support your $LC_ALL.'))
173 # Fallback when LC_ALL is not supported
174 clock = date.datetime.strftime(fallback_format)
175 return clock
176
177
14fe9885
MG
178def get_full_text(t):
179 """Handle RTs and extended tweets to always display all the available text"""
180
181 if t.get('retweeted_status'):
182 rt_status = t['retweeted_status']
183 if rt_status.get('extended_tweet'):
184 elem = rt_status['extended_tweet']
185 else:
186 elem = rt_status
187 rt_text = elem.get('full_text', elem.get('text'))
188 t['full_text'] = 'RT @' + rt_status['user']['screen_name'] + ': ' + rt_text
189 elif t.get('extended_tweet'):
190 t['full_text'] = t['extended_tweet']['full_text']
191
192 return t.get('full_text', t.get('text'))
193
194
99cd1fba 195def draw(t, keyword=None, humanize=True, noti=False, fil=[], ig=[]):
7500d90b
VNM
196 """
197 Draw the rainbow
198 """
99b52f5f 199 # Check config
92685d21 200 check_config()
c37c04a9 201
7500d90b
VNM
202 # Retrieve tweet
203 tid = t['id']
14fe9885
MG
204
205 text = get_full_text(t)
7500d90b
VNM
206 screen_name = t['user']['screen_name']
207 name = t['user']['name']
208 created_at = t['created_at']
209 favorited = t['favorited']
318cdd67
O
210 retweet_count = t['retweet_count']
211 favorite_count = t['favorite_count']
413857b5 212 client = t['source']
7500d90b 213 date = parser.parse(created_at)
e5455a30
O
214 try:
215 clock_format = c['FORMAT']['TWEET']['CLOCK_FORMAT']
216 except:
217 clock_format = '%Y/%m/%d %H:%M:%S'
218 clock = fallback_humanize(date, clock_format, not humanize)
7500d90b 219
606def7e
BR
220 # Pull extended retweet text
221 try:
38a6dc30
O
222 # Display as a notification
223 target = t['retweeted_status']['user']['screen_name']
224 if all([target == c['original_name'], not noti]):
225 # Add to evens for 'notification' command
226 t['event'] = 'retweet'
227 c['events'].append(t)
228 notify_retweet(t)
229 return
606def7e
BR
230 except:
231 pass
232
18df6e7f 233 # Unescape HTML character
606def7e
BR
234 text = unescape(text)
235
413857b5
O
236 # Get client name
237 try:
238 client = client.split('>')[-2].split('<')[0]
239 except:
240 client = None
241
7500d90b
VNM
242 # Get expanded url
243 try:
244 expanded_url = []
245 url = []
246 urls = t['entities']['urls']
247 for u in urls:
248 expanded_url.append(u['expanded_url'])
249 url.append(u['url'])
250 except:
251 expanded_url = None
252 url = None
253
254 # Get media
255 try:
256 media_url = []
257 media = t['entities']['media']
258 for m in media:
259 media_url.append(m['media_url'])
260 except:
261 media_url = None
262
263 # Filter and ignore
37cf396a 264 mytweet = screen_name == c['original_name']
7500d90b 265 screen_name = '@' + screen_name
e3927852
O
266 fil = list(set((fil or []) + c['ONLY_LIST']))
267 ig = list(set((ig or []) + c['IGNORE_LIST']))
7500d90b
VNM
268 if fil and screen_name not in fil:
269 return
270 if ig and screen_name in ig:
271 return
272
273 # Get rainbow id
99b52f5f
O
274 if tid not in c['tweet_dict']:
275 c['tweet_dict'].append(tid)
276 rid = len(c['tweet_dict']) - 1
277 else:
278 rid = c['tweet_dict'].index(tid)
7500d90b
VNM
279
280 # Format info
8c7ae594 281 name = cycle_color(name)
571ea706
O
282 if mytweet:
283 nick = color_func(c['TWEET']['mynick'])(screen_name)
284 else:
285 nick = color_func(c['TWEET']['nick'])(screen_name)
0d9977c7
O
286 clock = clock
287 id = str(rid)
8c7ae594 288 fav = ''
7500d90b 289 if favorited:
8c7ae594
O
290 fav = color_func(c['TWEET']['favorited'])(u'\u2605')
291
690a33b7
EO
292 tweet = text.split(' ')
293 tweet = [x for x in tweet if x != '']
7500d90b
VNM
294 # Replace url
295 if expanded_url:
13e6b275 296 for index in xrange(len(expanded_url)):
c3bab4ef 297 tweet = lmap(
8141aca6 298 lambda x: expanded_url[index]
299 if x == url[index]
300 else x,
7500d90b
VNM
301 tweet)
302 # Highlight RT
c3bab4ef 303 tweet = lmap(
8141aca6 304 lambda x: color_func(c['TWEET']['rt'])(x)
305 if x == 'RT'
306 else x,
c075e6dc 307 tweet)
7500d90b 308 # Highlight screen_name
690a33b7
EO
309 tweet = lmap(
310 lambda x: cycle_color(x) if x.lstrip().startswith('@') else x, tweet)
7500d90b 311 # Highlight link
c3bab4ef 312 tweet = lmap(
8141aca6 313 lambda x: color_func(c['TWEET']['link'])(x)
690a33b7 314 if x.lstrip().startswith('http')
8141aca6 315 else x,
c075e6dc 316 tweet)
4c025026 317 # Highlight hashtag
318 tweet = lmap(
8141aca6 319 lambda x: color_func(c['TWEET']['hashtag'])(x)
690a33b7 320 if x.lstrip().startswith('#')
8141aca6 321 else x,
4c025026 322 tweet)
37cf396a
O
323 # Highlight my tweet
324 if mytweet:
325 tweet = [color_func(c['TWEET']['mytweet'])(x)
326 for x in tweet
327 if not any([
328 x == 'RT',
690a33b7
EO
329 x.lstrip().startswith('http'),
330 x.lstrip().startswith('#')])
37cf396a 331 ]
59262e95 332 # Highlight keyword
7500d90b 333 tweet = ' '.join(tweet)
690a33b7 334 tweet = '\n '.join(tweet.split('\n'))
59262e95 335 if keyword:
a8c5fce4 336 roj = re.search(keyword, tweet, re.IGNORECASE)
59262e95
O
337 if roj:
338 occur = roj.group()
339 ary = tweet.split(occur)
b13c6a0d 340 delimiter = color_func(c['TWEET']['keyword'])(occur)
341 tweet = delimiter.join(ary)
7500d90b 342
8c7ae594 343 # Load config formater
318cdd67 344 formater = ''
8c7ae594
O
345 try:
346 formater = c['FORMAT']['TWEET']['DISPLAY']
7c437a0f
O
347 formater = name.join(formater.split('#name'))
348 formater = nick.join(formater.split('#nick'))
349 formater = fav.join(formater.split('#fav'))
350 formater = tweet.join(formater.split('#tweet'))
3b1912ee 351 formater = emojize(formater)
0d9977c7 352 # Change clock word
03c0d30b 353 word = [wo for wo in formater.split() if '#clock' in wo][0]
8141aca6 354 delimiter = color_func(c['TWEET']['clock'])(
355 clock.join(word.split('#clock')))
0d9977c7
O
356 formater = delimiter.join(formater.split(word))
357 # Change id word
03c0d30b 358 word = [wo for wo in formater.split() if '#id' in wo][0]
0d9977c7
O
359 delimiter = color_func(c['TWEET']['id'])(id.join(word.split('#id')))
360 formater = delimiter.join(formater.split(word))
318cdd67 361 # Change retweet count word
03c0d30b 362 word = [wo for wo in formater.split() if '#rt_count' in wo][0]
318cdd67
O
363 delimiter = color_func(c['TWEET']['retweet_count'])(
364 str(retweet_count).join(word.split('#rt_count')))
365 formater = delimiter.join(formater.split(word))
366 # Change favorites count word
03c0d30b 367 word = [wo for wo in formater.split() if '#fa_count' in wo][0]
318cdd67
O
368 delimiter = color_func(c['TWEET']['favorite_count'])(
369 str(favorite_count).join(word.split('#fa_count')))
370 formater = delimiter.join(formater.split(word))
3b1912ee
O
371 # Change client word
372 word = [wo for wo in formater.split() if '#client' in wo][0]
373 delimiter = color_func(c['TWEET']['client'])(
374 client.join(word.split('#client')))
375 formater = delimiter.join(formater.split(word))
8c7ae594 376 except:
318cdd67 377 pass
7500d90b 378
99cd1fba
O
379 # Add spaces in begining of line if this is inside a notification
380 if noti:
381 formater = '\n '.join(formater.split('\n'))
38a6dc30
O
382 # Reformat
383 if formater.startswith('\n'):
384 formater = formater[1:]
99cd1fba 385
8c7ae594
O
386 # Draw
387 printNicely(formater)
7500d90b
VNM
388
389 # Display Image
fe9bb33b 390 if c['IMAGE_ON_TERM'] and media_url:
7500d90b 391 for mu in media_url:
17bc529d 392 try:
393 response = requests.get(mu)
77f1d210 394 image_to_display(BytesIO(response.content))
395 except Exception:
17bc529d 396 printNicely(red('Sorry, image link is broken'))
7500d90b
VNM
397
398
67c663f8
O
399def print_threads(d):
400 """
401 Print threads of messages
402 """
403 id = 1
404 rel = {}
405 for partner in d:
406 messages = d[partner]
407 count = len(messages)
408 screen_name = '@' + partner[0]
409 name = partner[1]
410 screen_name = color_func(c['MESSAGE']['partner'])(screen_name)
411 name = cycle_color(name)
03c0d30b 412 thread_id = color_func(c['MESSAGE']['id'])('thread_id:' + str(id))
413 line = ' ' * 2 + name + ' ' + screen_name + \
67c663f8
O
414 ' (' + str(count) + ' message) ' + thread_id
415 printNicely(line)
416 rel[id] = partner
417 id += 1
418 dg['thread'] = d
419 return rel
420
421
422def print_thread(partner, me_nick, me_name):
423 """
424 Print a thread of messages
425 """
426 # Sort messages by time
427 messages = dg['thread'][partner]
03c0d30b 428 messages.sort(key=lambda x: parser.parse(x['created_at']))
429 # Use legacy display on non-ascii text message
bcb5518e 430 ms = [m['text'] for m in messages]
431 ums = [m for m in ms if not all(ord(c) < 128 for c in m)]
432 if ums:
03c0d30b 433 for m in messages:
434 print_message(m)
435 printNicely('')
436 return
437 # Print the first line
438 dg['frame_margin'] = margin = 2
439 partner_nick = partner[0]
440 partner_name = partner[1]
441 left_size = len(partner_nick) + len(partner_name) + 2
442 right_size = len(me_nick) + len(me_name) + 2
443 partner_nick = color_func(c['MESSAGE']['partner'])('@' + partner_nick)
444 partner_name = cycle_color(partner_name)
67c663f8
O
445 me_screen_name = color_func(c['MESSAGE']['me'])('@' + me_nick)
446 me_name = cycle_color(me_name)
03c0d30b 447 left = ' ' * margin + partner_name + ' ' + partner_nick
67c663f8
O
448 right = me_name + ' ' + me_screen_name + ' ' * margin
449 h, w = os.popen('stty size', 'r').read().split()
450 w = int(w)
03c0d30b 451 line = '{}{}{}'.format(
452 left, ' ' * (w - left_size - right_size - 2 * margin), right)
67c663f8
O
453 printNicely('')
454 printNicely(line)
455 printNicely('')
67c663f8
O
456 # Print messages
457 for m in messages:
458 if m['sender_screen_name'] == me_nick:
459 print_right_message(m)
460 elif m['recipient_screen_name'] == me_nick:
461 print_left_message(m)
462
463
464def print_right_message(m):
465 """
466 Print a message on the right of screen
467 """
468 h, w = os.popen('stty size', 'r').read().split()
469 w = int(w)
03c0d30b 470 frame_width = w // 3 - dg['frame_margin']
37cf396a 471 frame_width = max(c['THREAD_MIN_WIDTH'], frame_width)
03c0d30b 472 step = frame_width - 2 * dg['frame_margin']
bcb5518e 473 slicing = textwrap.wrap(m['text'], step)
03c0d30b 474 spaces = w - frame_width - dg['frame_margin']
67c663f8 475 dotline = ' ' * spaces + '-' * frame_width
03c0d30b 476 dotline = color_func(c['MESSAGE']['me_frame'])(dotline)
223d2e05 477 # Draw the frame
67c663f8
O
478 printNicely(dotline)
479 for line in slicing:
480 fill = step - len(line)
481 screen_line = ' ' * spaces + '| ' + line + ' ' * fill + ' '
482 if slicing[-1] == line:
483 screen_line = screen_line + ' >'
484 else:
485 screen_line = screen_line + '|'
03c0d30b 486 screen_line = color_func(c['MESSAGE']['me_frame'])(screen_line)
67c663f8
O
487 printNicely(screen_line)
488 printNicely(dotline)
03c0d30b 489 # Format clock
223d2e05
O
490 date = parser.parse(m['created_at'])
491 date = arrow.get(date).to('local').datetime
492 clock_format = '%Y/%m/%d %H:%M:%S'
493 try:
494 clock_format = c['FORMAT']['MESSAGE']['CLOCK_FORMAT']
495 except:
496 pass
497 clock = date.strftime(clock_format)
03c0d30b 498 # Format id
223d2e05
O
499 if m['id'] not in c['message_dict']:
500 c['message_dict'].append(m['id'])
501 rid = len(c['message_dict']) - 1
502 else:
503 rid = c['message_dict'].index(m['id'])
03c0d30b 504 id = str(rid)
505 # Print meta
506 formater = ''
507 try:
508 virtual_meta = formater = c['THREAD_META_RIGHT']
509 virtual_meta = clock.join(virtual_meta.split('#clock'))
510 virtual_meta = id.join(virtual_meta.split('#id'))
511 # Change clock word
512 word = [wo for wo in formater.split() if '#clock' in wo][0]
513 delimiter = color_func(c['MESSAGE']['clock'])(
514 clock.join(word.split('#clock')))
515 formater = delimiter.join(formater.split(word))
516 # Change id word
517 word = [wo for wo in formater.split() if '#id' in wo][0]
518 delimiter = color_func(c['MESSAGE']['id'])(id.join(word.split('#id')))
519 formater = delimiter.join(formater.split(word))
841260fe 520 formater = emojize(formater)
03c0d30b 521 except Exception:
522 printNicely(red('Wrong format in config.'))
523 return
524 meta = formater
525 line = ' ' * (w - len(virtual_meta) - dg['frame_margin']) + meta
223d2e05 526 printNicely(line)
67c663f8
O
527
528
529def print_left_message(m):
530 """
531 Print a message on the left of screen
532 """
533 h, w = os.popen('stty size', 'r').read().split()
534 w = int(w)
03c0d30b 535 frame_width = w // 3 - dg['frame_margin']
37cf396a 536 frame_width = max(c['THREAD_MIN_WIDTH'], frame_width)
03c0d30b 537 step = frame_width - 2 * dg['frame_margin']
bcb5518e 538 slicing = textwrap.wrap(m['text'], step)
03c0d30b 539 spaces = dg['frame_margin']
67c663f8 540 dotline = ' ' * spaces + '-' * frame_width
03c0d30b 541 dotline = color_func(c['MESSAGE']['partner_frame'])(dotline)
223d2e05 542 # Draw the frame
67c663f8
O
543 printNicely(dotline)
544 for line in slicing:
545 fill = step - len(line)
546 screen_line = ' ' + line + ' ' * fill + ' |'
547 if slicing[-1] == line:
03c0d30b 548 screen_line = ' ' * (spaces - 1) + '< ' + screen_line
67c663f8
O
549 else:
550 screen_line = ' ' * spaces + '|' + screen_line
03c0d30b 551 screen_line = color_func(c['MESSAGE']['partner_frame'])(screen_line)
67c663f8
O
552 printNicely(screen_line)
553 printNicely(dotline)
03c0d30b 554 # Format clock
223d2e05
O
555 date = parser.parse(m['created_at'])
556 date = arrow.get(date).to('local').datetime
557 clock_format = '%Y/%m/%d %H:%M:%S'
558 try:
559 clock_format = c['FORMAT']['MESSAGE']['CLOCK_FORMAT']
560 except:
561 pass
562 clock = date.strftime(clock_format)
03c0d30b 563 # Format id
223d2e05
O
564 if m['id'] not in c['message_dict']:
565 c['message_dict'].append(m['id'])
566 rid = len(c['message_dict']) - 1
567 else:
568 rid = c['message_dict'].index(m['id'])
03c0d30b 569 id = str(rid)
570 # Print meta
571 formater = ''
572 try:
573 virtual_meta = formater = c['THREAD_META_LEFT']
574 virtual_meta = clock.join(virtual_meta.split('#clock'))
575 virtual_meta = id.join(virtual_meta.split('#id'))
576 # Change clock word
577 word = [wo for wo in formater.split() if '#clock' in wo][0]
578 delimiter = color_func(c['MESSAGE']['clock'])(
579 clock.join(word.split('#clock')))
580 formater = delimiter.join(formater.split(word))
581 # Change id word
582 word = [wo for wo in formater.split() if '#id' in wo][0]
583 delimiter = color_func(c['MESSAGE']['id'])(id.join(word.split('#id')))
584 formater = delimiter.join(formater.split(word))
841260fe 585 formater = emojize(formater)
03c0d30b 586 except Exception:
587 printNicely(red('Wrong format in config.'))
588 return
589 meta = formater
590 line = ' ' * dg['frame_margin'] + meta
223d2e05 591 printNicely(line)
67c663f8
O
592
593
4dc385b5 594def print_message(m):
7500d90b
VNM
595 """
596 Print direct message
597 """
c37c04a9 598 # Retrieve message
7500d90b
VNM
599 sender_screen_name = '@' + m['sender_screen_name']
600 sender_name = m['sender']['name']
b2cde062 601 text = unescape(m['text'])
7500d90b
VNM
602 recipient_screen_name = '@' + m['recipient_screen_name']
603 recipient_name = m['recipient']['name']
604 mid = m['id']
605 date = parser.parse(m['created_at'])
8b3456f9 606 date = arrow.get(date).to('local').datetime
8c7ae594
O
607 clock_format = '%Y/%m/%d %H:%M:%S'
608 try:
609 clock_format = c['FORMAT']['MESSAGE']['CLOCK_FORMAT']
610 except:
611 pass
612 clock = date.strftime(clock_format)
7500d90b
VNM
613
614 # Get rainbow id
99b52f5f
O
615 if mid not in c['message_dict']:
616 c['message_dict'].append(mid)
617 rid = len(c['message_dict']) - 1
618 else:
619 rid = c['message_dict'].index(mid)
7500d90b 620
6fa09c14 621 # Draw
8c7ae594
O
622 sender_name = cycle_color(sender_name)
623 sender_nick = color_func(c['MESSAGE']['sender'])(sender_screen_name)
624 recipient_name = cycle_color(recipient_name)
0d9977c7
O
625 recipient_nick = color_func(
626 c['MESSAGE']['recipient'])(recipient_screen_name)
8c7ae594 627 to = color_func(c['MESSAGE']['to'])('>>>')
0d9977c7
O
628 clock = clock
629 id = str(rid)
8c7ae594 630
c3bab4ef 631 text = ''.join(lmap(lambda x: x + ' ' if x == '\n' else x, text))
7500d90b 632
8c7ae594
O
633 # Load config formater
634 try:
635 formater = c['FORMAT']['MESSAGE']['DISPLAY']
0d9977c7
O
636 formater = sender_name.join(formater.split("#sender_name"))
637 formater = sender_nick.join(formater.split("#sender_nick"))
638 formater = to.join(formater.split("#to"))
639 formater = recipient_name.join(formater.split("#recipient_name"))
640 formater = recipient_nick.join(formater.split("#recipient_nick"))
641 formater = text.join(formater.split("#message"))
642 # Change clock word
03c0d30b 643 word = [wo for wo in formater.split() if '#clock' in wo][0]
8141aca6 644 delimiter = color_func(c['MESSAGE']['clock'])(
645 clock.join(word.split('#clock')))
0d9977c7
O
646 formater = delimiter.join(formater.split(word))
647 # Change id word
03c0d30b 648 word = [wo for wo in formater.split() if '#id' in wo][0]
0d9977c7
O
649 delimiter = color_func(c['MESSAGE']['id'])(id.join(word.split('#id')))
650 formater = delimiter.join(formater.split(word))
841260fe 651 formater = emojize(formater)
8c7ae594
O
652 except:
653 printNicely(red('Wrong format in config.'))
654 return
655
656 # Draw
657 printNicely(formater)
7500d90b
VNM
658
659
38a6dc30
O
660def notify_retweet(t):
661 """
662 Notify a retweet
663 """
664 source = t['user']
665 created_at = t['created_at']
666 # Format
667 source_user = cycle_color(source['name']) + \
668 color_func(c['NOTIFICATION']['source_nick'])(
669 ' @' + source['screen_name'])
670 notify = color_func(c['NOTIFICATION']['notify'])(
671 'retweeted your tweet')
672 date = parser.parse(created_at)
e5455a30 673 clock = fallback_humanize(date)
38a6dc30
O
674 clock = color_func(c['NOTIFICATION']['clock'])(clock)
675 meta = c['NOTIFY_FORMAT']
676 meta = source_user.join(meta.split('#source_user'))
677 meta = notify.join(meta.split('#notify'))
678 meta = clock.join(meta.split('#clock'))
104619ce 679 meta = emojize(meta)
38a6dc30
O
680 # Output
681 printNicely('')
682 printNicely(meta)
683 draw(t=t['retweeted_status'], noti=True)
684
685
99cd1fba
O
686def notify_favorite(e):
687 """
688 Notify a favorite event
689 """
690 # Retrieve info
691 target = e['target']
692 if target['screen_name'] != c['original_name']:
693 return
694 source = e['source']
695 target_object = e['target_object']
696 created_at = e['created_at']
697 # Format
698 source_user = cycle_color(source['name']) + \
699 color_func(c['NOTIFICATION']['source_nick'])(
700 ' @' + source['screen_name'])
38a6dc30
O
701 notify = color_func(c['NOTIFICATION']['notify'])(
702 'favorited your tweet')
99cd1fba 703 date = parser.parse(created_at)
e5455a30 704 clock = fallback_humanize(date)
99cd1fba 705 clock = color_func(c['NOTIFICATION']['clock'])(clock)
38a6dc30
O
706 meta = c['NOTIFY_FORMAT']
707 meta = source_user.join(meta.split('#source_user'))
708 meta = notify.join(meta.split('#notify'))
709 meta = clock.join(meta.split('#clock'))
104619ce 710 meta = emojize(meta)
99cd1fba
O
711 # Output
712 printNicely('')
713 printNicely(meta)
714 draw(t=target_object, noti=True)
715
716
717def notify_unfavorite(e):
718 """
719 Notify a unfavorite event
720 """
721 # Retrieve info
722 target = e['target']
723 if target['screen_name'] != c['original_name']:
724 return
725 source = e['source']
726 target_object = e['target_object']
727 created_at = e['created_at']
728 # Format
729 source_user = cycle_color(source['name']) + \
730 color_func(c['NOTIFICATION']['source_nick'])(
731 ' @' + source['screen_name'])
732 notify = color_func(c['NOTIFICATION']['notify'])(
38a6dc30 733 'unfavorited your tweet')
99cd1fba 734 date = parser.parse(created_at)
e5455a30 735 clock = fallback_humanize(date)
99cd1fba 736 clock = color_func(c['NOTIFICATION']['clock'])(clock)
38a6dc30
O
737 meta = c['NOTIFY_FORMAT']
738 meta = source_user.join(meta.split('#source_user'))
739 meta = notify.join(meta.split('#notify'))
740 meta = clock.join(meta.split('#clock'))
104619ce 741 meta = emojize(meta)
99cd1fba
O
742 # Output
743 printNicely('')
744 printNicely(meta)
745 draw(t=target_object, noti=True)
746
747
748def notify_follow(e):
749 """
750 Notify a follow event
751 """
752 # Retrieve info
753 target = e['target']
754 if target['screen_name'] != c['original_name']:
755 return
756 source = e['source']
757 created_at = e['created_at']
758 # Format
759 source_user = cycle_color(source['name']) + \
760 color_func(c['NOTIFICATION']['source_nick'])(
761 ' @' + source['screen_name'])
38a6dc30
O
762 notify = color_func(c['NOTIFICATION']['notify'])(
763 'followed you')
99cd1fba 764 date = parser.parse(created_at)
e5455a30 765 clock = fallback_humanize(date)
99cd1fba 766 clock = color_func(c['NOTIFICATION']['clock'])(clock)
38a6dc30
O
767 meta = c['NOTIFY_FORMAT']
768 meta = source_user.join(meta.split('#source_user'))
769 meta = notify.join(meta.split('#notify'))
770 meta = clock.join(meta.split('#clock'))
104619ce 771 meta = emojize(meta)
99cd1fba
O
772 # Output
773 printNicely('')
774 printNicely(meta)
775
776
777def notify_list_member_added(e):
778 """
779 Notify a list_member_added event
780 """
781 # Retrieve info
782 target = e['target']
783 if target['screen_name'] != c['original_name']:
784 return
785 source = e['source']
786 target_object = [e['target_object']] # list of Twitter list
787 created_at = e['created_at']
788 # Format
789 source_user = cycle_color(source['name']) + \
790 color_func(c['NOTIFICATION']['source_nick'])(
791 ' @' + source['screen_name'])
38a6dc30
O
792 notify = color_func(c['NOTIFICATION']['notify'])(
793 'added you to a list')
99cd1fba 794 date = parser.parse(created_at)
e5455a30 795 clock = fallback_humanize(date)
99cd1fba 796 clock = color_func(c['NOTIFICATION']['clock'])(clock)
38a6dc30
O
797 meta = c['NOTIFY_FORMAT']
798 meta = source_user.join(meta.split('#source_user'))
799 meta = notify.join(meta.split('#notify'))
800 meta = clock.join(meta.split('#clock'))
104619ce 801 meta = emojize(meta)
99cd1fba
O
802 # Output
803 printNicely('')
804 printNicely(meta)
805 print_list(target_object, noti=True)
806
807
808def notify_list_member_removed(e):
809 """
810 Notify a list_member_removed event
811 """
812 # Retrieve info
813 target = e['target']
814 if target['screen_name'] != c['original_name']:
815 return
816 source = e['source']
817 target_object = [e['target_object']] # list of Twitter list
818 created_at = e['created_at']
819 # Format
820 source_user = cycle_color(source['name']) + \
821 color_func(c['NOTIFICATION']['source_nick'])(
822 ' @' + source['screen_name'])
823 notify = color_func(c['NOTIFICATION']['notify'])(
38a6dc30 824 'removed you from a list')
99cd1fba 825 date = parser.parse(created_at)
e5455a30 826 clock = fallback_humanize(date)
99cd1fba 827 clock = color_func(c['NOTIFICATION']['clock'])(clock)
38a6dc30
O
828 meta = c['NOTIFY_FORMAT']
829 meta = source_user.join(meta.split('#source_user'))
830 meta = notify.join(meta.split('#notify'))
831 meta = clock.join(meta.split('#clock'))
104619ce 832 meta = emojize(meta)
99cd1fba
O
833 # Output
834 printNicely('')
835 printNicely(meta)
836 print_list(target_object, noti=True)
837
838
839def notify_list_user_subscribed(e):
840 """
841 Notify a list_user_subscribed event
842 """
843 # Retrieve info
844 target = e['target']
845 if target['screen_name'] != c['original_name']:
846 return
847 source = e['source']
848 target_object = [e['target_object']] # list of Twitter list
849 created_at = e['created_at']
850 # Format
851 source_user = cycle_color(source['name']) + \
852 color_func(c['NOTIFICATION']['source_nick'])(
853 ' @' + source['screen_name'])
854 notify = color_func(c['NOTIFICATION']['notify'])(
38a6dc30 855 'subscribed to your list')
99cd1fba 856 date = parser.parse(created_at)
e5455a30 857 clock = fallback_humanize(date)
99cd1fba 858 clock = color_func(c['NOTIFICATION']['clock'])(clock)
38a6dc30
O
859 meta = c['NOTIFY_FORMAT']
860 meta = source_user.join(meta.split('#source_user'))
861 meta = notify.join(meta.split('#notify'))
862 meta = clock.join(meta.split('#clock'))
104619ce 863 meta = emojize(meta)
99cd1fba
O
864 # Output
865 printNicely('')
866 printNicely(meta)
867 print_list(target_object, noti=True)
868
869
870def notify_list_user_unsubscribed(e):
871 """
872 Notify a list_user_unsubscribed event
873 """
874 # Retrieve info
875 target = e['target']
876 if target['screen_name'] != c['original_name']:
877 return
878 source = e['source']
879 target_object = [e['target_object']] # list of Twitter list
880 created_at = e['created_at']
881 # Format
882 source_user = cycle_color(source['name']) + \
883 color_func(c['NOTIFICATION']['source_nick'])(
884 ' @' + source['screen_name'])
885 notify = color_func(c['NOTIFICATION']['notify'])(
38a6dc30 886 'unsubscribed from your list')
99cd1fba 887 date = parser.parse(created_at)
e5455a30 888 clock = fallback_humanize(date)
99cd1fba 889 clock = color_func(c['NOTIFICATION']['clock'])(clock)
38a6dc30
O
890 meta = c['NOTIFY_FORMAT']
891 meta = source_user.join(meta.split('#source_user'))
892 meta = notify.join(meta.split('#notify'))
893 meta = clock.join(meta.split('#clock'))
104619ce 894 meta = emojize(meta)
99cd1fba
O
895 # Output
896 printNicely('')
897 printNicely(meta)
898 print_list(target_object, noti=True)
899
900
901def print_event(e):
902 """
903 Notify an event
904 """
905 event_dict = {
38a6dc30 906 'retweet': notify_retweet,
99cd1fba
O
907 'favorite': notify_favorite,
908 'unfavorite': notify_unfavorite,
909 'follow': notify_follow,
910 'list_member_added': notify_list_member_added,
911 'list_member_removed': notify_list_member_removed,
912 'list_user_subscribed': notify_list_user_subscribed,
913 'list_user_unsubscribed': notify_list_user_unsubscribed,
914 }
69340648 915 event_dict.get(e['event'], lambda *args: None)(e)
99cd1fba
O
916
917
fe9bb33b 918def show_profile(u):
7500d90b
VNM
919 """
920 Show a profile
921 """
922 # Retrieve info
923 name = u['name']
924 screen_name = u['screen_name']
925 description = u['description']
926 profile_image_url = u['profile_image_url']
927 location = u['location']
928 url = u['url']
929 created_at = u['created_at']
930 statuses_count = u['statuses_count']
931 friends_count = u['friends_count']
932 followers_count = u['followers_count']
6fa09c14 933
7500d90b 934 # Create content
c075e6dc
O
935 statuses_count = color_func(
936 c['PROFILE']['statuses_count'])(
937 str(statuses_count) +
938 ' tweets')
939 friends_count = color_func(
940 c['PROFILE']['friends_count'])(
941 str(friends_count) +
942 ' following')
943 followers_count = color_func(
944 c['PROFILE']['followers_count'])(
945 str(followers_count) +
946 ' followers')
7500d90b 947 count = statuses_count + ' ' + friends_count + ' ' + followers_count
c075e6dc
O
948 user = cycle_color(
949 name) + color_func(c['PROFILE']['nick'])(' @' + screen_name + ' : ') + count
950 profile_image_raw_url = 'Profile photo: ' + \
951 color_func(c['PROFILE']['profile_image_url'])(profile_image_url)
7500d90b 952 description = ''.join(
c3bab4ef 953 lmap(lambda x: x + ' ' * 4 if x == '\n' else x, description))
632c6fa5
O
954 description = color_func(c['PROFILE']['description'])(description)
955 location = 'Location : ' + color_func(c['PROFILE']['location'])(location)
956 url = 'URL : ' + (color_func(c['PROFILE']['url'])(url) if url else '')
7500d90b 957 date = parser.parse(created_at)
e5455a30 958 clock = fallback_humanize(date)
144f62cd 959 clock = 'Joined ' + color_func(c['PROFILE']['clock'])(clock)
6fa09c14 960
7500d90b
VNM
961 # Format
962 line1 = u"{u:>{uw}}".format(
963 u=user,
964 uw=len(user) + 2,
965 )
966 line2 = u"{p:>{pw}}".format(
967 p=profile_image_raw_url,
968 pw=len(profile_image_raw_url) + 4,
969 )
970 line3 = u"{d:>{dw}}".format(
971 d=description,
972 dw=len(description) + 4,
973 )
974 line4 = u"{l:>{lw}}".format(
975 l=location,
976 lw=len(location) + 4,
977 )
978 line5 = u"{u:>{uw}}".format(
979 u=url,
980 uw=len(url) + 4,
981 )
982 line6 = u"{c:>{cw}}".format(
983 c=clock,
984 cw=len(clock) + 4,
985 )
6fa09c14 986
7500d90b
VNM
987 # Display
988 printNicely('')
989 printNicely(line1)
fe9bb33b 990 if c['IMAGE_ON_TERM']:
17bc529d 991 try:
992 response = requests.get(profile_image_url)
c37c04a9 993 image_to_display(BytesIO(response.content))
17bc529d 994 except:
995 pass
7500d90b
VNM
996 else:
997 printNicely(line2)
998 for line in [line3, line4, line5, line6]:
999 printNicely(line)
1000 printNicely('')
1001
1002
1003def print_trends(trends):
1004 """
1005 Display topics
1006 """
632c6fa5 1007 for topic in trends[:c['TREND_MAX']]:
7500d90b
VNM
1008 name = topic['name']
1009 url = topic['url']
8394e34b 1010 line = cycle_color(name) + ': ' + color_func(c['TREND']['url'])(url)
7500d90b
VNM
1011 printNicely(line)
1012 printNicely('')
2d341029
O
1013
1014
99cd1fba 1015def print_list(group, noti=False):
2d341029
O
1016 """
1017 Display a list
1018 """
99b52f5f 1019 for grp in group:
2d341029 1020 # Format
99b52f5f 1021 name = grp['full_name']
2d341029 1022 name = color_func(c['GROUP']['name'])(name + ' : ')
99b52f5f 1023 member = str(grp['member_count'])
422dd385 1024 member = color_func(c['GROUP']['member'])(member + ' member')
99b52f5f 1025 subscriber = str(grp['subscriber_count'])
422dd385
O
1026 subscriber = color_func(
1027 c['GROUP']['subscriber'])(
1028 subscriber +
1029 ' subscriber')
99b52f5f 1030 description = grp['description'].strip()
2d341029 1031 description = color_func(c['GROUP']['description'])(description)
99b52f5f 1032 mode = grp['mode']
422dd385 1033 mode = color_func(c['GROUP']['mode'])('Type: ' + mode)
99b52f5f 1034 created_at = grp['created_at']
2d341029 1035 date = parser.parse(created_at)
e5455a30 1036 clock = fallback_humanize(date)
2d341029
O
1037 clock = 'Created at ' + color_func(c['GROUP']['clock'])(clock)
1038
99cd1fba
O
1039 prefix = ' ' * 2
1040 # Add spaces in begining of line if this is inside a notification
1041 if noti:
1042 prefix = ' ' * 2 + prefix
2d341029 1043 # Create lines
99cd1fba
O
1044 line1 = prefix + name + member + ' ' + subscriber
1045 line2 = prefix + ' ' * 2 + description
1046 line3 = prefix + ' ' * 2 + mode
1047 line4 = prefix + ' ' * 2 + clock
2d341029
O
1048
1049 # Display
1050 printNicely('')
1051 printNicely(line1)
1052 printNicely(line2)
1053 printNicely(line3)
1054 printNicely(line4)
1055
38a6dc30
O
1056 if not noti:
1057 printNicely('')
59262e95
O
1058
1059
8141aca6 1060def show_calendar(month, date, rel):
1061 """
1062 Show the calendar in rainbow mode
1063 """
1064 month = random_rainbow(month)
1065 date = ' '.join([cycle_color(i) for i in date.split(' ')])
1066 today = str(int(os.popen('date +\'%d\'').read().strip()))
1067 # Display
1068 printNicely(month)
1069 printNicely(date)
1070 for line in rel:
1071 ary = line.split(' ')
1072 ary = lmap(
1073 lambda x: color_func(c['CAL']['today'])(x)
1074 if x == today
1075 else color_func(c['CAL']['days'])(x),
1076 ary)
1077 printNicely(' '.join(ary))
1078
1079
b7c9c570 1080def format_quote(tweet):
1081 """
1082 Quoting format
1083 """
1084 # Retrieve info
dd4ac7c7 1085 screen_name = tweet['user']['screen_name']
0e7f562d 1086 text = get_full_text(tweet)
13bcdaf1
L
1087 tid = str( tweet['id'] )
1088
b7c9c570 1089 # Validate quote format
1090 if '#owner' not in c['QUOTE_FORMAT']:
1091 printNicely(light_magenta('Quote should contains #owner'))
1092 return False
1093 if '#comment' not in c['QUOTE_FORMAT']:
1094 printNicely(light_magenta('Quote format should have #comment'))
1095 return False
13bcdaf1 1096
b7c9c570 1097 # Build formater
1098 formater = ''
1099 try:
1100 formater = c['QUOTE_FORMAT']
13bcdaf1
L
1101
1102 formater = formater.replace('#owner', screen_name)
1103 formater = formater.replace('#tweet', text)
1104 formater = formater.replace('#tid', tid)
1105
104619ce 1106 formater = emojize(formater)
b7c9c570 1107 except:
1108 pass
1109 # Highlight like a tweet
4dc385b5
O
1110 notice = formater.split()
1111 notice = lmap(
b7c9c570 1112 lambda x: light_green(x)
1113 if x == '#comment'
1114 else x,
4dc385b5
O
1115 notice)
1116 notice = lmap(
b7c9c570 1117 lambda x: color_func(c['TWEET']['rt'])(x)
1118 if x == 'RT'
1119 else x,
4dc385b5
O
1120 notice)
1121 notice = lmap(lambda x: cycle_color(x) if x[0] == '@' else x, notice)
1122 notice = lmap(
b7c9c570 1123 lambda x: color_func(c['TWEET']['link'])(x)
1124 if x[0:4] == 'http'
1125 else x,
4dc385b5
O
1126 notice)
1127 notice = lmap(
b7c9c570 1128 lambda x: color_func(c['TWEET']['hashtag'])(x)
1129 if x.startswith('#')
1130 else x,
4dc385b5
O
1131 notice)
1132 notice = ' '.join(notice)
b7c9c570 1133 # Notice
4dc385b5 1134 notice = light_magenta('Quoting: "') + notice + light_magenta('"')
b7c9c570 1135 printNicely(notice)
1136 return formater
1137
1138
59262e95 1139# Start the color cycle
b2cde062 1140start_cycle()