36 lines
1.2 KiB
Python
36 lines
1.2 KiB
Python
|
import datetime, html, time
|
||
|
from src import utils
|
||
|
|
||
|
def _timestamp(dt):
|
||
|
seconds_since = time.time()-dt.timestamp()
|
||
|
since, unit = utils.time_unit(seconds_since)
|
||
|
return "%s %s ago" % (since, unit)
|
||
|
|
||
|
def _tweet(exports, tweet):
|
||
|
linked_id = tweet.id
|
||
|
username = tweet.user.screen_name
|
||
|
|
||
|
verified = ""
|
||
|
if tweet.user.verified:
|
||
|
verified = " %s" % utils.irc.color("✓", utils.consts.LIGHTBLUE)
|
||
|
|
||
|
tweet_link = "https://twitter.com/%s/status/%s" % (username,
|
||
|
linked_id)
|
||
|
|
||
|
short_url = exports.get_one("shortlink")(tweet_link)
|
||
|
short_url = " - %s" % short_url if short_url else ""
|
||
|
created_at = _timestamp(tweet.created_at)
|
||
|
|
||
|
# having to use hasattr here is nasty.
|
||
|
if hasattr(tweet, "retweeted_status"):
|
||
|
original_username = tweet.retweeted_status.user.screen_name
|
||
|
original_text = tweet.retweeted_status.text
|
||
|
original_timestamp = _timestamp(tweet.retweeted_status.created_at)
|
||
|
return "(@%s%s (%s) retweeted @%s (%s)) %s%s" % (username, verified,
|
||
|
created_at, original_username, original_timestamp,
|
||
|
html.unescape(original_text), short_url)
|
||
|
else:
|
||
|
return "(@%s%s, %s) %s%s" % (username, verified, created_at,
|
||
|
html.unescape(tweet.text), short_url)
|
||
|
|