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 *
32 colors_shuffle
= [globals()[i
.encode('utf8')]
33 if not str(i
).isdigit()
34 else term_color(int(i
))
35 for i
in c
['CYCLE_COLOR']]
36 return itertools
.cycle(colors_shuffle
)
43 g
['cyc'] = init_cycle()
49 Print a string with ordered color with each character
51 colors_shuffle
= [globals()[i
.encode('utf8')]
52 if not str(i
).isdigit()
53 else term_color(int(i
))
54 for i
in c
['CYCLE_COLOR']]
55 colored
= [colors_shuffle
[i
% 7](s
[i
]) for i
in xrange(len(s
))]
56 return ''.join(colored
)
59 def random_rainbow(s
):
61 Print a string with random color with each character
63 colors_shuffle
= [globals()[i
.encode('utf8')]
64 if not str(i
).isdigit()
65 else term_color(int(i
))
66 for i
in c
['CYCLE_COLOR']]
67 colored
= [random
.choice(colors_shuffle
)(i
) for i
in s
]
68 return ''.join(colored
)
77 if args
not in g
['cache']:
78 g
['cache'][args
] = func(*args
)
79 return g
['cache'][args
]
86 Cycle the colors_shuffle
88 return next(g
['cyc'])(s
)
95 fi
= figlet_format(text
, font
='doom')
97 [next(g
['cyc'])(i
) for i
in fi
.split('\n')]
101 def show_calendar(month
, date
, rel
):
103 Show the calendar in rainbow mode
105 month
= random_rainbow(month
)
106 date
= ' '.join([cycle_color(i
) for i
in date
.split(' ')])
107 today
= str(int(os
.popen('date +\'%d\'').read().strip()))
112 ary
= line
.split(' ')
113 ary
= lmap(lambda x
: color_func(c
['CAL']['today'])(x
)
115 else color_func(c
['CAL']['days'])(x
), ary
)
116 printNicely(' '.join(ary
))
121 Check current theme and update if necessary
123 exists
= db
.theme_query()
124 themes
= [t
.theme_name
for t
in exists
]
125 if c
['THEME'] != themes
[0]:
126 c
['THEME'] = themes
[0]
127 config
= os
.path
.dirname(
128 __file__
) + '/colorset/' + c
['THEME'] + '.json'
130 data
= load_config(config
)
134 # Re-init color cycle
135 g
['cyc'] = init_cycle()
138 def color_func(func_name
):
140 Call color function base on name
142 if str(func_name
).isdigit():
143 return term_color(int(func_name
))
144 return globals()[func_name
]
147 def draw(t
, iot
=False, keyword
=None, check_semaphore
=False, fil
=[], ig
=[]):
155 text
= unescape(t
['text'])
156 screen_name
= t
['user']['screen_name']
157 name
= t
['user']['name']
158 created_at
= t
['created_at']
159 favorited
= t
['favorited']
160 date
= parser
.parse(created_at
)
161 date
= date
- datetime
.timedelta(seconds
=time
.timezone
)
162 clock
= date
.strftime('%Y/%m/%d %H:%M:%S')
168 urls
= t
['entities']['urls']
170 expanded_url
.append(u
['expanded_url'])
179 media
= t
['entities']['media']
181 media_url
.append(m
['media_url'])
186 screen_name
= '@' + screen_name
187 if fil
and screen_name
not in fil
:
189 if ig
and screen_name
in ig
:
193 res
= db
.tweet_to_rainbow_query(tid
)
196 res
= db
.tweet_to_rainbow_query(tid
)
197 rid
= res
[0].rainbow_id
201 name
) + color_func(c
['TWEET']['nick'])(' ' + screen_name
+ ' ')
202 meta
= color_func(c
['TWEET']['clock'])(
203 '[' + clock
+ '] ') + color_func(c
['TWEET']['id'])('[id=' + str(rid
) + '] ')
205 meta
= meta
+ color_func(c
['TWEET']['favorited'])(u
'\u2605')
209 for index
in range(len(expanded_url
)):
211 lambda x
: expanded_url
[index
] if x
== url
[index
] else x
,
215 lambda x
: color_func(
216 c
['TWEET']['rt'])(x
) if x
== 'RT' else x
,
218 # Highlight screen_name
219 tweet
= lmap(lambda x
: cycle_color(x
) if x
[0] == '@' else x
, tweet
)
222 lambda x
: color_func(
223 c
['TWEET']['link'])(x
) if x
[
224 0:4] == 'http' else x
,
228 tweet
= ' '.join(tweet
)
230 roj
= re
.search(keyword
,tweet
,re
.IGNORECASE
)
233 ary
= tweet
.split(occur
)
234 delimeter
= color_func(c
['TWEET']['keyword'])(occur
)
235 tweet
= delimeter
.join(ary
)
238 line1
= u
"{u:>{uw}}:".format(
242 line2
= u
"{c:>{cw}}".format(
248 # Check the semaphore lock
250 while db
.semaphore_query():
260 if iot
and media_url
:
263 response
= requests
.get(mu
)
264 image_to_display(BytesIO(response
.content
))
266 printNicely(red('Sorry, image link is broken'))
269 def print_message(m
):
273 sender_screen_name
= '@' + m
['sender_screen_name']
274 sender_name
= m
['sender']['name']
275 text
= unescape(m
['text'])
276 recipient_screen_name
= '@' + m
['recipient_screen_name']
277 recipient_name
= m
['recipient']['name']
279 date
= parser
.parse(m
['created_at'])
280 date
= date
- datetime
.timedelta(seconds
=time
.timezone
)
281 clock
= date
.strftime('%Y/%m/%d %H:%M:%S')
284 res
= db
.message_to_rainbow_query(mid
)
286 db
.message_store(mid
)
287 res
= db
.message_to_rainbow_query(mid
)
288 rid
= res
[0].rainbow_id
291 sender
= cycle_color(
292 sender_name
) + color_func(c
['MESSAGE']['sender'])(' ' + sender_screen_name
+ ' ')
293 recipient
= cycle_color(recipient_name
) + color_func(
294 c
['MESSAGE']['recipient'])(
295 ' ' + recipient_screen_name
+ ' ')
296 user
= sender
+ color_func(c
['MESSAGE']['to'])(' >>> ') + recipient
298 c
['MESSAGE']['clock'])(
299 '[' + clock
+ ']') + color_func(
301 ' [message_id=' + str(rid
) + '] ')
302 text
= ''.join(lmap(lambda x
: x
+ ' ' if x
== '\n' else x
, text
))
304 line1
= u
"{u:>{uw}}:".format(
308 line2
= u
"{c:>{cw}}".format(
321 def show_profile(u
, iot
=False):
327 screen_name
= u
['screen_name']
328 description
= u
['description']
329 profile_image_url
= u
['profile_image_url']
330 location
= u
['location']
332 created_at
= u
['created_at']
333 statuses_count
= u
['statuses_count']
334 friends_count
= u
['friends_count']
335 followers_count
= u
['followers_count']
338 statuses_count
= color_func(
339 c
['PROFILE']['statuses_count'])(
340 str(statuses_count
) +
342 friends_count
= color_func(
343 c
['PROFILE']['friends_count'])(
346 followers_count
= color_func(
347 c
['PROFILE']['followers_count'])(
348 str(followers_count
) +
350 count
= statuses_count
+ ' ' + friends_count
+ ' ' + followers_count
352 name
) + color_func(c
['PROFILE']['nick'])(' @' + screen_name
+ ' : ') + count
353 profile_image_raw_url
= 'Profile photo: ' + \
354 color_func(c
['PROFILE']['profile_image_url'])(profile_image_url
)
355 description
= ''.join(
356 lmap(lambda x
: x
+ ' ' * 4 if x
== '\n' else x
, description
))
357 description
= color_func(c
['PROFILE']['description'])(description
)
358 location
= 'Location : ' + color_func(c
['PROFILE']['location'])(location
)
359 url
= 'URL : ' + (color_func(c
['PROFILE']['url'])(url
) if url
else '')
360 date
= parser
.parse(created_at
)
361 date
= date
- datetime
.timedelta(seconds
=time
.timezone
)
362 clock
= date
.strftime('%Y/%m/%d %H:%M:%S')
363 clock
= 'Join at ' + color_func(c
['PROFILE']['clock'])(clock
)
366 line1
= u
"{u:>{uw}}".format(
370 line2
= u
"{p:>{pw}}".format(
371 p
=profile_image_raw_url
,
372 pw
=len(profile_image_raw_url
) + 4,
374 line3
= u
"{d:>{dw}}".format(
376 dw
=len(description
) + 4,
378 line4
= u
"{l:>{lw}}".format(
380 lw
=len(location
) + 4,
382 line5
= u
"{u:>{uw}}".format(
386 line6
= u
"{c:>{cw}}".format(
396 response
= requests
.get(profile_image_url
)
397 image_to_display(BytesIO(response
.content
), 2, 20)
402 for line
in [line3
, line4
, line5
, line6
]:
407 def print_trends(trends
):
411 for topic
in trends
[:c
['TREND_MAX']]:
414 line
= cycle_color(name
) + ': ' + color_func(c
['TREND']['url'])(url
)
419 def print_list(group
):
425 name
= g
['full_name']
426 name
= color_func(c
['GROUP']['name'])(name
+ ' : ')
427 member
= str(g
['member_count'])
428 member
= color_func(c
['GROUP']['member'])(member
+ ' member')
429 subscriber
= str(g
['subscriber_count'])
430 subscriber
= color_func(
431 c
['GROUP']['subscriber'])(
434 description
= g
['description'].strip()
435 description
= color_func(c
['GROUP']['description'])(description
)
437 mode
= color_func(c
['GROUP']['mode'])('Type: ' + mode
)
438 created_at
= g
['created_at']
439 date
= parser
.parse(created_at
)
440 date
= date
- datetime
.timedelta(seconds
=time
.timezone
)
441 clock
= date
.strftime('%Y/%m/%d %H:%M:%S')
442 clock
= 'Created at ' + color_func(c
['GROUP']['clock'])(clock
)
445 line1
= ' ' * 2 + name
+ member
+ ' ' + subscriber
446 line2
= ' ' * 4 + description
447 line3
= ' ' * 4 + mode
448 line4
= ' ' * 4 + clock
460 # Start the color cycle