fix #46
[rainbowstream.git] / rainbowstream / rainbow.py
1 import os
2 import os.path
3 import sys
4 import signal
5 import argparse
6 import time
7 import threading
8 import requests
9 import webbrowser
10
11 from twitter.stream import TwitterStream, Timeout, HeartbeatTimeout, Hangup
12 from twitter.api import *
13 from twitter.oauth import OAuth, read_token_file
14 from twitter.oauth_dance import oauth_dance
15 from twitter.util import printNicely
16
17 from .draw import *
18 from .colors import *
19 from .config import *
20 from .consumer import *
21 from .interactive import *
22 from .c_image import *
23 from .py3patch import *
24
25 # Global values
26 g = {}
27
28 # Lock for streams
29 StreamLock = threading.Lock()
30
31
32 def parse_arguments():
33 """
34 Parse the arguments
35 """
36 parser = argparse.ArgumentParser(description=__doc__ or "")
37 parser.add_argument(
38 '-to',
39 '--timeout',
40 help='Timeout for the stream (seconds).')
41 parser.add_argument(
42 '-tt',
43 '--track-keywords',
44 help='Search the stream for specific text.')
45 parser.add_argument(
46 '-fil',
47 '--filter',
48 help='Filter specific screen_name.')
49 parser.add_argument(
50 '-ig',
51 '--ignore',
52 help='Ignore specific screen_name.')
53 parser.add_argument(
54 '-iot',
55 '--image-on-term',
56 action='store_true',
57 help='Display all image on terminal.')
58 return parser.parse_args()
59
60
61 def authen():
62 """
63 Authenticate with Twitter OAuth
64 """
65 # When using rainbow stream you must authorize.
66 twitter_credential = os.environ.get(
67 'HOME',
68 os.environ.get(
69 'USERPROFILE',
70 '')) + os.sep + '.rainbow_oauth'
71 if not os.path.exists(twitter_credential):
72 oauth_dance("Rainbow Stream",
73 CONSUMER_KEY,
74 CONSUMER_SECRET,
75 twitter_credential)
76 oauth_token, oauth_token_secret = read_token_file(twitter_credential)
77 return OAuth(
78 oauth_token,
79 oauth_token_secret,
80 CONSUMER_KEY,
81 CONSUMER_SECRET)
82
83
84 def build_mute_dict(dict_data=False):
85 """
86 Build muting list
87 """
88 t = Twitter(auth=authen())
89 # Init cursor
90 next_cursor = -1
91 screen_name_list = []
92 name_list = []
93 # Cursor loop
94 while next_cursor != 0:
95 list = t.mutes.users.list(
96 screen_name=g['original_name'],
97 cursor=next_cursor,
98 skip_status=True,
99 include_entities=False,
100 )
101 screen_name_list += ['@' + u['screen_name'] for u in list['users']]
102 name_list += [u['name'] for u in list['users']]
103 next_cursor = list['next_cursor']
104 # Return dict or list
105 if dict_data:
106 return dict(zip(screen_name_list, name_list))
107 else:
108 return screen_name_list
109
110
111 def init(args):
112 """
113 Init function
114 """
115 # Handle Ctrl C
116 ctrl_c_handler = lambda signum, frame: quit()
117 signal.signal(signal.SIGINT, ctrl_c_handler)
118 # Get name
119 t = Twitter(auth=authen())
120 credential = t.account.verify_credentials()
121 screen_name = '@' + credential['screen_name']
122 name = credential['name']
123 if not get_config('PREFIX'):
124 set_config('PREFIX', screen_name)
125 g['original_name'] = screen_name[1:]
126 g['full_name'] = name
127 g['decorated_name'] = lambda x: color_func(
128 c['DECORATED_NAME'])('[' + x + ']: ')
129 # Theme init
130 files = os.listdir(os.path.dirname(__file__) + '/colorset')
131 themes = [f.split('.')[0] for f in files if f.split('.')[-1] == 'json']
132 g['themes'] = themes
133 g['pause'] = False
134 g['message_threads'] = {}
135 # Startup cmd
136 g['cmd'] = ''
137 # Semaphore init
138 c['lock'] = False
139 # Init tweet dict and message dict
140 c['tweet_dict'] = []
141 c['message_dict'] = []
142 # Image on term
143 c['IMAGE_ON_TERM'] = args.image_on_term
144 set_config('IMAGE_ON_TERM', str(c['IMAGE_ON_TERM']))
145 # Mute dict
146 c['IGNORE_LIST'] += build_mute_dict()
147
148
149 def trend():
150 """
151 Trend
152 """
153 t = Twitter(auth=authen())
154 # Get country and town
155 try:
156 country = g['stuff'].split()[0]
157 except:
158 country = ''
159 try:
160 town = g['stuff'].split()[1]
161 except:
162 town = ''
163 avail = t.trends.available()
164 # World wide
165 if not country:
166 trends = t.trends.place(_id=1)[0]['trends']
167 print_trends(trends)
168 else:
169 for location in avail:
170 # Search for country and Town
171 if town:
172 if location['countryCode'] == country \
173 and location['placeType']['name'] == 'Town' \
174 and location['name'] == town:
175 trends = t.trends.place(_id=location['woeid'])[0]['trends']
176 print_trends(trends)
177 # Search for country only
178 else:
179 if location['countryCode'] == country \
180 and location['placeType']['name'] == 'Country':
181 trends = t.trends.place(_id=location['woeid'])[0]['trends']
182 print_trends(trends)
183
184
185 def home():
186 """
187 Home
188 """
189 t = Twitter(auth=authen())
190 num = c['HOME_TWEET_NUM']
191 if g['stuff'].isdigit():
192 num = int(g['stuff'])
193 for tweet in reversed(t.statuses.home_timeline(count=num)):
194 draw(t=tweet)
195 printNicely('')
196
197
198 def mentions():
199 """
200 Mentions timeline
201 """
202 t = Twitter(auth=authen())
203 num = c['HOME_TWEET_NUM']
204 if g['stuff'].isdigit():
205 num = int(g['stuff'])
206 for tweet in reversed(t.statuses.mentions_timeline(count=num)):
207 draw(t=tweet)
208 printNicely('')
209
210
211 def whois():
212 """
213 Show profile of a specific user
214 """
215 t = Twitter(auth=authen())
216 screen_name = g['stuff'].split()[0]
217 if screen_name.startswith('@'):
218 try:
219 user = t.users.show(
220 screen_name=screen_name[1:],
221 include_entities=False)
222 show_profile(user)
223 except:
224 printNicely(red('Omg no user.'))
225 else:
226 printNicely(red('A name should begin with a \'@\''))
227
228
229 def view():
230 """
231 Friend view
232 """
233 t = Twitter(auth=authen())
234 user = g['stuff'].split()[0]
235 if user[0] == '@':
236 try:
237 num = int(g['stuff'].split()[1])
238 except:
239 num = c['HOME_TWEET_NUM']
240 for tweet in reversed(t.statuses.user_timeline(count=num, screen_name=user[1:])):
241 draw(t=tweet)
242 printNicely('')
243 else:
244 printNicely(red('A name should begin with a \'@\''))
245
246
247 def search():
248 """
249 Search
250 """
251 t = Twitter(auth=authen())
252 g['stuff'] = g['stuff'].strip()
253 rel = t.search.tweets(q=g['stuff'])['statuses']
254 if rel:
255 printNicely('Newest tweets:')
256 for i in reversed(xrange(c['SEARCH_MAX_RECORD'])):
257 draw(t=rel[i],
258 keyword=g['stuff'])
259 printNicely('')
260 else:
261 printNicely(magenta('I\'m afraid there is no result'))
262
263
264 def tweet():
265 """
266 Tweet
267 """
268 t = Twitter(auth=authen())
269 t.statuses.update(status=g['stuff'])
270
271
272 def retweet():
273 """
274 ReTweet
275 """
276 t = Twitter(auth=authen())
277 try:
278 id = int(g['stuff'].split()[0])
279 except:
280 printNicely(red('Sorry I can\'t understand.'))
281 return
282 tid = c['tweet_dict'][id]
283 t.statuses.retweet(id=tid, include_entities=False, trim_user=True)
284
285
286 def quote():
287 """
288 Quote a tweet
289 """
290 # Get tweet
291 t = Twitter(auth=authen())
292 try:
293 id = int(g['stuff'].split()[0])
294 except:
295 printNicely(red('Sorry I can\'t understand.'))
296 return
297 tid = c['tweet_dict'][id]
298 tweet = t.statuses.show(id=tid)
299 # Get formater
300 formater = format_quote(tweet)
301 if not formater:
302 return
303 # Get comment
304 prefix = light_magenta('Compose your ') + light_green('#comment: ')
305 comment = raw_input(prefix)
306 if comment:
307 quote = comment.join(formater.split('#comment'))
308 t.statuses.update(status=quote)
309 else:
310 printNicely(light_magenta('No text added.'))
311
312
313 def allretweet():
314 """
315 List all retweet
316 """
317 t = Twitter(auth=authen())
318 # Get rainbow id
319 try:
320 id = int(g['stuff'].split()[0])
321 except:
322 printNicely(red('Sorry I can\'t understand.'))
323 return
324 tid = c['tweet_dict'][id]
325 # Get display num if exist
326 try:
327 num = int(g['stuff'].split()[1])
328 except:
329 num = c['RETWEETS_SHOW_NUM']
330 # Get result and display
331 rt_ary = t.statuses.retweets(id=tid, count=num)
332 if not rt_ary:
333 printNicely(magenta('This tweet has no retweet.'))
334 return
335 for tweet in reversed(rt_ary):
336 draw(t=tweet)
337 printNicely('')
338
339
340 def conversation():
341 """
342 Conversation view
343 """
344 t = Twitter(auth=authen())
345 try:
346 id = int(g['stuff'].split()[0])
347 except:
348 printNicely(red('Sorry I can\'t understand.'))
349 return
350 tid = c['tweet_dict'][id]
351 tweet = t.statuses.show(id=tid)
352 limit = c['CONVERSATION_MAX']
353 thread_ref = []
354 thread_ref.append(tweet)
355 prev_tid = tweet['in_reply_to_status_id']
356 while prev_tid and limit:
357 limit -= 1
358 tweet = t.statuses.show(id=prev_tid)
359 prev_tid = tweet['in_reply_to_status_id']
360 thread_ref.append(tweet)
361
362 for tweet in reversed(thread_ref):
363 draw(t=tweet)
364 printNicely('')
365
366
367 def reply():
368 """
369 Reply
370 """
371 t = Twitter(auth=authen())
372 try:
373 id = int(g['stuff'].split()[0])
374 except:
375 printNicely(red('Sorry I can\'t understand.'))
376 return
377 tid = c['tweet_dict'][id]
378 user = t.statuses.show(id=tid)['user']['screen_name']
379 status = ' '.join(g['stuff'].split()[1:])
380 status = '@' + user + ' ' + str2u(status)
381 t.statuses.update(status=status, in_reply_to_status_id=tid)
382
383
384 def favorite():
385 """
386 Favorite
387 """
388 t = Twitter(auth=authen())
389 try:
390 id = int(g['stuff'].split()[0])
391 except:
392 printNicely(red('Sorry I can\'t understand.'))
393 return
394 tid = c['tweet_dict'][id]
395 t.favorites.create(_id=tid, include_entities=False)
396 printNicely(green('Favorited.'))
397 draw(t.statuses.show(id=tid))
398 printNicely('')
399
400
401 def unfavorite():
402 """
403 Unfavorite
404 """
405 t = Twitter(auth=authen())
406 try:
407 id = int(g['stuff'].split()[0])
408 except:
409 printNicely(red('Sorry I can\'t understand.'))
410 return
411 tid = c['tweet_dict'][id]
412 t.favorites.destroy(_id=tid)
413 printNicely(green('Okay it\'s unfavorited.'))
414 draw(t.statuses.show(id=tid))
415 printNicely('')
416
417
418 def delete():
419 """
420 Delete
421 """
422 t = Twitter(auth=authen())
423 try:
424 id = int(g['stuff'].split()[0])
425 except:
426 printNicely(red('Sorry I can\'t understand.'))
427 return
428 tid = c['tweet_dict'][id]
429 t.statuses.destroy(id=tid)
430 printNicely(green('Okay it\'s gone.'))
431
432
433 def show():
434 """
435 Show image
436 """
437 t = Twitter(auth=authen())
438 try:
439 target = g['stuff'].split()[0]
440 if target != 'image':
441 return
442 id = int(g['stuff'].split()[1])
443 tid = c['tweet_dict'][id]
444 tweet = t.statuses.show(id=tid)
445 media = tweet['entities']['media']
446 for m in media:
447 res = requests.get(m['media_url'])
448 img = Image.open(BytesIO(res.content))
449 img.show()
450 except:
451 printNicely(red('Sorry I can\'t show this image.'))
452
453
454 def urlopen():
455 """
456 Open url
457 """
458 t = Twitter(auth=authen())
459 try:
460 if not g['stuff'].isdigit():
461 return
462 tid = c['tweet_dict'][int(g['stuff'])]
463 tweet = t.statuses.show(id=tid)
464 link_ary = [
465 u for u in tweet['text'].split() if u.startswith('http://')]
466 if not link_ary:
467 printNicely(light_magenta('No url here @.@!'))
468 return
469 for link in link_ary:
470 webbrowser.open(link)
471 except:
472 printNicely(red('Sorry I can\'t open url in this tweet.'))
473
474
475 def inbox():
476 """
477 Inbox threads
478 """
479 t = Twitter(auth=authen())
480 num = c['MESSAGES_DISPLAY']
481 if g['stuff'].isdigit():
482 num = g['stuff']
483 # Get inbox messages
484 cur_page = 1
485 inbox = []
486 while num > 20:
487 inbox = inbox + t.direct_messages(
488 count=20,
489 page=cur_page,
490 include_entities=False,
491 skip_status=False
492 )
493 num -= 20
494 cur_page += 1
495 inbox = inbox + t.direct_messages(
496 count=num,
497 page=cur_page,
498 include_entities=False,
499 skip_status=False
500 )
501 # Get sent messages
502 num = c['MESSAGES_DISPLAY']
503 if g['stuff'].isdigit():
504 num = g['stuff']
505 cur_page = 1
506 sent = []
507 while num > 20:
508 sent = sent + t.direct_messages.sent(
509 count=20,
510 page=cur_page,
511 include_entities=False,
512 skip_status=False
513 )
514 num -= 20
515 cur_page += 1
516 sent = sent + t.direct_messages.sent(
517 count=num,
518 page=cur_page,
519 include_entities=False,
520 skip_status=False
521 )
522
523 d = {}
524 uniq_inbox = list(set(
525 [(m['sender_screen_name'], m['sender']['name']) for m in inbox]
526 ))
527 uniq_sent = list(set(
528 [(m['recipient_screen_name'], m['recipient']['name']) for m in sent]
529 ))
530 for partner in uniq_inbox:
531 inbox_ary = [m for m in inbox if m['sender_screen_name'] == partner[0]]
532 sent_ary = [
533 m for m in sent if m['recipient_screen_name'] == partner[0]]
534 d[partner] = inbox_ary + sent_ary
535 for partner in uniq_sent:
536 if partner not in d:
537 d[partner] = [
538 m for m in sent if m['recipient_screen_name'] == partner[0]]
539 g['message_threads'] = print_threads(d)
540
541
542 def thread():
543 """
544 View a thread of message
545 """
546 try:
547 thread_id = int(g['stuff'])
548 print_thread(
549 g['message_threads'][thread_id],
550 g['original_name'],
551 g['full_name'])
552 except Exception:
553 printNicely(red('No such thread.'))
554
555
556 def message():
557 """
558 Send a direct message
559 """
560 t = Twitter(auth=authen())
561 try:
562 user = g['stuff'].split()[0]
563 if user[0].startswith('@'):
564 content = ' '.join(g['stuff'].split()[1:])
565 t.direct_messages.new(
566 screen_name=user[1:],
567 text=content
568 )
569 printNicely(green('Message sent.'))
570 else:
571 printNicely(red('A name should begin with a \'@\''))
572 except:
573 printNicely(red('Sorry I can\'t understand.'))
574
575
576 def trash():
577 """
578 Remove message
579 """
580 t = Twitter(auth=authen())
581 try:
582 id = int(g['stuff'].split()[0])
583 except:
584 printNicely(red('Sorry I can\'t understand.'))
585 mid = c['message_dict'][id]
586 t.direct_messages.destroy(id=mid)
587 printNicely(green('Message deleted.'))
588
589
590 def ls():
591 """
592 List friends for followers
593 """
594 t = Twitter(auth=authen())
595 # Get name
596 try:
597 name = g['stuff'].split()[1]
598 if name.startswith('@'):
599 name = name[1:]
600 else:
601 printNicely(red('A name should begin with a \'@\''))
602 raise Exception('Invalid name')
603 except:
604 name = g['original_name']
605 # Get list followers or friends
606 try:
607 target = g['stuff'].split()[0]
608 except:
609 printNicely(red('Omg some syntax is wrong.'))
610 # Init cursor
611 d = {'fl': 'followers', 'fr': 'friends'}
612 next_cursor = -1
613 rel = {}
614 # Cursor loop
615 while next_cursor != 0:
616 list = getattr(t, d[target]).list(
617 screen_name=name,
618 cursor=next_cursor,
619 skip_status=True,
620 include_entities=False,
621 )
622 for u in list['users']:
623 rel[u['name']] = '@' + u['screen_name']
624 next_cursor = list['next_cursor']
625 # Print out result
626 printNicely('All: ' + str(len(rel)) + ' ' + d[target] + '.')
627 for name in rel:
628 user = ' ' + cycle_color(name)
629 user += color_func(c['TWEET']['nick'])(' ' + rel[name] + ' ')
630 printNicely(user)
631
632
633 def follow():
634 """
635 Follow a user
636 """
637 t = Twitter(auth=authen())
638 screen_name = g['stuff'].split()[0]
639 if screen_name.startswith('@'):
640 t.friendships.create(screen_name=screen_name[1:], follow=True)
641 printNicely(green('You are following ' + screen_name + ' now!'))
642 else:
643 printNicely(red('A name should begin with a \'@\''))
644
645
646 def unfollow():
647 """
648 Unfollow a user
649 """
650 t = Twitter(auth=authen())
651 screen_name = g['stuff'].split()[0]
652 if screen_name.startswith('@'):
653 t.friendships.destroy(
654 screen_name=screen_name[1:],
655 include_entities=False)
656 printNicely(green('Unfollow ' + screen_name + ' success!'))
657 else:
658 printNicely(red('A name should begin with a \'@\''))
659
660
661 def mute():
662 """
663 Mute a user
664 """
665 t = Twitter(auth=authen())
666 try:
667 screen_name = g['stuff'].split()[0]
668 except:
669 printNicely(red('A name should be specified. '))
670 return
671 if screen_name.startswith('@'):
672 try:
673 rel = t.mutes.users.create(screen_name=screen_name[1:])
674 if isinstance(rel, dict):
675 printNicely(green(screen_name + ' is muted.'))
676 c['IGNORE_LIST'] += [unc(screen_name)]
677 c['IGNORE_LIST'] = list(set(c['IGNORE_LIST']))
678 else:
679 printNicely(red(rel))
680 except:
681 printNicely(red('Something is wrong, can not mute now :('))
682 else:
683 printNicely(red('A name should begin with a \'@\''))
684
685
686 def unmute():
687 """
688 Unmute a user
689 """
690 t = Twitter(auth=authen())
691 try:
692 screen_name = g['stuff'].split()[0]
693 except:
694 printNicely(red('A name should be specified. '))
695 return
696 if screen_name.startswith('@'):
697 try:
698 rel = t.mutes.users.destroy(screen_name=screen_name[1:])
699 if isinstance(rel, dict):
700 printNicely(green(screen_name + ' is unmuted.'))
701 c['IGNORE_LIST'].remove(screen_name)
702 else:
703 printNicely(red(rel))
704 except:
705 printNicely(red('Maybe you are not muting this person ?'))
706 else:
707 printNicely(red('A name should begin with a \'@\''))
708
709
710 def muting():
711 """
712 List muting user
713 """
714 # Get dict of muting users
715 md = build_mute_dict(dict_data=True)
716 printNicely('All: ' + str(len(md)) + ' people.')
717 for name in md:
718 user = ' ' + cycle_color(md[name])
719 user += color_func(c['TWEET']['nick'])(' ' + name + ' ')
720 printNicely(user)
721 # Update from Twitter
722 c['IGNORE_LIST'] = [n for n in md]
723
724
725 def block():
726 """
727 Block a user
728 """
729 t = Twitter(auth=authen())
730 screen_name = g['stuff'].split()[0]
731 if screen_name.startswith('@'):
732 t.blocks.create(
733 screen_name=screen_name[1:],
734 include_entities=False,
735 skip_status=True)
736 printNicely(green('You blocked ' + screen_name + '.'))
737 else:
738 printNicely(red('A name should begin with a \'@\''))
739
740
741 def unblock():
742 """
743 Unblock a user
744 """
745 t = Twitter(auth=authen())
746 screen_name = g['stuff'].split()[0]
747 if screen_name.startswith('@'):
748 t.blocks.destroy(
749 screen_name=screen_name[1:],
750 include_entities=False,
751 skip_status=True)
752 printNicely(green('Unblock ' + screen_name + ' success!'))
753 else:
754 printNicely(red('A name should begin with a \'@\''))
755
756
757 def report():
758 """
759 Report a user as a spam account
760 """
761 t = Twitter(auth=authen())
762 screen_name = g['stuff'].split()[0]
763 if screen_name.startswith('@'):
764 t.users.report_spam(
765 screen_name=screen_name[1:])
766 printNicely(green('You reported ' + screen_name + '.'))
767 else:
768 printNicely(red('Sorry I can\'t understand.'))
769
770
771 def get_slug():
772 """
773 Get Slug Decorator
774 """
775 # Get list name
776 list_name = raw_input(light_magenta('Give me the list\'s name: '))
777 # Get list name and owner
778 try:
779 owner, slug = list_name.split('/')
780 if slug.startswith('@'):
781 slug = slug[1:]
782 return owner, slug
783 except:
784 printNicely(
785 light_magenta('List name should follow "@owner/list_name" format.'))
786 raise Exception('Wrong list name')
787
788
789 def show_lists(t):
790 """
791 List list
792 """
793 rel = t.lists.list(screen_name=g['original_name'])
794 if rel:
795 print_list(rel)
796 else:
797 printNicely(light_magenta('You belong to no lists :)'))
798
799
800 def list_home(t):
801 """
802 List home
803 """
804 owner, slug = get_slug()
805 res = t.lists.statuses(
806 slug=slug,
807 owner_screen_name=owner,
808 count=c['LIST_MAX'],
809 include_entities=False)
810 for tweet in res:
811 draw(t=tweet)
812 printNicely('')
813
814
815 def list_members(t):
816 """
817 List members
818 """
819 owner, slug = get_slug()
820 # Get members
821 rel = {}
822 next_cursor = -1
823 while next_cursor != 0:
824 m = t.lists.members(
825 slug=slug,
826 owner_screen_name=owner,
827 cursor=next_cursor,
828 include_entities=False)
829 for u in m['users']:
830 rel[u['name']] = '@' + u['screen_name']
831 next_cursor = m['next_cursor']
832 printNicely('All: ' + str(len(rel)) + ' members.')
833 for name in rel:
834 user = ' ' + cycle_color(name)
835 user += color_func(c['TWEET']['nick'])(' ' + rel[name] + ' ')
836 printNicely(user)
837
838
839 def list_subscribers(t):
840 """
841 List subscribers
842 """
843 owner, slug = get_slug()
844 # Get subscribers
845 rel = {}
846 next_cursor = -1
847 while next_cursor != 0:
848 m = t.lists.subscribers(
849 slug=slug,
850 owner_screen_name=owner,
851 cursor=next_cursor,
852 include_entities=False)
853 for u in m['users']:
854 rel[u['name']] = '@' + u['screen_name']
855 next_cursor = m['next_cursor']
856 printNicely('All: ' + str(len(rel)) + ' subscribers.')
857 for name in rel:
858 user = ' ' + cycle_color(name)
859 user += color_func(c['TWEET']['nick'])(' ' + rel[name] + ' ')
860 printNicely(user)
861
862
863 def list_add(t):
864 """
865 Add specific user to a list
866 """
867 owner, slug = get_slug()
868 # Add
869 user_name = raw_input(light_magenta('Give me name of the newbie: '))
870 if user_name.startswith('@'):
871 user_name = user_name[1:]
872 try:
873 t.lists.members.create(
874 slug=slug,
875 owner_screen_name=owner,
876 screen_name=user_name)
877 printNicely(green('Added.'))
878 except:
879 printNicely(light_magenta('I\'m sorry we can not add him/her.'))
880
881
882 def list_remove(t):
883 """
884 Remove specific user from a list
885 """
886 owner, slug = get_slug()
887 # Remove
888 user_name = raw_input(light_magenta('Give me name of the unlucky one: '))
889 if user_name.startswith('@'):
890 user_name = user_name[1:]
891 try:
892 t.lists.members.destroy(
893 slug=slug,
894 owner_screen_name=owner,
895 screen_name=user_name)
896 printNicely(green('Gone.'))
897 except:
898 printNicely(light_magenta('I\'m sorry we can not remove him/her.'))
899
900
901 def list_subscribe(t):
902 """
903 Subscribe to a list
904 """
905 owner, slug = get_slug()
906 # Subscribe
907 try:
908 t.lists.subscribers.create(
909 slug=slug,
910 owner_screen_name=owner)
911 printNicely(green('Done.'))
912 except:
913 printNicely(
914 light_magenta('I\'m sorry you can not subscribe to this list.'))
915
916
917 def list_unsubscribe(t):
918 """
919 Unsubscribe a list
920 """
921 owner, slug = get_slug()
922 # Subscribe
923 try:
924 t.lists.subscribers.destroy(
925 slug=slug,
926 owner_screen_name=owner)
927 printNicely(green('Done.'))
928 except:
929 printNicely(
930 light_magenta('I\'m sorry you can not unsubscribe to this list.'))
931
932
933 def list_own(t):
934 """
935 List own
936 """
937 rel = []
938 next_cursor = -1
939 while next_cursor != 0:
940 res = t.lists.ownerships(
941 screen_name=g['original_name'],
942 cursor=next_cursor)
943 rel += res['lists']
944 next_cursor = res['next_cursor']
945 if rel:
946 print_list(rel)
947 else:
948 printNicely(light_magenta('You own no lists :)'))
949
950
951 def list_new(t):
952 """
953 Create a new list
954 """
955 name = raw_input(light_magenta('New list\'s name: '))
956 mode = raw_input(light_magenta('New list\'s mode (public/private): '))
957 description = raw_input(light_magenta('New list\'s description: '))
958 try:
959 t.lists.create(
960 name=name,
961 mode=mode,
962 description=description)
963 printNicely(green(name + ' list is created.'))
964 except:
965 printNicely(red('Oops something is wrong with Twitter :('))
966
967
968 def list_update(t):
969 """
970 Update a list
971 """
972 slug = raw_input(light_magenta('Your list that you want to update: '))
973 name = raw_input(light_magenta('Update name (leave blank to unchange): '))
974 mode = raw_input(light_magenta('Update mode (public/private): '))
975 description = raw_input(light_magenta('Update description: '))
976 try:
977 if name:
978 t.lists.update(
979 slug='-'.join(slug.split()),
980 owner_screen_name=g['original_name'],
981 name=name,
982 mode=mode,
983 description=description)
984 else:
985 t.lists.update(
986 slug=slug,
987 owner_screen_name=g['original_name'],
988 mode=mode,
989 description=description)
990 printNicely(green(slug + ' list is updated.'))
991 except:
992 printNicely(red('Oops something is wrong with Twitter :('))
993
994
995 def list_delete(t):
996 """
997 Delete a list
998 """
999 slug = raw_input(light_magenta('Your list that you want to delete: '))
1000 try:
1001 t.lists.destroy(
1002 slug='-'.join(slug.split()),
1003 owner_screen_name=g['original_name'])
1004 printNicely(green(slug + ' list is deleted.'))
1005 except:
1006 printNicely(red('Oops something is wrong with Twitter :('))
1007
1008
1009 def twitterlist():
1010 """
1011 Twitter's list
1012 """
1013 t = Twitter(auth=authen())
1014 # List all lists or base on action
1015 try:
1016 g['list_action'] = g['stuff'].split()[0]
1017 except:
1018 show_lists(t)
1019 return
1020 # Sub-function
1021 action_ary = {
1022 'home': list_home,
1023 'all_mem': list_members,
1024 'all_sub': list_subscribers,
1025 'add': list_add,
1026 'rm': list_remove,
1027 'sub': list_subscribe,
1028 'unsub': list_unsubscribe,
1029 'own': list_own,
1030 'new': list_new,
1031 'update': list_update,
1032 'del': list_delete,
1033 }
1034 try:
1035 return action_ary[g['list_action']](t)
1036 except:
1037 printNicely(red('Please try again.'))
1038
1039
1040 def switch():
1041 """
1042 Switch stream
1043 """
1044 try:
1045 target = g['stuff'].split()[0]
1046 # Filter and ignore
1047 args = parse_arguments()
1048 try:
1049 if g['stuff'].split()[-1] == '-f':
1050 guide = 'To ignore an option, just hit Enter key.'
1051 printNicely(light_magenta(guide))
1052 only = raw_input('Only nicks [Ex: @xxx,@yy]: ')
1053 ignore = raw_input('Ignore nicks [Ex: @xxx,@yy]: ')
1054 args.filter = filter(None, only.split(','))
1055 args.ignore = filter(None, ignore.split(','))
1056 elif g['stuff'].split()[-1] == '-d':
1057 args.filter = c['ONLY_LIST']
1058 args.ignore = c['IGNORE_LIST']
1059 except:
1060 printNicely(red('Sorry, wrong format.'))
1061 return
1062 # Public stream
1063 if target == 'public':
1064 keyword = g['stuff'].split()[1]
1065 if keyword[0] == '#':
1066 keyword = keyword[1:]
1067 # Kill old thread
1068 g['stream_stop'] = True
1069 args.track_keywords = keyword
1070 # Start new thread
1071 th = threading.Thread(
1072 target=stream,
1073 args=(
1074 c['PUBLIC_DOMAIN'],
1075 args))
1076 th.daemon = True
1077 th.start()
1078 # Personal stream
1079 elif target == 'mine':
1080 # Kill old thread
1081 g['stream_stop'] = True
1082 # Start new thread
1083 th = threading.Thread(
1084 target=stream,
1085 args=(
1086 c['USER_DOMAIN'],
1087 args,
1088 g['original_name']))
1089 th.daemon = True
1090 th.start()
1091 printNicely('')
1092 if args.filter:
1093 printNicely(cyan('Only: ' + str(args.filter)))
1094 if args.ignore:
1095 printNicely(red('Ignore: ' + str(args.ignore)))
1096 printNicely('')
1097 except:
1098 printNicely(red('Sorry I can\'t understand.'))
1099
1100
1101 def cal():
1102 """
1103 Unix's command `cal`
1104 """
1105 # Format
1106 rel = os.popen('cal').read().split('\n')
1107 month = rel.pop(0)
1108 date = rel.pop(0)
1109 show_calendar(month, date, rel)
1110
1111
1112 def theme():
1113 """
1114 List and change theme
1115 """
1116 if not g['stuff']:
1117 # List themes
1118 for theme in g['themes']:
1119 line = light_magenta(theme)
1120 if c['THEME'] == theme:
1121 line = ' ' * 2 + light_yellow('* ') + line
1122 else:
1123 line = ' ' * 4 + line
1124 printNicely(line)
1125 else:
1126 # Change theme
1127 try:
1128 # Load new theme
1129 c['THEME'] = reload_theme(g['stuff'], c['THEME'])
1130 # Redefine decorated_name
1131 g['decorated_name'] = lambda x: color_func(
1132 c['DECORATED_NAME'])(
1133 '[' + x + ']: ')
1134 printNicely(green('Theme changed.'))
1135 except:
1136 printNicely(red('No such theme exists.'))
1137
1138
1139 def config():
1140 """
1141 Browse and change config
1142 """
1143 all_config = get_all_config()
1144 g['stuff'] = g['stuff'].strip()
1145 # List all config
1146 if not g['stuff']:
1147 for k in all_config:
1148 line = ' ' * 2 + \
1149 green(k) + ': ' + light_yellow(str(all_config[k]))
1150 printNicely(line)
1151 guide = 'Detailed explanation can be found at ' + \
1152 color_func(c['TWEET']['link'])(
1153 'http://rainbowstream.readthedocs.org/en/latest/#config-explanation')
1154 printNicely(guide)
1155 # Print specific config
1156 elif len(g['stuff'].split()) == 1:
1157 if g['stuff'] in all_config:
1158 k = g['stuff']
1159 line = ' ' * 2 + \
1160 green(k) + ': ' + light_yellow(str(all_config[k]))
1161 printNicely(line)
1162 else:
1163 printNicely(red('No such config key.'))
1164 # Print specific config's default value
1165 elif len(g['stuff'].split()) == 2 and g['stuff'].split()[-1] == 'default':
1166 key = g['stuff'].split()[0]
1167 try:
1168 value = get_default_config(key)
1169 line = ' ' * 2 + green(key) + ': ' + light_magenta(value)
1170 printNicely(line)
1171 except Exception as e:
1172 printNicely(red(e))
1173 # Delete specific config key in config file
1174 elif len(g['stuff'].split()) == 2 and g['stuff'].split()[-1] == 'drop':
1175 key = g['stuff'].split()[0]
1176 try:
1177 delete_config(key)
1178 printNicely(green('Config key is dropped.'))
1179 except Exception as e:
1180 printNicely(red(e))
1181 # Set specific config
1182 elif len(g['stuff'].split()) == 3 and g['stuff'].split()[1] == '=':
1183 key = g['stuff'].split()[0]
1184 value = g['stuff'].split()[-1]
1185 if key == 'THEME' and not validate_theme(value):
1186 printNicely(red('Invalid theme\'s value.'))
1187 return
1188 try:
1189 set_config(key, value)
1190 # Apply theme immediately
1191 if key == 'THEME':
1192 c['THEME'] = reload_theme(value, c['THEME'])
1193 g['decorated_name'] = lambda x: color_func(
1194 c['DECORATED_NAME'])('[' + x + ']: ')
1195 reload_config()
1196 printNicely(green('Updated successfully.'))
1197 except Exception as e:
1198 printNicely(red(e))
1199 else:
1200 printNicely(light_magenta('Sorry I can\'s understand.'))
1201
1202
1203 def help_discover():
1204 """
1205 Discover the world
1206 """
1207 s = ' ' * 2
1208 # Discover the world
1209 usage = '\n'
1210 usage += s + grey(u'\u266A' + ' Discover the world \n')
1211 usage += s * 2 + light_green('trend') + ' will show global trending topics. ' + \
1212 'You can try ' + light_green('trend US') + ' or ' + \
1213 light_green('trend JP Tokyo') + '.\n'
1214 usage += s * 2 + light_green('home') + ' will show your timeline. ' + \
1215 light_green('home 7') + ' will show 7 tweets.\n'
1216 usage += s * 2 + light_green('mentions') + ' will show mentions timeline. ' + \
1217 light_green('mentions 7') + ' will show 7 mention tweets.\n'
1218 usage += s * 2 + light_green('whois @mdo') + ' will show profile of ' + \
1219 magenta('@mdo') + '.\n'
1220 usage += s * 2 + light_green('view @mdo') + \
1221 ' will show ' + magenta('@mdo') + '\'s home.\n'
1222 usage += s * 2 + light_green('s AKB48') + ' will search for "' + \
1223 light_yellow('AKB48') + '" and return 5 newest tweet. ' + \
1224 'Search can be performed with or without hashtag.\n'
1225 printNicely(usage)
1226
1227
1228 def help_tweets():
1229 """
1230 Tweets
1231 """
1232 s = ' ' * 2
1233 # Tweet
1234 usage = '\n'
1235 usage += s + grey(u'\u266A' + ' Tweets \n')
1236 usage += s * 2 + light_green('t oops ') + \
1237 'will tweet "' + light_yellow('oops') + '" immediately.\n'
1238 usage += s * 2 + \
1239 light_green('rt 12 ') + ' will retweet to tweet with ' + \
1240 light_yellow('[id=12]') + '.\n'
1241 usage += s * 2 + \
1242 light_green('quote 12 ') + ' will quote the tweet with ' + \
1243 light_yellow('[id=12]') + '. If no extra text is added, ' + \
1244 'the quote will be canceled.\n'
1245 usage += s * 2 + \
1246 light_green('allrt 12 20 ') + ' will list 20 newest retweet of the tweet with ' + \
1247 light_yellow('[id=12]') + '.\n'
1248 usage += s * 2 + light_green('conversation 12') + ' will show the chain of ' + \
1249 'replies prior to the tweet with ' + light_yellow('[id=12]') + '.\n'
1250 usage += s * 2 + light_green('rep 12 oops') + ' will reply "' + \
1251 light_yellow('oops') + '" to tweet with ' + \
1252 light_yellow('[id=12]') + '.\n'
1253 usage += s * 2 + \
1254 light_green('fav 12 ') + ' will favorite the tweet with ' + \
1255 light_yellow('[id=12]') + '.\n'
1256 usage += s * 2 + \
1257 light_green('ufav 12 ') + ' will unfavorite tweet with ' + \
1258 light_yellow('[id=12]') + '.\n'
1259 usage += s * 2 + \
1260 light_green('del 12 ') + ' will delete tweet with ' + \
1261 light_yellow('[id=12]') + '.\n'
1262 usage += s * 2 + light_green('show image 12') + ' will show image in tweet with ' + \
1263 light_yellow('[id=12]') + ' in your OS\'s image viewer.\n'
1264 usage += s * 2 + light_green('open 12') + ' will open url in tweet with ' + \
1265 light_yellow('[id=12]') + ' in your OS\'s default browser.\n'
1266 printNicely(usage)
1267
1268
1269 def help_messages():
1270 """
1271 Messages
1272 """
1273 s = ' ' * 2
1274 # Direct message
1275 usage = '\n'
1276 usage += s + grey(u'\u266A' + ' Direct messages \n')
1277 usage += s * 2 + light_green('inbox') + ' will show inbox messages. ' + \
1278 light_green('inbox 7') + ' will show newest 7 messages.\n'
1279 usage += s * 2 + light_green('thread 2') + ' will show full thread with ' + \
1280 light_yellow('[thread_id=2]') + '.\n'
1281 usage += s * 2 + light_green('mes @dtvd88 hi') + ' will send a "hi" messege to ' + \
1282 magenta('@dtvd88') + '.\n'
1283 usage += s * 2 + light_green('trash 5') + ' will remove message with ' + \
1284 light_yellow('[message_id=5]') + '.\n'
1285 printNicely(usage)
1286
1287
1288 def help_friends_and_followers():
1289 """
1290 Friends and Followers
1291 """
1292 s = ' ' * 2
1293 # Follower and following
1294 usage = '\n'
1295 usage += s + grey(u'\u266A' + ' Friends and followers \n')
1296 usage += s * 2 + \
1297 light_green('ls fl') + \
1298 ' will list all followers (people who are following you).\n'
1299 usage += s * 2 + \
1300 light_green('ls fr') + \
1301 ' will list all friends (people who you are following).\n'
1302 usage += s * 2 + light_green('fl @dtvd88') + ' will follow ' + \
1303 magenta('@dtvd88') + '.\n'
1304 usage += s * 2 + light_green('ufl @dtvd88') + ' will unfollow ' + \
1305 magenta('@dtvd88') + '.\n'
1306 usage += s * 2 + light_green('mute @dtvd88') + ' will mute ' + \
1307 magenta('@dtvd88') + '.\n'
1308 usage += s * 2 + light_green('unmute @dtvd88') + ' will unmute ' + \
1309 magenta('@dtvd88') + '.\n'
1310 usage += s * 2 + light_green('muting') + ' will list muting users.\n'
1311 usage += s * 2 + light_green('block @dtvd88') + ' will block ' + \
1312 magenta('@dtvd88') + '.\n'
1313 usage += s * 2 + light_green('unblock @dtvd88') + ' will unblock ' + \
1314 magenta('@dtvd88') + '.\n'
1315 usage += s * 2 + light_green('report @dtvd88') + ' will report ' + \
1316 magenta('@dtvd88') + ' as a spam account.\n'
1317 printNicely(usage)
1318
1319
1320 def help_list():
1321 """
1322 Lists
1323 """
1324 s = ' ' * 2
1325 # Twitter list
1326 usage = '\n'
1327 usage += s + grey(u'\u266A' + ' Twitter list\n')
1328 usage += s * 2 + light_green('list') + \
1329 ' will show all lists you are belong to.\n'
1330 usage += s * 2 + light_green('list home') + \
1331 ' will show timeline of list. You will be asked for list\'s name.\n'
1332 usage += s * 2 + light_green('list all_mem') + \
1333 ' will show list\'s all members.\n'
1334 usage += s * 2 + light_green('list all_sub') + \
1335 ' will show list\'s all subscribers.\n'
1336 usage += s * 2 + light_green('list add') + \
1337 ' will add specific person to a list owned by you.' + \
1338 ' You will be asked for list\'s name and person\'s name.\n'
1339 usage += s * 2 + light_green('list rm') + \
1340 ' will remove specific person from a list owned by you.' + \
1341 ' You will be asked for list\'s name and person\'s name.\n'
1342 usage += s * 2 + light_green('list sub') + \
1343 ' will subscribe you to a specific list.\n'
1344 usage += s * 2 + light_green('list unsub') + \
1345 ' will unsubscribe you from a specific list.\n'
1346 usage += s * 2 + light_green('list own') + \
1347 ' will show all list owned by you.\n'
1348 usage += s * 2 + light_green('list new') + \
1349 ' will create a new list.\n'
1350 usage += s * 2 + light_green('list update') + \
1351 ' will update a list owned by you.\n'
1352 usage += s * 2 + light_green('list del') + \
1353 ' will delete a list owned by you.\n'
1354 printNicely(usage)
1355
1356
1357 def help_stream():
1358 """
1359 Stream switch
1360 """
1361 s = ' ' * 2
1362 # Switch
1363 usage = '\n'
1364 usage += s + grey(u'\u266A' + ' Switching streams \n')
1365 usage += s * 2 + light_green('switch public #AKB') + \
1366 ' will switch to public stream and follow "' + \
1367 light_yellow('AKB') + '" keyword.\n'
1368 usage += s * 2 + light_green('switch mine') + \
1369 ' will switch to your personal stream.\n'
1370 usage += s * 2 + light_green('switch mine -f ') + \
1371 ' will prompt to enter the filter.\n'
1372 usage += s * 3 + light_yellow('Only nicks') + \
1373 ' filter will decide nicks will be INCLUDE ONLY.\n'
1374 usage += s * 3 + light_yellow('Ignore nicks') + \
1375 ' filter will decide nicks will be EXCLUDE.\n'
1376 usage += s * 2 + light_green('switch mine -d') + \
1377 ' will use the config\'s ONLY_LIST and IGNORE_LIST.\n'
1378 printNicely(usage)
1379
1380
1381 def help():
1382 """
1383 Help
1384 """
1385 s = ' ' * 2
1386 h, w = os.popen('stty size', 'r').read().split()
1387 # Start
1388 usage = '\n'
1389 usage += s + 'Hi boss! I\'m ready to serve you right now!\n'
1390 usage += s + '-' * (int(w) - 4) + '\n'
1391 usage += s + 'You are ' + \
1392 light_yellow('already') + ' on your personal stream.\n'
1393 usage += s + 'Any update from Twitter will show up ' + \
1394 light_yellow('immediately') + '.\n'
1395 usage += s + 'In addition, following commands are available right now:\n'
1396 # Twitter help section
1397 usage += '\n'
1398 usage += s + grey(u'\u266A' + ' Twitter help\n')
1399 usage += s * 2 + light_green('h discover') + \
1400 ' will show help for discover commands.\n'
1401 usage += s * 2 + light_green('h tweets') + \
1402 ' will show help for tweets commands.\n'
1403 usage += s * 2 + light_green('h messages') + \
1404 ' will show help for messages commands.\n'
1405 usage += s * 2 + light_green('h friends_and_followers') + \
1406 ' will show help for friends and followers commands.\n'
1407 usage += s * 2 + light_green('h list') + \
1408 ' will show help for list commands.\n'
1409 usage += s * 2 + light_green('h stream') + \
1410 ' will show help for stream commands.\n'
1411 # Smart shell
1412 usage += '\n'
1413 usage += s + grey(u'\u266A' + ' Smart shell\n')
1414 usage += s * 2 + light_green('111111 * 9 / 7') + ' or any math expression ' + \
1415 'will be evaluate by Python interpreter.\n'
1416 usage += s * 2 + 'Even ' + light_green('cal') + ' will show the calendar' + \
1417 ' for current month.\n'
1418 # Config
1419 usage += '\n'
1420 usage += s + grey(u'\u266A' + ' Config \n')
1421 usage += s * 2 + light_green('theme') + ' will list available theme. ' + \
1422 light_green('theme monokai') + ' will apply ' + light_yellow('monokai') + \
1423 ' theme immediately.\n'
1424 usage += s * 2 + light_green('config') + ' will list all config.\n'
1425 usage += s * 3 + \
1426 light_green('config ASCII_ART') + ' will output current value of ' +\
1427 light_yellow('ASCII_ART') + ' config key.\n'
1428 usage += s * 3 + \
1429 light_green('config TREND_MAX default') + ' will output default value of ' + \
1430 light_yellow('TREND_MAX') + ' config key.\n'
1431 usage += s * 3 + \
1432 light_green('config CUSTOM_CONFIG drop') + ' will drop ' + \
1433 light_yellow('CUSTOM_CONFIG') + ' config key.\n'
1434 usage += s * 3 + \
1435 light_green('config IMAGE_ON_TERM = true') + ' will set value of ' + \
1436 light_yellow('IMAGE_ON_TERM') + ' config key to ' + \
1437 light_yellow('True') + '.\n'
1438 # Screening
1439 usage += '\n'
1440 usage += s + grey(u'\u266A' + ' Screening \n')
1441 usage += s * 2 + light_green('h') + ' will show this help again.\n'
1442 usage += s * 2 + light_green('p') + ' will pause the stream.\n'
1443 usage += s * 2 + light_green('r') + ' will unpause the stream.\n'
1444 usage += s * 2 + light_green('c') + ' will clear the screen.\n'
1445 usage += s * 2 + light_green('q') + ' will quit.\n'
1446 # End
1447 usage += '\n'
1448 usage += s + '-' * (int(w) - 4) + '\n'
1449 usage += s + 'Have fun and hang tight! \n'
1450 # Show help
1451 d = {
1452 'discover': help_discover,
1453 'tweets': help_tweets,
1454 'messages': help_messages,
1455 'friends_and_followers': help_friends_and_followers,
1456 'list': help_list,
1457 'stream': help_stream,
1458 }
1459 if g['stuff']:
1460 d.get(
1461 g['stuff'].strip(),
1462 lambda: printNicely(red('No such command.'))
1463 )()
1464 else:
1465 printNicely(usage)
1466
1467
1468 def pause():
1469 """
1470 Pause stream display
1471 """
1472 g['pause'] = True
1473 printNicely(green('Stream is paused'))
1474
1475
1476 def replay():
1477 """
1478 Replay stream
1479 """
1480 g['pause'] = False
1481 printNicely(green('Stream is running back now'))
1482
1483
1484 def clear():
1485 """
1486 Clear screen
1487 """
1488 os.system('clear')
1489
1490
1491 def quit():
1492 """
1493 Exit all
1494 """
1495 try:
1496 save_history()
1497 printNicely(green('See you next time :)'))
1498 except:
1499 pass
1500 sys.exit()
1501
1502
1503 def reset():
1504 """
1505 Reset prefix of line
1506 """
1507 if g['reset']:
1508 if c.get('USER_JSON_ERROR'):
1509 printNicely(red('Your ~/.rainbow_config.json is messed up:'))
1510 printNicely(red('>>> ' + c['USER_JSON_ERROR']))
1511 printNicely('')
1512 printNicely(magenta('Need tips ? Type "h" and hit Enter key!'))
1513 g['reset'] = False
1514 try:
1515 printNicely(str(eval(g['cmd'])))
1516 except Exception:
1517 pass
1518
1519
1520 # Command set
1521 cmdset = [
1522 'switch',
1523 'trend',
1524 'home',
1525 'view',
1526 'mentions',
1527 't',
1528 'rt',
1529 'quote',
1530 'allrt',
1531 'conversation',
1532 'fav',
1533 'rep',
1534 'del',
1535 'ufav',
1536 's',
1537 'mes',
1538 'show',
1539 'open',
1540 'ls',
1541 'inbox',
1542 'thread',
1543 'trash',
1544 'whois',
1545 'fl',
1546 'ufl',
1547 'mute',
1548 'unmute',
1549 'muting',
1550 'block',
1551 'unblock',
1552 'report',
1553 'list',
1554 'cal',
1555 'config',
1556 'theme',
1557 'h',
1558 'p',
1559 'r',
1560 'c',
1561 'q'
1562 ]
1563
1564 # Handle function set
1565 funcset = [
1566 switch,
1567 trend,
1568 home,
1569 view,
1570 mentions,
1571 tweet,
1572 retweet,
1573 quote,
1574 allretweet,
1575 conversation,
1576 favorite,
1577 reply,
1578 delete,
1579 unfavorite,
1580 search,
1581 message,
1582 show,
1583 urlopen,
1584 ls,
1585 inbox,
1586 thread,
1587 trash,
1588 whois,
1589 follow,
1590 unfollow,
1591 mute,
1592 unmute,
1593 muting,
1594 block,
1595 unblock,
1596 report,
1597 twitterlist,
1598 cal,
1599 config,
1600 theme,
1601 help,
1602 pause,
1603 replay,
1604 clear,
1605 quit
1606 ]
1607
1608
1609 def process(cmd):
1610 """
1611 Process switch
1612 """
1613 return dict(zip(cmdset, funcset)).get(cmd, reset)
1614
1615
1616 def listen():
1617 """
1618 Listen to user's input
1619 """
1620 d = dict(zip(
1621 cmdset,
1622 [
1623 ['public', 'mine'], # switch
1624 [], # trend
1625 [], # home
1626 ['@'], # view
1627 [], # mentions
1628 [], # tweet
1629 [], # retweet
1630 [], # quote
1631 [], # allretweet
1632 [], # conversation
1633 [], # favorite
1634 [], # reply
1635 [], # delete
1636 [], # unfavorite
1637 ['#'], # search
1638 ['@'], # message
1639 ['image'], # show image
1640 [''], # open url
1641 ['fl', 'fr'], # list
1642 [], # inbox
1643 [i for i in g['message_threads']], # sent
1644 [], # trash
1645 ['@'], # whois
1646 ['@'], # follow
1647 ['@'], # unfollow
1648 ['@'], # mute
1649 ['@'], # unmute
1650 ['@'], # muting
1651 ['@'], # block
1652 ['@'], # unblock
1653 ['@'], # report
1654 [
1655 'home',
1656 'all_mem',
1657 'all_sub',
1658 'add',
1659 'rm',
1660 'sub',
1661 'unsub',
1662 'own',
1663 'new',
1664 'update',
1665 'del'
1666 ], # list
1667 [], # cal
1668 [key for key in dict(get_all_config())], # config
1669 g['themes'], # theme
1670 [
1671 'discover',
1672 'tweets',
1673 'messages',
1674 'friends_and_followers',
1675 'list',
1676 'stream'
1677 ], # help
1678 [], # pause
1679 [], # reconnect
1680 [], # clear
1681 [], # quit
1682 ]
1683 ))
1684 init_interactive_shell(d)
1685 read_history()
1686 reset()
1687 while True:
1688 try:
1689 # raw_input
1690 if g['prefix']:
1691 line = raw_input(g['decorated_name'](c['PREFIX']))
1692 else:
1693 line = raw_input()
1694 # Save cmd to compare with readline buffer
1695 g['cmd'] = line.strip()
1696 # Get short cmd to pass to handle function
1697 try:
1698 cmd = line.split()[0]
1699 except:
1700 cmd = ''
1701 # Lock the semaphore
1702 c['lock'] = True
1703 # Save cmd to global variable and call process
1704 g['stuff'] = ' '.join(line.split()[1:])
1705 # Process the command
1706 process(cmd)()
1707 # Not re-display
1708 if cmd in ['switch', 't', 'rt', 'rep']:
1709 g['prefix'] = False
1710 else:
1711 g['prefix'] = True
1712 # Release the semaphore lock
1713 c['lock'] = False
1714 except EOFError:
1715 printNicely('')
1716 except Exception:
1717 printNicely(red('OMG something is wrong with Twitter right now.'))
1718
1719
1720 def stream(domain, args, name='Rainbow Stream'):
1721 """
1722 Track the stream
1723 """
1724 # The Logo
1725 art_dict = {
1726 c['USER_DOMAIN']: name,
1727 c['PUBLIC_DOMAIN']: args.track_keywords,
1728 c['SITE_DOMAIN']: name,
1729 }
1730 if c['ASCII_ART']:
1731 ascii_art(art_dict[domain])
1732 # These arguments are optional:
1733 stream_args = dict(
1734 timeout=0.5, # To check g['stream_stop'] after each 0.5 s
1735 block=True,
1736 heartbeat_timeout=c['HEARTBEAT_TIMEOUT'] * 60)
1737 # Track keyword
1738 query_args = dict()
1739 if args.track_keywords:
1740 query_args['track'] = args.track_keywords
1741 # Get stream
1742 stream = TwitterStream(
1743 auth=authen(),
1744 domain=domain,
1745 **stream_args)
1746 try:
1747 if domain == c['USER_DOMAIN']:
1748 tweet_iter = stream.user(**query_args)
1749 elif domain == c['SITE_DOMAIN']:
1750 tweet_iter = stream.site(**query_args)
1751 else:
1752 if args.track_keywords:
1753 tweet_iter = stream.statuses.filter(**query_args)
1754 else:
1755 tweet_iter = stream.statuses.sample()
1756 # Block new stream until other one exits
1757 StreamLock.acquire()
1758 g['stream_stop'] = False
1759 for tweet in tweet_iter:
1760 if tweet is None:
1761 printNicely("-- None --")
1762 elif tweet is Timeout:
1763 if(g['stream_stop']):
1764 StreamLock.release()
1765 break
1766 elif tweet is HeartbeatTimeout:
1767 printNicely("-- Heartbeat Timeout --")
1768 guide = light_magenta("You can use ") + \
1769 light_green("switch") + \
1770 light_magenta(" command to return to your stream.\n")
1771 guide += light_magenta("Type ") + \
1772 light_green("h stream") + \
1773 light_magenta(" for more details.")
1774 printNicely(guide)
1775 sys.stdout.write(g['decorated_name'](c['PREFIX']))
1776 sys.stdout.flush()
1777 StreamLock.release()
1778 break
1779 elif tweet is Hangup:
1780 printNicely("-- Hangup --")
1781 elif tweet.get('text'):
1782 # Check the semaphore pause and lock (stream process only)
1783 if g['pause']:
1784 continue
1785 while c['lock']:
1786 time.sleep(0.5)
1787 # Draw the tweet
1788 draw(
1789 t=tweet,
1790 keyword=args.track_keywords,
1791 humanize=False,
1792 fil=args.filter,
1793 ig=args.ignore,
1794 )
1795 # Current readline buffer
1796 current_buffer = readline.get_line_buffer().strip()
1797 # There is an unexpected behaviour in MacOSX readline + Python 2:
1798 # after completely delete a word after typing it,
1799 # somehow readline buffer still contains
1800 # the 1st character of that word
1801 if current_buffer and g['cmd'] != current_buffer:
1802 sys.stdout.write(
1803 g['decorated_name'](c['PREFIX']) + str2u(current_buffer))
1804 sys.stdout.flush()
1805 elif not c['HIDE_PROMPT']:
1806 sys.stdout.write(g['decorated_name'](c['PREFIX']))
1807 sys.stdout.flush()
1808 elif tweet.get('direct_message'):
1809 # Check the semaphore pause and lock (stream process only)
1810 if g['pause']:
1811 continue
1812 while c['lock']:
1813 time.sleep(0.5)
1814 print_message(tweet['direct_message'])
1815 except TwitterHTTPError:
1816 printNicely('')
1817 printNicely(
1818 magenta("We have maximum connection problem with twitter'stream API right now :("))
1819
1820
1821 def fly():
1822 """
1823 Main function
1824 """
1825 # Initial
1826 args = parse_arguments()
1827 try:
1828 init(args)
1829 except TwitterHTTPError:
1830 printNicely('')
1831 printNicely(
1832 magenta("We have connection problem with twitter'stream API right now :("))
1833 printNicely(magenta("Let's try again later."))
1834 save_history()
1835 sys.exit()
1836 # Spawn stream thread
1837 th = threading.Thread(
1838 target=stream,
1839 args=(
1840 c['USER_DOMAIN'],
1841 args,
1842 g['original_name']))
1843 th.daemon = True
1844 th.start()
1845 # Start listen process
1846 time.sleep(0.5)
1847 g['reset'] = True
1848 g['prefix'] = True
1849 listen()