Mercurial > rsstweet
view app/helpers/application_helper.rb @ 203:af84c9f23263
Fix redirect for twitter user with nil screen name
Everything else is still kind of broken but it's kind of beyond help anyway
author | nanaya <me@nanaya.pro> |
---|---|
date | Mon, 19 Oct 2020 03:42:22 +0900 |
parents | 52252ae4b580 |
children | 70e90ea4b870 |
line wrap: on
line source
module ApplicationHelper include Twitter::TwitterText::Autolink def atom_id(id) "tag:rsstweet@nanaya.pro,2014:#{id}" end def expand_url(text, *urls) urls.flatten! urls = urls.reduce({}) do |result, u| if u.try(:[], :url) result[u[:url]] = u[:expanded_url] end result end text.gsub /https?:\/\/t\.co\/[A-Za-z0-9]+/ do |url| urls[url] || url end end end