view app/helpers/application_helper.rb @ 262:cd927bb7dc0d

Move out custom application config
author nanaya <me@nanaya.net>
date Mon, 16 Dec 2024 01:39:38 +0900
parents e2150dce4e90
children
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)
    text.gsub /https?:\/\/t\.co\/[A-Za-z0-9]+/ do |url|
      expanded = urls[url]

      case expanded
      when nil then url
      when Hash then expanded[:url]
      else expanded
      end
    end
  end

  def status_url(tweet)
    status_url_base tweet[:user][:username], tweet[:id]
  end

  def status_url_base(username, id)
    "https://x.com/#{username.presence || '_'}/status/#{id}"
  end
end