add list support and seperate help
authorOrakaro <nhatminh_179@hotmail.com>
Sat, 12 Jul 2014 15:18:39 +0000 (00:18 +0900)
committerOrakaro <nhatminh_179@hotmail.com>
Sat, 12 Jul 2014 15:18:39 +0000 (00:18 +0900)
12 files changed:
README.md
README.rst
docs/index.rst
rainbowstream/colorset/default.json
rainbowstream/colorset/larapaste.json
rainbowstream/colorset/monokai.json
rainbowstream/colorset/solarized.json
rainbowstream/colorset/tomorrow_night.json
rainbowstream/db.py
rainbowstream/draw.py
rainbowstream/rainbow.py
rainbowstream/table_def.py

index d5b53effba1c8df9a810a94df7d2f1b4ab25ea1a..b29ef69868e5187abd3384aa177a0909e7459c7e 100644 (file)
--- a/README.md
+++ b/README.md
@@ -95,6 +95,8 @@ CONSUMER_SECRET = 'APISecret' # Your Twitter application's API secret
 * Use pip to install in local
 ```bash
 # cd to directory which contains setup.py
+virtualenv venv # Python3 users: use -p to specify python3
+source venv/bin/activate
 pip install -e .
 pip list | grep rainbowstream # confirm installed version
 rainbowstream # local version of rainbowstream
index d97214f6417f328895a2bd746416f0a82dd4235e..b73506bc13a75f92dc3b40db85bcef82705a6d54 100644 (file)
@@ -110,6 +110,36 @@ Bug and feature requests
 Found a bug or a feature request ?\r
 Please `create an issue`_ or contact me at `@dtvd88`_\r
 \r
+Development\r
+-----------\r
+\r
+If you want to build a runnable version yourself, follow these simple\r
+steps\r
+\r
+-  `Create your own Twitter Application`_\r
+-  Get your Twitter application’s API key and secret\r
+-  Fork github's repo\r
+-  Create a file ``consumer.py`` in ```rainbowstream```_ folder with\r
+   following content\r
+\r
+   .. code:: python\r
+\r
+       # Consumer information\r
+       CONSUMER_KEY = 'APIKey' # Your Twitter application's API key\r
+       CONSUMER_SECRET = 'APISecret' # Your Twitter application's API secret\r
+\r
+-  Use pip to install in local\r
+\r
+   .. code:: bash\r
+\r
+       # cd to directory which contains setup.py\r
+       virtualenv venv # Python3 users: use -p to specify python3\r
+       source venv/bin/activate\r
+       pip install -e .\r
+       pip list | grep rainbowstream # confirm installed version\r
+       rainbowstream # local version of rainbowstream\r
+\r
+\r
 Contributing\r
 ------------\r
 I appreciate any help and support. Feel free to `fork`_ and `create a pull request`_.\r
@@ -131,3 +161,5 @@ details
 .. _Read The Docs: http://rainbowstream.readthedocs.org/en/latest/\r
 .. _config guide: https://github.com/DTVD/rainbowstream/blob/master/theme.md\r
 .. _theme usage and customization: https://github.com/DTVD/rainbowstream/blob/master/theme.md\r
+.. _Create your own Twitter Application: https://apps.twitter.com/app/new\r
+.. _``rainbowstream``: https://github.com/DTVD/rainbowstream/tree/master/rainbowstream\r
index 55c9092719f69ffd4ad78bae63588850537c0431..e4ed9a0d6cbc895ded85426770075b20944eaa7b 100644 (file)
@@ -178,11 +178,11 @@ Here is full list of supported command:
 \r
 **Screening Commands**\r
 \r
--  ``theme`` will list available themes. \r
-  \r
+-  ``theme`` will list available themes.\r
+\r
   + ``theme monokai`` will apply *monokai* theme immedaitely.\r
   + ``theme current_as_default`` will remember current theme as next time default.\r
-  \r
+\r
 -  ``h`` will show the help.\r
 \r
 -  ``c`` will clear the screen.\r
@@ -221,7 +221,37 @@ Theme’s screenshot:
 \r
 For detaile information, see `theme usage and customization`_.\r
 \r
+Development\r
+-----------\r
+\r
+If you want to build a runnable version yourself, follow these simple\r
+steps\r
+\r
+-  `Create your own Twitter Application`_\r
+-  Get your Twitter application’s API key and secret\r
+-  Fork github's repo\r
+-  Create a file ``consumer.py`` in ```rainbowstream```_ folder with\r
+   following content\r
+\r
+   .. code:: python\r
+\r
+       # Consumer information\r
+       CONSUMER_KEY = 'APIKey' # Your Twitter application's API key\r
+       CONSUMER_SECRET = 'APISecret' # Your Twitter application's API secret\r
+\r
+-  Use pip to install in local\r
+\r
+   .. code:: bash\r
+\r
+       # cd to directory which contains setup.py\r
+       virtualenv venv # Python3 users: use -p to specify python3\r
+       source venv/bin/activate\r
+       pip install -e .\r
+       pip list | grep rainbowstream # confirm installed version\r
+       rainbowstream # local version of rainbowstream\r
 \r
+.. _Create your own Twitter Application: https://apps.twitter.com/app/new\r
+.. _``rainbowstream``: https://github.com/DTVD/rainbowstream/tree/master/rainbowstream\r
 .. _Python Twitter Tool: http://mike.verdone.ca/twitter/\r
 .. _Twitter API: https://dev.twitter.com/docs/api/1.1\r
 .. _theme usage and customization: https://github.com/DTVD/rainbowstream/blob/master/theme.md\r
index 65bc20c4a160742412c58c7d6559fe2133ba8fbb..f2b23a4d35293452ad9691ec834061934efd555f 100644 (file)
@@ -9,6 +9,8 @@
     "MESSAGES_DISPLAY" : 5,
     // 'trend': max trending topics
     "TREND_MAX" : 10,
+    // List home timeline max
+    "LIST_MAX" : 5,
     // 'switch': Filter and Ignore list ex: ['@fat','@mdo']
     "ONLY_LIST" : [],
     "IGNORE_LIST" : [],
     "CAL" : {
         "days": "grey",
         "today": "on_grey"
+    },
+
+    "GROUP" : {
+        "name": "grey",
+        "member": "light_green",
+        "subscriber": "light_green",
+        "mode": "grey",
+        "description": "light_yellow",
+        "clock": "grey"
     }
 }
index ed69b077ef7c17aa04ea159d55274b02b07d97f1..990b4f802fefc07195d3cfca5b5ff8c47f35ea4a 100644 (file)
     "CAL" : {
         "days": "term_209",
         "today": "on_light_magenta"
+    },
+
+    "GROUP" : {
+        "name": "term_73",
+        "member": "term_220",
+        "subscriber": "term_73",
+        "mode": "term_59",
+        "description": "term_230",
+        "clock": "term_220"
     }
 }
index 7d9a7bf90942dde8a06f7d709c489b3c31f42f86..dc71fda58fe2c3eb26d41b7efc87a60bae07461e 100644 (file)
     "CAL" : {
         "days": "term_57",
         "today": "on_light_blue"
+    },
+
+    "GROUP" : {
+        "name": "term_112",
+        "member": "term_57",
+        "subscriber": "term_198",
+        "mode": "term_112",
+        "description": "term_166",
+        "clock": "term_57"
     }
 }
index 071db1da2719d25ff22f1cc3573acc9f7a693ab5..b3b3c2cc65cf38c9ae2a171960d40caad10332c6 100644 (file)
     "CAL" : {
         "days": "term_64",
         "today": "light_green"
+    },
+
+    "GROUP" : {
+        "name": "term_64",
+        "member": "term_130",
+        "subscriber": "term_32",
+        "mode": "term_164",
+        "description": "term_66",
+        "clock": "term_32"
     }
 }
index ecc5fd8c9d266ea390242fd73b02295a672a6b06..9dcd03aeb4ea3bbb286751e0cfc1a8457f97573b 100644 (file)
     "CAL" : {
         "days": "term_103",
         "today": "on_light_blue"
+    },
+
+    "GROUP" : {
+        "name": "term_103",
+        "member": "term_179",
+        "subscriber": "term_30",
+        "mode": "term_54",
+        "description": "term_58",
+        "clock": "term_173"
     }
 }
index 5bfb04081c715ad1b8f2690b1527a42987e9222a..2ab23bce0e80a371f05792886c32644a6e82e991 100644 (file)
@@ -98,3 +98,23 @@ class RainbowDB():
         session = Session()
         res = session.query(Theme).all()
         return res
+
+    def list_store(self, list_id, list_name):
+        """
+        Store list id and name
+        """
+        Session = sessionmaker(bind=self.engine)
+        session = Session()
+        l = List(list_id, list_name)
+        session.add(l)
+        session.commit()
+
+    def list_name_to_id_query(self, list_name):
+        """
+        Query base of list id
+        """
+        Session = sessionmaker(bind=self.engine)
+        session = Session()
+        res = session.query(List).filter_by(list_name=list_name).all()
+        return res
+
index 57e7867497265c4aea9d7ffea54c3ffbac7e045f..1b241c3fb6315541fe6c72e894b73bf133fd1701 100644 (file)
@@ -411,3 +411,81 @@ def print_trends(trends):
         line = cycle_color(name) + ': ' + color_func(c['TREND']['url'])(url)
         printNicely(line)
     printNicely('')
+
+
+def print_list(group):
+    """
+    Display a list
+    """
+    for g in group:
+        # Format
+        name = g['name']
+        name = color_func(c['GROUP']['name'])(name + ' : ')
+        member = str(g['member_count'])
+        member = color_func(c['GROUP']['member'])(member+' member')
+        subscriber = str(g['subscriber_count'])
+        subscriber = color_func(c['GROUP']['subscriber'])(subscriber+' subscriber')
+        description = g['description'].strip()
+        description = color_func(c['GROUP']['description'])(description)
+        mode = g['mode']
+        mode = color_func(c['GROUP']['mode'])('Type: '+mode)
+        created_at = g['created_at']
+        date = parser.parse(created_at)
+        date = date - datetime.timedelta(seconds=time.timezone)
+        clock = date.strftime('%Y/%m/%d %H:%M:%S')
+        clock = 'Created at ' + color_func(c['GROUP']['clock'])(clock)
+
+        # Save to db
+        db.list_store(g['id'],g['name'])
+
+        # Create lines
+        line1 = ' '*2 + name + member + '  ' + subscriber
+        line2 = ' '*4 + description
+        line3 = ' '*4 + mode
+        line4 = ' '*4 + clock
+
+        # Display
+        printNicely('')
+        printNicely(line1)
+        printNicely(line2)
+        printNicely(line3)
+        printNicely(line4)
+
+    printNicely('')
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
index 43466ec61213f3c4a1138ef53b75d2823939bb85..3ecd9a6920a1b15af61956f73435352143d77a34 100644 (file)
@@ -60,6 +60,7 @@ cmdset = [
     'block',
     'unblock',
     'report',
+    'list',
     'cal',
     'theme',
     'h',
@@ -514,7 +515,7 @@ def urlopen():
         printNicely(red('Sorry I can\'t open url in this tweet.'))
 
 
-def list():
+def ls():
     """
     List friends for followers
     """
@@ -550,9 +551,10 @@ def list():
             rel[u['name']] = '@' + u['screen_name']
         next_cursor = list['next_cursor']
     # Print out result
-    printNicely('All: ' + str(len(rel)) + ' people.')
+    printNicely('All: ' + str(len(rel)) + ' ' + d[target] + '.')
     for name in rel:
-        user = '  ' + cycle_color(name) + grey(' ' + rel[name] + ' ')
+        user = '  ' + cycle_color(name)
+        user +=  color_func(c['TWEET']['nick'])(' ' + rel[name] + ' ')
         printNicely(user)
 
 
@@ -744,7 +746,8 @@ def muting():
     # Print out result
     printNicely('All: ' + str(len(rel)) + ' people.')
     for name in rel:
-        user = '  ' + cycle_color(name) + grey(' ' + rel[name] + ' ')
+        user = '  ' + cycle_color(name)
+        user +=  color_func(c['TWEET']['nick'])(' ' + rel[name] + ' ')
         printNicely(user)
 
 
@@ -794,6 +797,139 @@ def report():
         printNicely(red('Sorry I can\'t understand.'))
 
 
+def show_lists(t):
+    """
+    list list
+    """
+    rel = t.lists.list(screen_name=g['original_name'])
+    if rel:
+        print_list(rel)
+    else:
+        printNicely(light_magenta('You belong to no lists :)'))
+
+
+def list_home(t):
+    """
+    List home
+    """
+    # Get list name
+    list_name = raw_input(light_magenta('Give me the list\'s name: '))
+    if not list_name:
+        printNicely(light_magenta('No list specified.'))
+        return
+    # Print timeline
+    l = db.list_name_to_id_query(list_name)[0]
+    res = t.lists.statuses(
+        list_id = l.list_id,
+        count = c['LIST_MAX'],
+        include_entities=False)
+    for tweet in res:
+        draw(t=tweet)
+    printNicely('')
+
+
+def list_members(t):
+    """
+    List members
+    """
+    # Get list name
+    list_name = raw_input(light_magenta('Give me the list\'s name: '))
+    if not list_name:
+        printNicely(light_magenta('No list specified.'))
+        return
+    # Members
+    l = db.list_name_to_id_query(list_name)[0]
+    rel = {}
+    next_cursor = -1
+    while next_cursor != 0 :
+        m = t.lists.members(
+            list_id = l.list_id,
+            cursor = next_cursor,
+            include_entities=False)
+        for u in m['users']:
+            rel[u['name']] = '@' + u['screen_name']
+        next_cursor = m['next_cursor']
+    printNicely('All: ' + str(len(rel)) + ' members.')
+    for name in rel:
+        user = '  ' + cycle_color(name)
+        user +=  color_func(c['TWEET']['nick'])(' ' + rel[name] + ' ')
+        printNicely(user)
+
+
+def list_subscribers(t):
+    """
+    List subscribers
+    """
+    # Get list name
+    list_name = raw_input(light_magenta('Give me the list\'s name: '))
+    if not list_name:
+        printNicely(light_magenta('No list specified.'))
+        return
+    # Subscribers
+    l = db.list_name_to_id_query(list_name)[0]
+    rel = {}
+    next_cursor = -1
+    while next_cursor != 0 :
+        m = t.lists.subscribers(
+            list_id = l.list_id,
+            cursor = next_cursor,
+            include_entities=False)
+        for u in m['users']:
+            rel[u['name']] = '@' + u['screen_name']
+        next_cursor = m['next_cursor']
+    printNicely('All: ' + str(len(rel)) + ' subscribers.')
+    for name in rel:
+        user = '  ' + cycle_color(name)
+        user +=  color_func(c['TWEET']['nick'])(' ' + rel[name] + ' ')
+        printNicely(user)
+
+
+def list_remove(t):
+    """
+    Remove specific user from a list
+    """
+    # Get list name
+    list_name = raw_input(light_magenta('Give me the list\'s name: '))
+    if not list_name:
+        printNicely(light_magenta('No list specified.'))
+        return
+    # Remove
+    l = db.list_name_to_id_query(list_name)[0]
+    user_name = raw_input(light_magenta('Give me the name of unlucky man: '))
+    try:
+        t.lists.members.destroy(
+            list_id = l.list_id,
+            screen_name = user_name)
+        printNicely(light_green('Okay he\'s gone :)'))
+    except:
+        printNicely(light_magenta('I\'m sorry we can not remove him.'))
+
+
+def list():
+    """
+    Twitter's list
+    """
+    t = Twitter(auth=authen())
+    # List all lists or base on action
+    try:
+        g['list_action'] = g['stuff'].split()[0]
+    except:
+        show_lists(t)
+        return
+
+    # Sub function
+    action_ary = {
+        'home': list_home,
+        'all_mem': list_members,
+        'all_sub': list_subscribers,
+        'rm': list_remove,
+    }
+    try:
+        return action_ary[g['list_action']](t)
+    except:
+        printNicely(red('Sorry I can\'t understand.'))
+
+
 def cal():
     """
     Unix's command `cal`
@@ -869,25 +1005,13 @@ def theme():
                 printNicely(red('No such theme exists.'))
 
 
-def help():
+def help_discover():
     """
-    Help
+    Discover the world
     """
     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 ' + \
-        light_yellow('already') + ' on your personal stream.\n'
-    usage += s + 'Any update from Twitter will show up ' + \
-        light_yellow('immediately') + '.\n'
-    usage += s + 'In addtion, following commands are available right now:\n'
-
     # Discover the world
-    usage += '\n'
+    usage = '\n'
     usage += s + grey(u'\u266A' + ' Discover the world \n')
     usage += s * 2 + light_green('trend') + ' will show global trending topics. ' + \
         'You can try ' + light_green('trend US') + ' or ' + \
@@ -902,9 +1026,16 @@ def help():
         ' will show ' + magenta('@mdo') + '\'s home.\n'
     usage += s * 2 + light_green('s #AKB48') + ' will search for "' + \
         light_yellow('AKB48') + '" and return 5 newest tweet.\n'
+    printNicely(usage)
+
 
+def help_tweets():
+    """
+    Tweets
+    """
+    s = ' ' * 2
     # Tweet
-    usage += '\n'
+    usage = '\n'
     usage += s + grey(u'\u266A' + ' Tweets \n')
     usage += s * 2 + light_green('t oops ') + \
         'will tweet "' + light_yellow('oops') + '" immediately.\n'
@@ -934,9 +1065,16 @@ def help():
         light_yellow('[id=12]') + ' in your OS\'s image viewer.\n'
     usage += s * 2 + light_green('open 12') + ' will open url in tweet with ' + \
         light_yellow('[id=12]') + ' in your OS\'s default browser.\n'
+    printNicely(usage)
 
+
+def help_messages():
+    """
+    Messages
+    """
+    s = ' ' * 2
     # Direct message
-    usage += '\n'
+    usage = '\n'
     usage += s + grey(u'\u266A' + ' Direct messages \n')
     usage += s * 2 + light_green('inbox') + ' will show inbox messages. ' + \
         light_green('inbox 7') + ' will show newest 7 messages.\n'
@@ -946,9 +1084,16 @@ def help():
         magenta('@dtvd88') + '.\n'
     usage += s * 2 + light_green('trash 5') + ' will remove message with ' + \
         light_yellow('[message_id=5]') + '.\n'
+    printNicely(usage)
 
+
+def help_friends_and_followers():
+    """
+    Friends and Followers
+    """
+    s = ' ' * 2
     # Follower and following
-    usage += '\n'
+    usage = '\n'
     usage += s + grey(u'\u266A' + ' Friends and followers \n')
     usage += s * 2 + \
         light_green('ls fl') + \
@@ -971,9 +1116,38 @@ def help():
         magenta('@dtvd88') + '.\n'
     usage += s * 2 + light_green('report @dtvd88') + ' will report ' + \
         magenta('@dtvd88') + ' as a spam account.\n'
+    printNicely(usage)
+
+
+def help_list():
+    """
+    Lists
+    """
+    s = ' ' * 2
+    # Twitter list
+    usage = '\n'
+    usage += s + grey(u'\u266A' + ' Twitter list\n')
+    usage += s * 2 + light_green('list') + \
+        ' will show all lists you are belong to.\n'
+    usage += s * 2 + light_green('list home') + \
+        ' will show timeline of list. You will be asked for list\'s name\n'
+    usage += s * 2 + light_green('list mem') + \
+        ' will show list\'s all members.\n'
+    usage += s * 2 + light_green('list sub') + \
+        ' will show list\'s all subscribers.\n'
+    usage += s * 2 + light_green('list rm') + \
+        ' will remove specific person from a list owned by you.' + \
+        ' You will be asked for list\'s name and person\'s name.\n'
+    printNicely(usage)
 
+
+def help_stream():
+    """
+    Stream switch
+    """
+    s = ' ' * 2
     # Switch
-    usage += '\n'
+    usage = '\n'
     usage += s + grey(u'\u266A' + ' Switching streams \n')
     usage += s * 2 + light_green('switch public #AKB') + \
         ' will switch to public stream and follow "' + \
@@ -988,6 +1162,41 @@ def help():
         ' filter will decide nicks will be EXCLUDE.\n'
     usage += s * 2 + light_green('switch mine -d') + \
         ' will use the config\'s ONLY_LIST and IGNORE_LIST.\n'
+    printNicely(usage)
+
+
+def help():
+    """
+    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 ' + \
+        light_yellow('already') + ' on your personal stream.\n'
+    usage += s + 'Any update from Twitter will show up ' + \
+        light_yellow('immediately') + '.\n'
+    usage += s + 'In addtion, following commands are available right now:\n'
+
+    # Twitter help section
+    usage += '\n'
+    usage += s + grey(u'\u266A' + ' Twitter help\n')
+    usage += s * 2 + light_green('h discover') + \
+        ' will show help for discover commands.\n'
+    usage += s * 2 + light_green('h tweets') + \
+        ' will show help for tweets commands.\n'
+    usage += s * 2 + light_green('h messages') + \
+        ' will show help for messages commands.\n'
+    usage += s * 2 + light_green('h friends_and_followers') + \
+        ' will show help for friends and followers commands.\n'
+    usage += s * 2 + light_green('h list') + \
+        ' will show help for list commands.\n'
+    usage += s * 2 + light_green('h stream') + \
+        ' will show help for stream commands.\n'
 
     # Smart shell
     usage += '\n'
@@ -1011,7 +1220,20 @@ def help():
     usage += '\n'
     usage += s + '-' * (int(w) - 4) + '\n'
     usage += s + 'Have fun and hang tight! \n'
-    printNicely(usage)
+
+    # Show help
+    d = {
+        'discover' : help_discover,
+        'tweets' : help_tweets,
+        'messages' : help_messages,
+        'friends_and_followers' : help_friends_and_followers,
+        'list' : help_list,
+        'stream' : help_stream,
+    }
+    if g['stuff']:
+        d[g['stuff'].strip()]()
+    else:
+        printNicely(usage)
 
 
 def clear():
@@ -1068,7 +1290,7 @@ def process(cmd):
             message,
             show,
             urlopen,
-            list,
+            ls,
             inbox,
             sent,
             trash,
@@ -1081,6 +1303,7 @@ def process(cmd):
             block,
             unblock,
             report,
+            list,
             cal,
             theme,
             help,
@@ -1127,9 +1350,10 @@ def listen():
             ['@'],  # block
             ['@'],  # unblock
             ['@'],  # report
+            ['home','all_mem','all_sub','rm'],  # list
             [],  # cal
             g['themes'] + ['current_as_default'],  # theme
-            [],  # help
+            ['discover','tweets','messages','friends_and_followers','list','stream'],  # help
             [],  # clear
             [],  # quit
         ]
@@ -1151,8 +1375,7 @@ def listen():
         try:
             g['stuff'] = ' '.join(line.split()[1:])
             process(cmd)()
-        except Exception,e :
-            print e
+        except Exception:
             printNicely(red('OMG something is wrong with Twitter right now.'))
         # Not redisplay prefix
         if cmd in ['switch', 't', 'rt', 'rep']:
index fda3948dfbe0ad06d8bf77e08c1d296fbca93862..28bbfc9000fa8658f7bd39285e30bd53e4760702 100644 (file)
@@ -38,5 +38,18 @@ class Theme(Base):
         self.theme_name = theme_name
 
 
+class List(Base):
+
+    __tablename__ = "list"
+
+    list_rid = Column(Integer, primary_key=True)
+    list_id = Column(Integer)
+    list_name = Column(String(50))
+
+    def __init__(self, list_id, list_name):
+        self.list_id = list_id
+        self.list_name = list_name
+
+
 def init_db():
     Base.metadata.create_all(engine)