add documents
[rainbowstream.git] / rainbowstream / draw.py
... / ...
CommitLineData
1import random
2import itertools
3import requests
4import datetime
5import time
6
7from twitter.util import printNicely
8from functools import wraps
9from pyfiglet import figlet_format
10from dateutil import parser
11from .c_image import *
12from .colors import *
13from .config import *
14from .db import *
15from .py3patch import *
16
17
18db = RainbowDB()
19g = {}
20
21
22def init_cycle():
23 """
24 Init the cycle
25 """
26 colors_shuffle = [globals()[i.encode('utf8')]
27 if not i.startswith('term_')
28 else term_color(int(i[5:]))
29 for i in c['CYCLE_COLOR']]
30 return itertools.cycle(colors_shuffle)
31g['cyc'] = init_cycle()
32g['cache'] = {}
33
34
35def reset_cycle():
36 """
37 Notify from rainbow
38 """
39 g['cyc'] = init_cycle()
40 g['cache'] = {}
41
42
43def order_rainbow(s):
44 """
45 Print a string with ordered color with each character
46 """
47 colors_shuffle = [globals()[i.encode('utf8')]
48 if not i.startswith('term_')
49 else term_color(int(i[5:]))
50 for i in c['CYCLE_COLOR']]
51 colored = [colors_shuffle[i % 7](s[i]) for i in xrange(len(s))]
52 return ''.join(colored)
53
54
55def random_rainbow(s):
56 """
57 Print a string with random color with each character
58 """
59 colors_shuffle = [globals()[i.encode('utf8')]
60 if not i.startswith('term_')
61 else term_color(int(i[5:]))
62 for i in c['CYCLE_COLOR']]
63 colored = [random.choice(colors_shuffle)(i) for i in s]
64 return ''.join(colored)
65
66
67def Memoize(func):
68 """
69 Memoize decorator
70 """
71 @wraps(func)
72 def wrapper(*args):
73 if args not in g['cache']:
74 g['cache'][args] = func(*args)
75 return g['cache'][args]
76 return wrapper
77
78
79@Memoize
80def cycle_color(s):
81 """
82 Cycle the colors_shuffle
83 """
84 return next(g['cyc'])(s)
85
86
87def ascii_art(text):
88 """
89 Draw the Ascii Art
90 """
91 fi = figlet_format(text, font='doom')
92 print('\n'.join(
93 [next(g['cyc'])(i) for i in fi.split('\n')]
94 ))
95
96
97def show_calendar(month, date, rel):
98 """
99 Show the calendar in rainbow mode
100 """
101 month = random_rainbow(month)
102 date = ' '.join([cycle_color(i) for i in date.split(' ')])
103 today = str(int(os.popen('date +\'%d\'').read().strip()))
104 # Display
105 printNicely(month)
106 printNicely(date)
107 for line in rel:
108 ary = line.split(' ')
109 ary = lmap(lambda x: color_func(c['CAL']['today'])(x)
110 if x == today
111 else color_func(c['CAL']['days'])(x), ary)
112 printNicely(' '.join(ary))
113
114
115def check_theme():
116 """
117 Check current theme and update if necessary
118 """
119 exists = db.theme_query()
120 themes = [t.theme_name for t in exists]
121 if c['theme'] != themes[0]:
122 c['theme'] = themes[0]
123 # Determine path
124 if c['theme'] == 'custom':
125 config = os.environ.get(
126 'HOME',
127 os.environ.get('USERPROFILE',
128 '')) + os.sep + '.rainbow_config.json'
129 else:
130 config = os.path.dirname(
131 __file__) + '/colorset/' + c['theme'] + '.json'
132 # Load new config
133 data = load_config(config)
134 if data:
135 for d in data:
136 c[d] = data[d]
137 # Re-init color cycle
138 g['cyc'] = init_cycle()
139
140
141def color_func(func_name):
142 """
143 Call color function base on name
144 """
145 if func_name.startswith('term_') and func_name[5:].isdigit():
146 return term_color(int(func_name[5:]))
147 return globals()[func_name]
148
149
150def draw(t, iot=False, keyword=None, fil=[], ig=[]):
151 """
152 Draw the rainbow
153 """
154
155 check_theme()
156 # Retrieve tweet
157 tid = t['id']
158 text = t['text']
159 screen_name = t['user']['screen_name']
160 name = t['user']['name']
161 created_at = t['created_at']
162 favorited = t['favorited']
163 date = parser.parse(created_at)
164 date = date - datetime.timedelta(seconds=time.timezone)
165 clock = date.strftime('%Y/%m/%d %H:%M:%S')
166
167 # Get expanded url
168 try:
169 expanded_url = []
170 url = []
171 urls = t['entities']['urls']
172 for u in urls:
173 expanded_url.append(u['expanded_url'])
174 url.append(u['url'])
175 except:
176 expanded_url = None
177 url = None
178
179 # Get media
180 try:
181 media_url = []
182 media = t['entities']['media']
183 for m in media:
184 media_url.append(m['media_url'])
185 except:
186 media_url = None
187
188 # Filter and ignore
189 screen_name = '@' + screen_name
190 if fil and screen_name not in fil:
191 return
192 if ig and screen_name in ig:
193 return
194
195 # Get rainbow id
196 res = db.tweet_to_rainbow_query(tid)
197 if not res:
198 db.tweet_store(tid)
199 res = db.tweet_to_rainbow_query(tid)
200 rid = res[0].rainbow_id
201
202 # Format info
203 user = cycle_color(
204 name) + color_func(c['TWEET']['nick'])(' ' + screen_name + ' ')
205 meta = color_func(c['TWEET']['clock'])(
206 '[' + clock + '] ') + color_func(c['TWEET']['id'])('[id=' + str(rid) + '] ')
207 if favorited:
208 meta = meta + color_func(c['TWEET']['favorited'])(u'\u2605')
209 tweet = text.split()
210 # Replace url
211 if expanded_url:
212 for index in range(len(expanded_url)):
213 tweet = lmap(
214 lambda x: expanded_url[index] if x == url[index] else x,
215 tweet)
216 # Highlight RT
217 tweet = lmap(
218 lambda x: color_func(
219 c['TWEET']['rt'])(x) if x == 'RT' else x,
220 tweet)
221 # Highlight screen_name
222 tweet = lmap(lambda x: cycle_color(x) if x[0] == '@' else x, tweet)
223 # Highlight link
224 tweet = lmap(
225 lambda x: color_func(
226 c['TWEET']['link'])(x) if x[
227 0:4] == 'http' else x,
228 tweet)
229 # Highlight search keyword
230 if keyword:
231 tweet = lmap(
232 lambda x: color_func(c['TWEET']['keyword'])(x) if
233 ''.join(c for c in x if c.isalnum()).lower() == keyword.lower()
234 else x,
235 tweet
236 )
237 # Recreate tweet
238 tweet = ' '.join(tweet)
239
240 # Draw rainbow
241 line1 = u"{u:>{uw}}:".format(
242 u=user,
243 uw=len(user) + 2,
244 )
245 line2 = u"{c:>{cw}}".format(
246 c=meta,
247 cw=len(meta) + 2,
248 )
249 line3 = ' ' + tweet
250
251 printNicely('')
252 printNicely(line1)
253 printNicely(line2)
254 printNicely(line3)
255
256 # Display Image
257 if iot and media_url:
258 for mu in media_url:
259 try:
260 response = requests.get(mu)
261 image_to_display(BytesIO(response.content))
262 except Exception:
263 printNicely(red('Sorry, image link is broken'))
264
265
266def print_message(m):
267 """
268 Print direct message
269 """
270 sender_screen_name = '@' + m['sender_screen_name']
271 sender_name = m['sender']['name']
272 text = m['text']
273 recipient_screen_name = '@' + m['recipient_screen_name']
274 recipient_name = m['recipient']['name']
275 mid = m['id']
276 date = parser.parse(m['created_at'])
277 date = date - datetime.timedelta(seconds=time.timezone)
278 clock = date.strftime('%Y/%m/%d %H:%M:%S')
279
280 # Get rainbow id
281 res = db.message_to_rainbow_query(mid)
282 if not res:
283 db.message_store(mid)
284 res = db.message_to_rainbow_query(mid)
285 rid = res[0].rainbow_id
286
287 # Draw
288 sender = cycle_color(
289 sender_name) + color_func(c['MESSAGE']['sender'])(' ' + sender_screen_name + ' ')
290 recipient = cycle_color(recipient_name) + color_func(
291 c['MESSAGE']['recipient'])(
292 ' ' + recipient_screen_name + ' ')
293 user = sender + color_func(c['MESSAGE']['to'])(' >>> ') + recipient
294 meta = color_func(
295 c['MESSAGE']['clock'])(
296 '[' + clock + ']') + color_func(
297 c['MESSAGE']['id'])(
298 ' [message_id=' + str(rid) + '] ')
299 text = ''.join(lmap(lambda x: x + ' ' if x == '\n' else x, text))
300
301 line1 = u"{u:>{uw}}:".format(
302 u=user,
303 uw=len(user) + 2,
304 )
305 line2 = u"{c:>{cw}}".format(
306 c=meta,
307 cw=len(meta) + 2,
308 )
309
310 line3 = ' ' + text
311
312 printNicely('')
313 printNicely(line1)
314 printNicely(line2)
315 printNicely(line3)
316
317
318def show_profile(u, iot=False):
319 """
320 Show a profile
321 """
322 # Retrieve info
323 name = u['name']
324 screen_name = u['screen_name']
325 description = u['description']
326 profile_image_url = u['profile_image_url']
327 location = u['location']
328 url = u['url']
329 created_at = u['created_at']
330 statuses_count = u['statuses_count']
331 friends_count = u['friends_count']
332 followers_count = u['followers_count']
333
334 # Create content
335 statuses_count = color_func(
336 c['PROFILE']['statuses_count'])(
337 str(statuses_count) +
338 ' tweets')
339 friends_count = color_func(
340 c['PROFILE']['friends_count'])(
341 str(friends_count) +
342 ' following')
343 followers_count = color_func(
344 c['PROFILE']['followers_count'])(
345 str(followers_count) +
346 ' followers')
347 count = statuses_count + ' ' + friends_count + ' ' + followers_count
348 user = cycle_color(
349 name) + color_func(c['PROFILE']['nick'])(' @' + screen_name + ' : ') + count
350 profile_image_raw_url = 'Profile photo: ' + \
351 color_func(c['PROFILE']['profile_image_url'])(profile_image_url)
352 description = ''.join(
353 lmap(lambda x: x + ' ' * 4 if x == '\n' else x, description))
354 description = color_func(c['PROFILE']['description'])(description)
355 location = 'Location : ' + color_func(c['PROFILE']['location'])(location)
356 url = 'URL : ' + (color_func(c['PROFILE']['url'])(url) if url else '')
357 date = parser.parse(created_at)
358 date = date - datetime.timedelta(seconds=time.timezone)
359 clock = date.strftime('%Y/%m/%d %H:%M:%S')
360 clock = 'Join at ' + color_func(c['PROFILE']['clock'])(clock)
361
362 # Format
363 line1 = u"{u:>{uw}}".format(
364 u=user,
365 uw=len(user) + 2,
366 )
367 line2 = u"{p:>{pw}}".format(
368 p=profile_image_raw_url,
369 pw=len(profile_image_raw_url) + 4,
370 )
371 line3 = u"{d:>{dw}}".format(
372 d=description,
373 dw=len(description) + 4,
374 )
375 line4 = u"{l:>{lw}}".format(
376 l=location,
377 lw=len(location) + 4,
378 )
379 line5 = u"{u:>{uw}}".format(
380 u=url,
381 uw=len(url) + 4,
382 )
383 line6 = u"{c:>{cw}}".format(
384 c=clock,
385 cw=len(clock) + 4,
386 )
387
388 # Display
389 printNicely('')
390 printNicely(line1)
391 if iot:
392 try:
393 response = requests.get(profile_image_url)
394 image_to_display(BytesIO(response.content), 2, 20)
395 except:
396 pass
397 else:
398 printNicely(line2)
399 for line in [line3, line4, line5, line6]:
400 printNicely(line)
401 printNicely('')
402
403
404def print_trends(trends):
405 """
406 Display topics
407 """
408 for topic in trends[:c['TREND_MAX']]:
409 name = topic['name']
410 url = topic['url']
411 line = cycle_color(name) + ': ' + color_func(c['TREND']['url'])(url)
412 printNicely(line)
413 printNicely('')
414
415
416def print_list(group):
417 """
418 Display a list
419 """
420 for g in group:
421 # Format
422 name = g['full_name']
423 name = color_func(c['GROUP']['name'])(name + ' : ')
424 member = str(g['member_count'])
425 member = color_func(c['GROUP']['member'])(member + ' member')
426 subscriber = str(g['subscriber_count'])
427 subscriber = color_func(
428 c['GROUP']['subscriber'])(
429 subscriber +
430 ' subscriber')
431 description = g['description'].strip()
432 description = color_func(c['GROUP']['description'])(description)
433 mode = g['mode']
434 mode = color_func(c['GROUP']['mode'])('Type: ' + mode)
435 created_at = g['created_at']
436 date = parser.parse(created_at)
437 date = date - datetime.timedelta(seconds=time.timezone)
438 clock = date.strftime('%Y/%m/%d %H:%M:%S')
439 clock = 'Created at ' + color_func(c['GROUP']['clock'])(clock)
440
441 # Create lines
442 line1 = ' ' * 2 + name + member + ' ' + subscriber
443 line2 = ' ' * 4 + description
444 line3 = ' ' * 4 + mode
445 line4 = ' ' * 4 + clock
446
447 # Display
448 printNicely('')
449 printNicely(line1)
450 printNicely(line2)
451 printNicely(line3)
452 printNicely(line4)
453
454 printNicely('')