8 from twitter
.util
import printNicely
9 from functools
import wraps
10 from pyfiglet
import figlet_format
11 from dateutil
import parser
12 from .c_image
import *
16 from .py3patch
import *
27 colors_shuffle
= [globals()[i
.encode('utf8')]
28 if not str(i
).isdigit()
29 else term_color(int(i
))
30 for i
in c
['CYCLE_COLOR']]
31 return itertools
.cycle(colors_shuffle
)
38 g
['cyc'] = init_cycle()
44 Print a string with ordered color with each character
46 colors_shuffle
= [globals()[i
.encode('utf8')]
47 if not str(i
).isdigit()
48 else term_color(int(i
))
49 for i
in c
['CYCLE_COLOR']]
50 colored
= [colors_shuffle
[i
% 7](s
[i
]) for i
in xrange(len(s
))]
51 return ''.join(colored
)
54 def random_rainbow(s
):
56 Print a string with random color with each character
58 colors_shuffle
= [globals()[i
.encode('utf8')]
59 if not str(i
).isdigit()
60 else term_color(int(i
))
61 for i
in c
['CYCLE_COLOR']]
62 colored
= [random
.choice(colors_shuffle
)(i
) for i
in s
]
63 return ''.join(colored
)
72 if args
not in g
['cache']:
73 g
['cache'][args
] = func(*args
)
74 return g
['cache'][args
]
81 Cycle the colors_shuffle
83 return next(g
['cyc'])(s
)
90 fi
= figlet_format(text
, font
='doom')
92 [next(g
['cyc'])(i
) for i
in fi
.split('\n')]
96 def show_calendar(month
, date
, rel
):
98 Show the calendar in rainbow mode
100 month
= random_rainbow(month
)
101 date
= ' '.join([cycle_color(i
) for i
in date
.split(' ')])
102 today
= str(int(os
.popen('date +\'%d\'').read().strip()))
107 ary
= line
.split(' ')
108 ary
= lmap(lambda x
: color_func(c
['CAL']['today'])(x
)
110 else color_func(c
['CAL']['days'])(x
), ary
)
111 printNicely(' '.join(ary
))
116 Check if config is changed
119 data
= get_all_config()
122 if data
[key
] != c
[key
]:
128 def validate_theme(theme
):
130 Validate a theme exists or not
132 # Theme changed check
133 files
= os
.listdir(os
.path
.dirname(__file__
) + '/colorset')
134 themes
= [f
.split('.')[0] for f
in files
if f
.split('.')[-1] == 'json']
135 return theme
in themes
138 def reload_theme(current_config
):
140 Check current theme and update if necessary
142 exists
= db
.theme_query()
143 themes
= [t
.theme_name
for t
in exists
]
144 if current_config
!= themes
[0]:
145 config
= os
.path
.dirname(
146 __file__
) + '/colorset/' + current_config
+ '.json'
148 data
= load_config(config
)
152 # Restart color cycle and update db/config
154 db
.theme_update(current_config
)
155 set_config('THEME', current_config
)
158 def color_func(func_name
):
160 Call color function base on name
162 if str(func_name
).isdigit():
163 return term_color(int(func_name
))
164 return globals()[func_name
]
167 def draw(t
, keyword
=None, check_semaphore
=False, fil
=[], ig
=[]):
173 reload_theme(c
['THEME'])
177 screen_name
= t
['user']['screen_name']
178 name
= t
['user']['name']
179 created_at
= t
['created_at']
180 favorited
= t
['favorited']
181 date
= parser
.parse(created_at
)
182 date
= date
- datetime
.timedelta(seconds
=time
.timezone
)
183 clock_format
= '%Y/%m/%d %H:%M:%S'
185 clock_format
= c
['FORMAT']['TWEET']['CLOCK_FORMAT']
188 clock
= date
.strftime(clock_format
)
190 # Pull extended retweet text
192 text
= 'RT @' + t
['retweeted_status']['user']['screen_name'] + ': ' +\
193 t
['retweeted_status']['text']
197 # Unescape HTML character
198 text
= unescape(text
)
204 urls
= t
['entities']['urls']
206 expanded_url
.append(u
['expanded_url'])
215 media
= t
['entities']['media']
217 media_url
.append(m
['media_url'])
222 screen_name
= '@' + screen_name
223 if fil
and screen_name
not in fil
:
225 if ig
and screen_name
in ig
:
229 res
= db
.tweet_to_rainbow_query(tid
)
232 res
= db
.tweet_to_rainbow_query(tid
)
233 rid
= res
[0].rainbow_id
236 name
= cycle_color(name
)
237 nick
= color_func(c
['TWEET']['nick'])(' ' + screen_name
+ ' ')
238 clock
= color_func(c
['TWEET']['clock'])('[' + clock
+ ']')
239 id = color_func(c
['TWEET']['id'])('[id=' + str(rid
) + ']')
242 fav
= color_func(c
['TWEET']['favorited'])(u
'\u2605')
247 for index
in range(len(expanded_url
)):
249 lambda x
: expanded_url
[index
] if x
== url
[index
] else x
,
253 lambda x
: color_func(
254 c
['TWEET']['rt'])(x
) if x
== 'RT' else x
,
256 # Highlight screen_name
257 tweet
= lmap(lambda x
: cycle_color(x
) if x
[0] == '@' else x
, tweet
)
260 lambda x
: color_func(
261 c
['TWEET']['link'])(x
) if x
[
262 0:4] == 'http' else x
,
266 tweet
= ' '.join(tweet
)
268 roj
= re
.search(keyword
, tweet
, re
.IGNORECASE
)
271 ary
= tweet
.split(occur
)
272 delimiter
= color_func(c
['TWEET']['keyword'])(occur
)
273 tweet
= delimiter
.join(ary
)
275 # Load config formater
277 formater
= c
['FORMAT']['TWEET']['DISPLAY']
278 formater
= name
.join(formater
.split("#name"))
279 formater
= nick
.join(formater
.split("#nick"))
280 formater
= clock
.join(formater
.split("#clock"))
281 formater
= id.join(formater
.split("#id"))
282 formater
= fav
.join(formater
.split("#fav"))
283 formater
= tweet
.join(formater
.split("#tweet"))
285 printNicely(red('Wrong format in config.'))
288 # Check the semaphore lock
290 while db
.semaphore_query():
294 printNicely(formater
)
297 if c
['IMAGE_ON_TERM'] and media_url
:
300 response
= requests
.get(mu
)
301 image_to_display(BytesIO(response
.content
))
303 printNicely(red('Sorry, image link is broken'))
306 def print_message(m
):
310 sender_screen_name
= '@' + m
['sender_screen_name']
311 sender_name
= m
['sender']['name']
312 text
= unescape(m
['text'])
313 recipient_screen_name
= '@' + m
['recipient_screen_name']
314 recipient_name
= m
['recipient']['name']
316 date
= parser
.parse(m
['created_at'])
317 date
= date
- datetime
.timedelta(seconds
=time
.timezone
)
318 clock_format
= '%Y/%m/%d %H:%M:%S'
320 clock_format
= c
['FORMAT']['MESSAGE']['CLOCK_FORMAT']
323 clock
= date
.strftime(clock_format
)
326 res
= db
.message_to_rainbow_query(mid
)
328 db
.message_store(mid
)
329 res
= db
.message_to_rainbow_query(mid
)
330 rid
= res
[0].rainbow_id
333 sender_name
= cycle_color(sender_name
)
334 sender_nick
= color_func(c
['MESSAGE']['sender'])(sender_screen_name
)
335 recipient_name
= cycle_color(recipient_name
)
336 recipient_nick
= color_func(c
['MESSAGE']['recipient'])(recipient_screen_name
)
337 to
= color_func(c
['MESSAGE']['to'])('>>>')
338 clock
= color_func(c
['MESSAGE']['clock'])('[' + clock
+ ']')
339 id = color_func(c
['MESSAGE']['id'])('[message_id=' + str(rid
) + ']')
341 text
= ''.join(lmap(lambda x
: x
+ ' ' if x
== '\n' else x
, text
))
343 # Load config formater
345 formater
= c
['FORMAT']['MESSAGE']['DISPLAY']
346 formater
= sender_name
.join(formater
.split("#sender_name"))
347 formater
= sender_nick
.join(formater
.split("#sender_nick"))
348 formater
= to
.join(formater
.split("#to"))
349 formater
= recipient_name
.join(formater
.split("#recipient_name"))
350 formater
= recipient_nick
.join(formater
.split("#recipient_nick"))
351 formater
= clock
.join(formater
.split("#clock"))
352 formater
= id.join(formater
.split("#id"))
353 formater
= text
.join(formater
.split("#message"))
355 printNicely(red('Wrong format in config.'))
359 printNicely(formater
)
368 screen_name
= u
['screen_name']
369 description
= u
['description']
370 profile_image_url
= u
['profile_image_url']
371 location
= u
['location']
373 created_at
= u
['created_at']
374 statuses_count
= u
['statuses_count']
375 friends_count
= u
['friends_count']
376 followers_count
= u
['followers_count']
379 statuses_count
= color_func(
380 c
['PROFILE']['statuses_count'])(
381 str(statuses_count
) +
383 friends_count
= color_func(
384 c
['PROFILE']['friends_count'])(
387 followers_count
= color_func(
388 c
['PROFILE']['followers_count'])(
389 str(followers_count
) +
391 count
= statuses_count
+ ' ' + friends_count
+ ' ' + followers_count
393 name
) + color_func(c
['PROFILE']['nick'])(' @' + screen_name
+ ' : ') + count
394 profile_image_raw_url
= 'Profile photo: ' + \
395 color_func(c
['PROFILE']['profile_image_url'])(profile_image_url
)
396 description
= ''.join(
397 lmap(lambda x
: x
+ ' ' * 4 if x
== '\n' else x
, description
))
398 description
= color_func(c
['PROFILE']['description'])(description
)
399 location
= 'Location : ' + color_func(c
['PROFILE']['location'])(location
)
400 url
= 'URL : ' + (color_func(c
['PROFILE']['url'])(url
) if url
else '')
401 date
= parser
.parse(created_at
)
402 date
= date
- datetime
.timedelta(seconds
=time
.timezone
)
403 clock
= date
.strftime('%Y/%m/%d %H:%M:%S')
404 clock
= 'Join at ' + color_func(c
['PROFILE']['clock'])(clock
)
407 line1
= u
"{u:>{uw}}".format(
411 line2
= u
"{p:>{pw}}".format(
412 p
=profile_image_raw_url
,
413 pw
=len(profile_image_raw_url
) + 4,
415 line3
= u
"{d:>{dw}}".format(
417 dw
=len(description
) + 4,
419 line4
= u
"{l:>{lw}}".format(
421 lw
=len(location
) + 4,
423 line5
= u
"{u:>{uw}}".format(
427 line6
= u
"{c:>{cw}}".format(
435 if c
['IMAGE_ON_TERM']:
437 response
= requests
.get(profile_image_url
)
438 image_to_display(BytesIO(response
.content
), 2, 20)
443 for line
in [line3
, line4
, line5
, line6
]:
448 def print_trends(trends
):
452 for topic
in trends
[:c
['TREND_MAX']]:
455 line
= cycle_color(name
) + ': ' + color_func(c
['TREND']['url'])(url
)
460 def print_list(group
):
466 name
= g
['full_name']
467 name
= color_func(c
['GROUP']['name'])(name
+ ' : ')
468 member
= str(g
['member_count'])
469 member
= color_func(c
['GROUP']['member'])(member
+ ' member')
470 subscriber
= str(g
['subscriber_count'])
471 subscriber
= color_func(
472 c
['GROUP']['subscriber'])(
475 description
= g
['description'].strip()
476 description
= color_func(c
['GROUP']['description'])(description
)
478 mode
= color_func(c
['GROUP']['mode'])('Type: ' + mode
)
479 created_at
= g
['created_at']
480 date
= parser
.parse(created_at
)
481 date
= date
- datetime
.timedelta(seconds
=time
.timezone
)
482 clock
= date
.strftime('%Y/%m/%d %H:%M:%S')
483 clock
= 'Created at ' + color_func(c
['GROUP']['clock'])(clock
)
486 line1
= ' ' * 2 + name
+ member
+ ' ' + subscriber
487 line2
= ' ' * 4 + description
488 line3
= ' ' * 4 + mode
489 line4
= ' ' * 4 + clock
501 # Start the color cycle