From: Orakaro Date: Wed, 16 Jul 2014 12:52:56 +0000 (+0900) Subject: check config and little refactoring X-Git-Url: https://vcs.fsf.org/?p=rainbowstream.git;a=commitdiff_plain;h=8b8566d13f923932bee8eec9487d35956797b796 check config and little refactoring --- diff --git a/rainbowstream/config.py b/rainbowstream/config.py index 6aad12c..ff2d17d 100644 --- a/rainbowstream/config.py +++ b/rainbowstream/config.py @@ -46,7 +46,7 @@ try: for d in data: c[d] = data[d] except: - pass + print('It seems that ~/.rainbow_config.json has wrong format :(') # Load default theme theme_file = os.path.dirname( diff --git a/rainbowstream/rainbow.py b/rainbowstream/rainbow.py index f543b35..9444087 100644 --- a/rainbowstream/rainbow.py +++ b/rainbowstream/rainbow.py @@ -797,6 +797,23 @@ def report(): printNicely(red('Sorry I can\'t understand.')) +def get_slug(): + """ + Get Slug Decorator + """ + # Get list name + list_name = raw_input(light_magenta('Give me the list\'s name: ')) + # Get list name and owner + try: + owner, slug = list_name.split('/') + if slug.startswith('@'): + slug = slug[1:] + return owner, slug + except: + printNicely(light_magenta('List name should follow "@owner/list_name" format.')) + raise Exception('Wrong list name') + + def show_lists(t): """ List list @@ -812,16 +829,7 @@ def list_home(t): """ List home """ - # Get list name - list_name = raw_input(light_magenta('Give me the list\'s name: ')) - # Get list name and owner - try: - owner, slug = list_name.split('/') - if slug.startswith('@'): - slug = slug[1:] - except: - printNicely(light_magenta('Please follow "@owner/list_name" format.')) - return + owner, slug = get_slug() res = t.lists.statuses( slug=slug, owner_screen_name=owner, @@ -836,16 +844,7 @@ def list_members(t): """ List members """ - # Get list name - list_name = raw_input(light_magenta('Give me the list\'s name: ')) - # Get list name and owner - try: - owner, slug = list_name.split('/') - if slug.startswith('@'): - slug = slug[1:] - except: - printNicely(light_magenta('Please follow "@owner/list_name" format.')) - return + owner, slug = get_slug() # Get members rel = {} next_cursor = -1 @@ -869,16 +868,7 @@ def list_subscribers(t): """ List subscribers """ - # Get list name - list_name = raw_input(light_magenta('Give me the list\'s name: ')) - # Get list name and owner - try: - owner, slug = list_name.split('/') - if slug.startswith('@'): - slug = slug[1:] - except: - printNicely(light_magenta('Please follow "@owner/list_name" format.')) - return + owner, slug = get_slug() # Get subscribers rel = {} next_cursor = -1 @@ -902,16 +892,7 @@ def list_add(t): """ Add specific user to a list """ - # Get list name - list_name = raw_input(light_magenta('Give me the list\'s name: ')) - # Get list name and owner - try: - owner, slug = list_name.split('/') - if slug.startswith('@'): - slug = slug[1:] - except: - printNicely(light_magenta('Please follow "@owner/list_name" format.')) - return + owner, slug = get_slug() # Add user_name = raw_input(light_magenta('Give me name of the newbie: ')) if user_name.startswith('@'): @@ -930,16 +911,7 @@ 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: ')) - # Get list name and owner - try: - owner, slug = list_name.split('/') - if slug.startswith('@'): - slug = slug[1:] - except: - printNicely(light_magenta('Please follow "@owner/list_name" format.')) - return + owner, slug = get_slug() # Remove user_name = raw_input(light_magenta('Give me name of the unlucky one: ')) if user_name.startswith('@'): @@ -958,16 +930,7 @@ def list_subscribe(t): """ Subscribe to a list """ - # Get list name - list_name = raw_input(light_magenta('Give me the list\'s name: ')) - # Get list name and owner - try: - owner, slug = list_name.split('/') - if slug.startswith('@'): - slug = slug[1:] - except: - printNicely(light_magenta('Please follow "@owner/list_name" format.')) - return + owner, slug = get_slug() # Subscribe try: t.lists.subscribers.create( @@ -983,16 +946,7 @@ def list_unsubscribe(t): """ Unsubscribe a list """ - # Get list name - list_name = raw_input(light_magenta('Give me the list\'s name: ')) - # Get list name and owner - try: - owner, slug = list_name.split('/') - if slug.startswith('@'): - slug = slug[1:] - except: - printNicely(light_magenta('Please follow "@owner/list_name" format.')) - return + owner, slug = get_slug() # Subscribe try: t.lists.subscribers.destroy( @@ -1108,7 +1062,7 @@ def list(): try: return action_ary[g['list_action']](t) except: - printNicely(red('Sorry I can\'t understand.')) + printNicely(red('Please try again.')) def cal(): diff --git a/setup.py b/setup.py index f90a549..501457c 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages import os, sys # Bumped version -version = '0.3.8' +version = '0.3.9' # Require install_requires = [