mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 05:06:22 +00:00
fix: mostrar link externo al comentario #15638
This commit is contained in:
parent
bdb5175fcd
commit
1623d618ee
2 changed files with 41 additions and 2 deletions
|
@ -43,6 +43,42 @@ class ActivityPub < ApplicationRecord
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# Obtiene el campo `url` de diversas formas. Si es una String, asumir
|
||||||
|
# que es una URL, si es un Hash, asumir que es un Link, si es un
|
||||||
|
# Array de Strings, obtener la primera, si es de Hash, obtener el
|
||||||
|
# primer link con rel=canonical y mediaType=text/html
|
||||||
|
#
|
||||||
|
# De lo contrario devolver el ID.
|
||||||
|
#
|
||||||
|
# @todo Refactorizar
|
||||||
|
# @param object [Hash]
|
||||||
|
# @return [String]
|
||||||
|
def self.url_from_object(object)
|
||||||
|
raise unless object.respond_to?(:[])
|
||||||
|
|
||||||
|
url =
|
||||||
|
case object['url']
|
||||||
|
when String then object['url']
|
||||||
|
when Hash then object['href']
|
||||||
|
# Esto es un lío porque queremos saber si es un Array<Hash> o
|
||||||
|
# Array<String> o mezcla y obtener el que más nos convenga o
|
||||||
|
# adivinar uno.
|
||||||
|
when Array
|
||||||
|
links = object['url'].map.with_index do |link, i|
|
||||||
|
case link
|
||||||
|
when Hash then link
|
||||||
|
else { 'href' => link.to_s }
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
links.find do |link|
|
||||||
|
link['rel'] == 'canonical' && link['mediaType'] == 'text/html'
|
||||||
|
end&.[]('href') || links.first&.[]('href')
|
||||||
|
end
|
||||||
|
|
||||||
|
url || object['id']
|
||||||
|
end
|
||||||
|
|
||||||
aasm do
|
aasm do
|
||||||
# Todavía no hay una decisión sobre el objeto
|
# Todavía no hay una decisión sobre el objeto
|
||||||
state :paused, initial: true
|
state :paused, initial: true
|
||||||
|
|
|
@ -8,6 +8,8 @@
|
||||||
|
|
||||||
- in_reply_to = text_plain comment['inReplyTo']
|
- in_reply_to = text_plain comment['inReplyTo']
|
||||||
- summary = text_plain comment['summary']
|
- summary = text_plain comment['summary']
|
||||||
|
-# @todo Generar un desplegable con todas las opciones
|
||||||
|
- url = text_plain ActivityPub.url_from_object(comment)
|
||||||
|
|
||||||
.row.no-gutters
|
.row.no-gutters
|
||||||
.col-1
|
.col-1
|
||||||
|
@ -17,8 +19,9 @@
|
||||||
.d-flex.flex-row.align-items-center.justify-content-between
|
.d-flex.flex-row.align-items-center.justify-content-between
|
||||||
%h4.mb-0
|
%h4.mb-0
|
||||||
%a{ href: text_plain(comment['attributedTo']) }= text_plain profile['preferredUsername']
|
%a{ href: text_plain(comment['attributedTo']) }= text_plain profile['preferredUsername']
|
||||||
%small
|
%a{ href: url }
|
||||||
= render 'layouts/time', time: text_plain(comment['published'])
|
%small
|
||||||
|
= render 'layouts/time', time: text_plain(comment['published'])
|
||||||
- if in_reply_to.present?
|
- if in_reply_to.present?
|
||||||
%dl
|
%dl
|
||||||
%dt.d-inline
|
%dt.d-inline
|
||||||
|
|
Loading…
Reference in a new issue