Mercurial > rsstweet
annotate app/helpers/application_helper.rb @ 251:43cbceac80ab
Remove model test and add client test
author | nanaya <me@nanaya.net> |
---|---|
date | Mon, 17 Jul 2023 20:54:04 +0900 |
parents | 3ac13a9e593d |
children |
rev | line source |
---|---|
0 | 1 module ApplicationHelper |
150
950849c40d42
Update all the things, including rails 5.2
nanaya <me@nanaya.pro>
parents:
103
diff
changeset
|
2 include Twitter::TwitterText::Autolink |
80 | 3 |
94 | 4 def atom_id(id) |
175
52252ae4b580
Static tag because it's supposed to be the same across rsstweet installs
nanaya <me@nanaya.pro>
parents:
172
diff
changeset
|
5 "tag:rsstweet@nanaya.pro,2014:#{id}" |
94 | 6 end |
98 | 7 |
234 | 8 def expand_url(text, urls) |
98 | 9 text.gsub /https?:\/\/t\.co\/[A-Za-z0-9]+/ do |url| |
242 | 10 expanded = urls[url] |
11 | |
12 case expanded | |
13 when nil then url | |
14 when Hash then expanded[:url] | |
15 else expanded | |
16 end | |
98 | 17 end |
18 end | |
204 | 19 |
20 def status_url(tweet) | |
234 | 21 status_url_base tweet[:user][:username], tweet[:id] |
229
12287b32fbda
Show link to parent tweet for replies
nanaya <me@nanaya.pro>
parents:
204
diff
changeset
|
22 end |
12287b32fbda
Show link to parent tweet for replies
nanaya <me@nanaya.pro>
parents:
204
diff
changeset
|
23 |
234 | 24 def status_url_base(username, id) |
25 "https://twitter.com/#{username.presence || '_'}/status/#{id}" | |
204 | 26 end |
0 | 27 end |