allretweet
[rainbowstream.git] / rainbowstream / rainbow.py
index 5e911b4974e1b2b6b7645fd300d9e3646ffe4432..60e9890e4ab4076f858398dd37ff5487a55dc336 100644 (file)
@@ -37,6 +37,7 @@ cmdset = [
     'mentions',
     't',
     'rt',
+    'allrt',
     'fav',
     'rep',
     'del',
@@ -51,9 +52,13 @@ cmdset = [
     'whois',
     'fl',
     'ufl',
+    'mute',
+    'unmute',
+    'muting',
     'block',
     'unblock',
     'report',
+    'cal',
     'h',
     'c',
     'q'
@@ -228,7 +233,7 @@ def show_profile(u):
     friends_count = green(str(friends_count) + ' following')
     followers_count = green(str(followers_count) + ' followers')
     count = statuses_count + '  ' + friends_count + '  ' + followers_count
-    user = cycle_color(name) + grey(' ' + screen_name + ' : ') + count
+    user = cycle_color(name) + grey(' @' + screen_name + ' : ') + count
     profile_image_raw_url = 'Profile photo: ' + cyan(profile_image_url)
     description = ''.join(
         map(lambda x: x + ' ' * 4 if x == '\n' else x, description))
@@ -527,6 +532,33 @@ def retweet():
     t.statuses.retweet(id=tid, include_entities=False, trim_user=True)
 
 
+def allretweet():
+    """
+    List all retweet
+    """
+    t = Twitter(auth=authen())
+    # Get rainbow id
+    try:
+        id = int(g['stuff'].split()[0])
+    except:
+        printNicely(red('Sorry I can\'t understand.'))
+        return
+    tid = db.rainbow_to_tweet_query(id)[0].tweet_id
+    # Get display num if exist
+    try:
+        num = int(g['stuff'].split()[1])
+    except:
+        num = RETWEETS_SHOW_NUM
+    # Get result and display
+    rt_ary = t.statuses.retweets(id=tid,count=num)
+    if not rt_ary:
+        printNicely(magenta('This tweet has no retweet.'))
+        return
+    for tweet in reversed(rt_ary):
+        draw(t=tweet, iot=g['iot'])
+    printNicely('')
+
+
 def favorite():
     """
     Favorite
@@ -600,7 +632,7 @@ def search():
     t = Twitter(auth=authen())
     if g['stuff'].startswith('#'):
         rel = t.search.tweets(q=g['stuff'])['statuses']
-        if len(rel):
+        if rel:
             printNicely('Newest tweets:')
             for i in reversed(xrange(SEARCH_MAX_RECORD)):
                 draw(t=rel[i],
@@ -822,6 +854,73 @@ def unfollow():
         printNicely(red('A name should begin with a \'@\''))
 
 
+def mute():
+    """
+    Mute a user
+    """
+    t = Twitter(auth=authen())
+    try:
+        screen_name = g['stuff'].split()[0]
+    except:
+        printNicely(red('A name should be specified. '))
+        return
+    if screen_name.startswith('@'):
+        rel = t.mutes.users.create(screen_name=screen_name[1:])
+        if isinstance(rel, dict):
+            printNicely(green(screen_name + ' is muted.'))
+        else:
+            printNicely(red(rel))
+    else:
+        printNicely(red('A name should begin with a \'@\''))
+
+
+def unmute():
+    """
+    Unmute a user
+    """
+    t = Twitter(auth=authen())
+    try:
+        screen_name = g['stuff'].split()[0]
+    except:
+        printNicely(red('A name should be specified. '))
+        return
+    if screen_name.startswith('@'):
+        rel = t.mutes.users.destroy(screen_name=screen_name[1:])
+        if isinstance(rel, dict):
+            printNicely(green(screen_name + ' is unmuted.'))
+        else:
+            printNicely(red(rel))
+    else:
+        printNicely(red('A name should begin with a \'@\''))
+
+
+def muting():
+    """
+    List muting user
+    """
+    t = Twitter(auth=authen())
+    # Init cursor
+    d = {'fl': 'followers', 'fr': 'friends'}
+    next_cursor = -1
+    rel = {}
+    # Cursor loop
+    while next_cursor != 0:
+        list = t.mutes.users.list(
+            screen_name=g['original_name'],
+            cursor=next_cursor,
+            skip_status=True,
+            include_entities=False,
+        )
+        for u in list['users']:
+            rel[u['name']] = '@' + u['screen_name']
+        next_cursor = list['next_cursor']
+    # Print out result
+    printNicely('All: ' + str(len(rel)) + ' people.')
+    for name in rel:
+        user = '  ' + cycle_color(name) + grey(' ' + rel[name] + ' ')
+        printNicely(user)
+
+
 def block():
     """
     Block a user
@@ -830,9 +929,9 @@ def block():
     screen_name = g['stuff'].split()[0]
     if screen_name.startswith('@'):
         t.blocks.create(
-           screen_name=screen_name[1:],
-           include_entities=False,
-           skip_status=True)
+            screen_name=screen_name[1:],
+            include_entities=False,
+            skip_status=True)
         printNicely(green('You blocked ' + screen_name + '.'))
     else:
         printNicely(red('A name should begin with a \'@\''))
@@ -868,6 +967,26 @@ def report():
         printNicely(red('Sorry I can\'t understand.'))
 
 
+def cal():
+    """
+    Unix's command `cal`
+    """
+    # Format
+    rel = os.popen('cal').read().split('\n')
+    month = rel.pop(0)
+    month = random_rainbow(month)
+    date = rel.pop(0)
+    date = ' '.join([cycle_color(i) for i in date.split(' ')])
+    today = os.popen('date +\'%d\'').read().strip()
+    # Display
+    print month
+    print date
+    for line in rel:
+        ary = line.split(' ')
+        ary = map(lambda x:on_grey(x) if x==today else grey(x),ary) 
+        print ' '.join(ary) 
+
+
 def help():
     """
     Help
@@ -875,71 +994,97 @@ def help():
     s = ' ' * 2
     h, w = os.popen('stty size', 'r').read().split()
 
+    # Start
     usage = '\n'
     usage += s + 'Hi boss! I\'m ready to serve you right now!\n'
     usage += s + '-' * (int(w) - 4) + '\n'
     usage += s + 'You are ' + yellow('already') + ' on your personal stream.\n'
+    usage += s + 'Any update from Twitter will show up ' + \
+        yellow('immediately') + '.\n'
+    usage += s + 'In addtion, following commands are available right now:\n'
 
+    # Discover the world
+    usage += '\n'
+    usage += s + grey(u'\u266A' + ' Discover the world \n')
     usage += s * 2 + green('trend') + ' will show global trending topics. ' + \
         'You can try ' + green('trend US') + ' or ' + \
         green('trend JP Tokyo') + '.\n'
     usage += s * 2 + green('home') + ' will show your timeline. ' + \
         green('home 7') + ' will show 7 tweets.\n'
-    usage += s * 2 + green('view @mdo') + \
-        ' will show ' + magenta('@mdo') + '\'s home.\n'
     usage += s * 2 + green('mentions') + ' will show mentions timeline. ' + \
         green('mentions 7') + ' will show 7 mention tweets.\n'
+    usage += s * 2 + green('whois @mdo') + ' will show profile  of ' + \
+        magenta('@mdo') + '.\n'
+    usage += s * 2 + green('view @mdo') + \
+        ' will show ' + magenta('@mdo') + '\'s home.\n'
+    usage += s * 2 + green('s #AKB48') + ' will search for "' + \
+        yellow('AKB48') + '" and return 5 newest tweet.\n'
+
+    # Tweet
+    usage += '\n'
+    usage += s + grey(u'\u266A' + ' Tweets \n')
     usage += s * 2 + green('t oops ') + \
         'will tweet "' + yellow('oops') + '" immediately.\n'
     usage += s * 2 + \
         green('rt 12 ') + ' will retweet to tweet with ' + \
         yellow('[id=12]') + '.\n'
     usage += s * 2 + \
-        green('fav 12 ') + ' will favorite the tweet with ' + \
+        green('allrt 12 20 ') + ' list 20 newest retweet of the tweet with ' + \
         yellow('[id=12]') + '.\n'
     usage += s * 2 + green('rep 12 oops') + ' will reply "' + \
         yellow('oops') + '" to tweet with ' + yellow('[id=12]') + '.\n'
     usage += s * 2 + \
-        green('del 12 ') + ' will delete tweet with ' + \
+        green('fav 12 ') + ' will favorite the tweet with ' + \
         yellow('[id=12]') + '.\n'
     usage += s * 2 + \
         green('ufav 12 ') + ' will unfavorite tweet with ' + \
         yellow('[id=12]') + '.\n'
-    usage += s * 2 + green('s #AKB48') + ' will search for "' + \
-        yellow('AKB48') + '" and return 5 newest tweet.\n'
-    usage += s * 2 + green('mes @dtvd88 hi') + ' will send a "hi" messege to ' + \
-        magenta('@dtvd88') + '.\n'
+    usage += s * 2 + \
+        green('del 12 ') + ' will delete tweet with ' + \
+        yellow('[id=12]') + '.\n'
     usage += s * 2 + green('show image 12') + ' will show image in tweet with ' + \
         yellow('[id=12]') + ' in your OS\'s image viewer.\n'
-    usage += s * 2 + \
-        green('ls fl') + \
-        ' will list all followers (people who are following you).\n'
-    usage += s * 2 + \
-        green('ls fr') + \
-        ' will list all friends (people who you are following).\n'
+
+    # Direct message
+    usage += '\n'
+    usage += s + grey(u'\u266A' + ' Direct messages \n')
     usage += s * 2 + green('inbox') + ' will show inbox messages. ' + \
         green('inbox 7') + ' will show newest 7 messages.\n'
     usage += s * 2 + green('sent') + ' will show sent messages. ' + \
         green('sent 7') + ' will show newest 7 messages.\n'
+    usage += s * 2 + green('mes @dtvd88 hi') + ' will send a "hi" messege to ' + \
+        magenta('@dtvd88') + '.\n'
     usage += s * 2 + green('trash 5') + ' will remove message with ' + \
         yellow('[message_id=5]') + '.\n'
-    usage += s * 2 + green('whois @dtvd88') + ' will show profile  of ' + \
-        magenta('@dtvd88') + '.\n'
+
+    # Follower and following
+    usage += '\n'
+    usage += s + grey(u'\u266A' + ' Fiends and followers \n')
+    usage += s * 2 + \
+        green('ls fl') + \
+        ' will list all followers (people who are following you).\n'
+    usage += s * 2 + \
+        green('ls fr') + \
+        ' will list all friends (people who you are following).\n'
     usage += s * 2 + green('fl @dtvd88') + ' will follow ' + \
         magenta('@dtvd88') + '.\n'
     usage += s * 2 + green('ufl @dtvd88') + ' will unfollow ' + \
         magenta('@dtvd88') + '.\n'
+    usage += s * 2 + green('mute @dtvd88') + ' will mute ' + \
+        magenta('@dtvd88') + '.\n'
+    usage += s * 2 + green('unmute @dtvd88') + ' will unmute ' + \
+        magenta('@dtvd88') + '.\n'
+    usage += s * 2 + green('muting') + ' will list muting users.\n'
     usage += s * 2 + green('block @dtvd88') + ' will block ' + \
         magenta('@dtvd88') + '.\n'
     usage += s * 2 + green('unblock @dtvd88') + ' will unblock ' + \
         magenta('@dtvd88') + '.\n'
     usage += s * 2 + green('report @dtvd88') + ' will report ' + \
         magenta('@dtvd88') + ' as a spam account.\n'
-    usage += s * 2 + green('h') + ' will show this help again.\n'
-    usage += s * 2 + green('c') + ' will clear the screen.\n'
-    usage += s * 2 + green('q') + ' will quit.\n'
 
-    usage += s + 'For switching streams: \n'
+    # Switch
+    usage += '\n'
+    usage += s + grey(u'\u266A' + ' Switching streams \n')
     usage += s * 2 + green('switch public #AKB') + \
         ' will switch to public stream and follow "' + \
         yellow('AKB') + '" keyword.\n'
@@ -955,8 +1100,25 @@ def help():
         ' will use the config\'s ONLY_LIST and IGNORE_LIST.\n'
     usage += s * 3 + '(see ' + grey('rainbowstream/config.py') + ').\n'
 
+    # Smart shell
+    usage += '\n'
+    usage += s + grey(u'\u266A' + ' Smart shell\n')
+    usage += s*2 + green('111111 * 9 / 7') + ' or any math expression ' + \
+        'will be evaluate by Python interpreter.\n'
+    usage += s*2 + 'Even ' + green('cal') + ' will show the calendar' + \
+        ' for current month.\n'
+
+    # Screening
+    usage += '\n'
+    usage += s + grey(u'\u266A' + ' Screening \n')
+    usage += s * 2 + green('h') + ' will show this help again.\n'
+    usage += s * 2 + green('c') + ' will clear the screen.\n'
+    usage += s * 2 + green('q') + ' will quit.\n'
+
+    # End
+    usage += '\n'
     usage += s + '-' * (int(w) - 4) + '\n'
-    usage += s + 'Have fun and hang tight!\n'
+    usage += s + 'Have fun and hang tight! \n'
     printNicely(usage)
 
 
@@ -984,6 +1146,10 @@ def reset():
     if g['reset']:
         printNicely(magenta('Need tips ? Type "h" and hit Enter key!'))
     g['reset'] = False
+    try:
+        print eval(g['cmd'])
+    except:
+        pass
 
 
 def process(cmd):
@@ -1000,6 +1166,7 @@ def process(cmd):
             mentions,
             tweet,
             retweet,
+            allretweet,
             favorite,
             reply,
             delete,
@@ -1014,9 +1181,13 @@ def process(cmd):
             whois,
             follow,
             unfollow,
+            mute,
+            unmute,
+            muting,
             block,
             unblock,
             report,
+            cal,
             help,
             clear,
             quit
@@ -1038,6 +1209,7 @@ def listen():
             [],  # mentions
             [],  # tweet
             [],  # retweet
+            [],  # allretweet
             [],  # favorite
             [],  # reply
             [],  # delete
@@ -1052,9 +1224,13 @@ def listen():
             ['@'],  # whois
             ['@'],  # follow
             ['@'],  # unfollow
+            ['@'],  # mute
+            ['@'],  # unmute
+            ['@'],  # muting
             ['@'],  # block
             ['@'],  # unblock
             ['@'],  # report
+            [],  # cal
             [],  # help
             [],  # clear
             [],  # quit
@@ -1072,6 +1248,7 @@ def listen():
             cmd = line.split()[0]
         except:
             cmd = ''
+        g['cmd'] = cmd
         # Save cmd to global variable and call process
         try:
             g['stuff'] = ' '.join(line.split()[1:])