Merge commit '670316499fb4439a28d93aca2f40617dfb9bb2b0' into glitch-soc/merge-4.4

This commit is contained in:
Claire
2025-10-08 18:00:57 +02:00
15 changed files with 449 additions and 31 deletions

View File

@@ -159,6 +159,9 @@ group :test do
# Stub web requests for specs
gem 'webmock', '~> 3.18'
# Websocket driver for testing integration between rails/sidekiq and streaming
gem 'websocket-driver', '~> 0.8', require: false
end
group :development do

View File

@@ -642,7 +642,7 @@ GEM
activesupport (>= 3.0.0)
raabro (1.4.0)
racc (1.8.1)
rack (3.1.16)
rack (3.1.17)
rack-attack (6.7.0)
rack (>= 1.0, < 4)
rack-cors (3.0.0)
@@ -899,7 +899,7 @@ GEM
unicode-display_width (3.1.4)
unicode-emoji (~> 4.0, >= 4.0.4)
unicode-emoji (4.0.4)
uri (1.0.3)
uri (1.0.4)
useragent (0.16.11)
validate_url (1.0.15)
activemodel (>= 3.0.0)
@@ -932,7 +932,7 @@ GEM
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
webrick (1.9.1)
websocket-driver (0.7.7)
websocket-driver (0.8.0)
base64
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
@@ -1096,6 +1096,7 @@ DEPENDENCIES
webauthn (~> 3.0)
webmock (~> 3.18)
webpush!
websocket-driver (~> 0.8)
xorcist (~> 1.1)
RUBY VERSION

View File

@@ -20,7 +20,7 @@ import { useDrag } from '@use-gesture/react';
import { expandAccountFeaturedTimeline } from '@/mastodon/actions/timelines';
import { Icon } from '@/mastodon/components/icon';
import { IconButton } from '@/mastodon/components/icon_button';
import StatusContainer from '@/mastodon/containers/status_container';
import { StatusQuoteManager } from '@/mastodon/components/status_quoted';
import { usePrevious } from '@/mastodon/hooks/usePrevious';
import { useAppDispatch, useAppSelector } from '@/mastodon/store';
import ChevronLeftIcon from '@/material-icons/400-24px/chevron_left.svg?react';
@@ -218,12 +218,7 @@ const FeaturedCarouselItem: React.FC<
ref={handleRef}
{...props}
>
<StatusContainer
// @ts-expect-error inferred props are wrong
id={statusId}
contextType='account'
withCounters
/>
<StatusQuoteManager id={statusId} contextType='account' withCounters />
</animated.div>
);
};

View File

@@ -88,6 +88,14 @@ table + p {
padding: 24px;
}
.email-inner-nested-card-td {
border-radius: 12px;
padding: 18px;
overflow: hidden;
background-color: #fff;
border: 1px solid #dfdee3;
}
// Account
.email-account-banner-table {
background-color: #f3f2f5;
@@ -559,12 +567,29 @@ table + p {
}
}
.email-quote-header-img {
width: 34px;
img {
width: 34px;
height: 34px;
border-radius: 8px;
overflow: hidden;
}
}
.email-status-header-text {
padding-left: 16px;
padding-right: 16px;
vertical-align: middle;
}
.email-quote-header-text {
padding-left: 14px;
padding-right: 14px;
vertical-align: middle;
}
.email-status-header-name {
font-size: 16px;
font-weight: 600;
@@ -578,6 +603,19 @@ table + p {
color: #746a89;
}
.email-quote-header-name {
font-size: 14px;
font-weight: 600;
line-height: 18px;
color: #17063b;
}
.email-quote-header-handle {
font-size: 13px;
line-height: 18px;
color: #746a89;
}
.email-status-content {
padding-top: 24px;
}
@@ -589,6 +627,10 @@ table + p {
}
.email-status-prose {
.quote-inline {
display: none;
}
p {
font-size: 14px;
line-height: 20px;

View File

@@ -143,7 +143,7 @@ class ActivityPub::Parser::StatusParser
def quote_subpolicy(subpolicy)
flags = 0
allowed_actors = as_array(subpolicy)
allowed_actors = as_array(subpolicy).dup
allowed_actors.uniq!
flags |= Status::QUOTE_APPROVAL_POLICY_FLAGS[:public] if allowed_actors.delete('as:Public') || allowed_actors.delete('Public') || allowed_actors.delete('https://www.w3.org/ns/activitystreams#Public')

View File

@@ -26,7 +26,7 @@ class PermalinkRedirector
end
def redirect_path
return ActivityPub::TagManager.instance.url_for(object) if object.present?
return ActivityPub::TagManager.instance.url_for(object) || ActivityPub::TagManager.instance.uri_for(object) if object.present?
@path.delete_prefix('/deck') if @path.start_with?('/deck')
end

View File

@@ -0,0 +1,17 @@
%table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
%tr
%td.email-quote-header-img
= image_tag full_asset_url(status.account.avatar.url), alt: '', width: 34, height: 34
%td.email-quote-header-text
%h2.email-quote-header-name
= display_name(status.account)
%p.email-quote-header-handle
@#{status.account.pretty_acct}
%table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
%tr
%td.email-status-content
= render 'status_content', status: status
%p.email-status-footer
= link_to l(status.created_at.in_time_zone(time_zone.presence), format: :with_time_zone), web_url("@#{status.account.pretty_acct}/#{status.id}")

View File

@@ -11,21 +11,12 @@
%table.email-w-full{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
%tr
%td.email-status-content
.auto-dir
- if status.spoiler_text?
%p.email-status-spoiler
= status.spoiler_text
.email-status-prose
= status_content_format(status)
- if status.ordered_media_attachments.size.positive?
%p.email-status-media
- status.ordered_media_attachments.each do |a|
- if status.local?
= link_to full_asset_url(a.file.url(:original)), full_asset_url(a.file.url(:original))
- else
= link_to a.remote_url, a.remote_url
= render 'status_content', status: status
- if status.local? && status.quote
%table.email-inner-card-table{ cellspacing: 0, cellpadding: 0, border: 0, role: 'presentation' }
%tr
%td.email-inner-nested-card-td
= render 'nested_quote', status: status.quote.quoted_status, time_zone: time_zone
%p.email-status-footer
= link_to l(status.created_at.in_time_zone(time_zone.presence), format: :with_time_zone), web_url("@#{status.account.pretty_acct}/#{status.id}")

View File

@@ -4,5 +4,9 @@
>
<% end %>
> <%= raw word_wrap(extract_status_plain_text(status), break_sequence: "\n> ") %>
<% if status.local? && status.quote %>
>
>> <%= raw word_wrap(extract_status_plain_text(status.quote.quoted_status), break_sequence: "\n>> ") %>
<% end %>
<%= raw t('application_mailer.view')%> <%= web_url("@#{status.account.pretty_acct}/#{status.id}") %>

View File

@@ -0,0 +1,15 @@
.auto-dir
- if status.spoiler_text?
%p.email-status-spoiler
= status.spoiler_text
.email-status-prose
= status_content_format(status)
- if status.ordered_media_attachments.size.positive?
%p.email-status-media
- status.ordered_media_attachments.each do |a|
- if status.local?
= link_to full_asset_url(a.file.url(:original)), full_asset_url(a.file.url(:original))
- else
= link_to a.remote_url, a.remote_url

View File

@@ -30,7 +30,8 @@ end
# This needs to be defined before Rails is initialized
STREAMING_PORT = ENV.fetch('TEST_STREAMING_PORT', '4020')
ENV['STREAMING_API_BASE_URL'] = "http://localhost:#{STREAMING_PORT}"
STREAMING_HOST = ENV.fetch('TEST_STREAMING_HOST', 'localhost')
ENV['STREAMING_API_BASE_URL'] = "http://#{STREAMING_HOST}:#{STREAMING_PORT}"
require_relative '../config/environment'

View File

@@ -0,0 +1,205 @@
# frozen_string_literal: true
require 'websocket/driver'
class StreamingClient
module AUTHENTICATION
SUBPROTOCOL = 1
AUTHORIZATION_HEADER = 2
QUERY_PARAMETER = 3
end
class Connection
attr_reader :url, :messages, :last_error
attr_accessor :logger, :protocols
def initialize(url)
@uri = URI.parse(url)
@query_params = @uri.query.present? ? URI.decode_www_form(@uri.query).to_h : {}
@protocols = nil
@headers = {}
@dead = false
@events_queue = Thread::Queue.new
@messages = []
@last_error = nil
end
def set_header(key, value)
@headers[key] = value
end
def set_query_param(key, value)
@query_params[key] = value
end
def driver
return @driver if defined?(@driver)
@uri.query = URI.encode_www_form(@query_params)
@url = @uri.to_s
@tcp = TCPSocket.new(@uri.host, @uri.port)
@driver = WebSocket::Driver.client(self, {
protocols: @protocols,
})
@headers.each_pair do |key, value|
@driver.set_header(key, value)
end
at_exit do
@driver.close
end
@driver.on(:open) do
@events_queue.enq({ event: :opened })
end
@driver.on(:message) do |event|
@events_queue.enq({ event: :message, payload: event.data })
@messages << event.data
end
@driver.on(:error) do |event|
logger&.debug(event.message)
@events_queue.enq({ event: :error, payload: event })
@last_error = event
end
@driver.on(:close) do |event|
@events_queue.enq({ event: :closing, payload: event })
finalize(event)
end
@thread = Thread.new do
@driver.parse(@tcp.read(1)) until @dead || @tcp.closed?
rescue Errno::ECONNRESET
# Create a synthetic close event:
close_event = WebSocket::Driver::CloseEvent.new(
WebSocket::Driver::Hybi::ERRORS[:unexpected_condition],
'Connection reset'
)
finalize(close_event)
end
@driver
end
def wait_for_event(expected_event, timeout: 10)
Timeout.timeout(timeout) do
loop do
event = dequeue_event
return nil if event.nil? && @events_queue.closed?
return event[:payload] unless event.nil? || event[:event] != expected_event
end
end
end
def write(data)
@tcp.write(data)
rescue Errno::EPIPE => e
logger&.debug("EPIPE: #{e}")
end
def finalize(event)
@dead = true
@events_queue.enq({ event: :closed, payload: event })
@events_queue.close
@thread.kill
end
def dequeue_event
event = @events_queue.pop
logger&.debug(event) unless event.nil?
event
end
end
def initialize
@logger = Logger.new($stdout)
@logger.level = 'info'
@connection = Connection.new("ws://#{STREAMING_HOST}:#{STREAMING_PORT}/api/v1/streaming")
@connection.logger = @logger
end
def debug!
@logger.debug!
end
def authenticate(access_token, authentication_method = StreamingClient::AUTHENTICATION::SUBPROTOCOL)
raise 'Invalid access_token passed to StreamingClient, expected a string' unless access_token.is_a?(String)
case authentication_method
when AUTHENTICATION::QUERY_PARAMETER
@connection.set_query_param('access_token', access_token)
when AUTHENTICATION::SUBPROTOCOL
@connection.protocols = access_token
when AUTHENTICATION::AUTHORIZATION_HEADER
@connection.set_header('Authorization', "Bearer #{access_token}")
else
raise 'Invalid authentication method'
end
end
def connect
@connection.driver.start
@connection.wait_for_event(:opened)
end
def subscribe(channel, **params)
send(Oj.dump({ type: 'subscribe', stream: channel }.merge(params)))
end
def wait_for(event = nil)
@connection.wait_for_event(event)
end
def wait_for_message
message = @connection.wait_for_event(:message)
event = Oj.load(message)
event['payload'] = Oj.load(event['payload']) if event['payload']
event.deep_symbolize_keys
end
delegate :status, :state, to: :'@connection.driver'
delegate :messages, to: :@connection
def open?
state == :open
end
def closing?
state == :closing
end
def closed?
state == :closed
end
def send(message)
@connection.driver.text(message) if open?
end
def close
return if closed?
@connection.driver.close unless closing?
@connection.wait_for_event(:closed)
end
end
module StreamingClientHelper
def streaming_client
@streaming_client ||= StreamingClient.new
end
end
RSpec.configure do |config|
config.include StreamingClientHelper, :streaming
end

View File

@@ -12,6 +12,11 @@ class StreamingServerManager
queue = Queue.new
if ENV['DEBUG_STREAMING_SERVER'].present?
logger = Logger.new($stdout)
logger.level = 'debug'
end
@queue = queue
@running_thread = Thread.new do
@@ -31,7 +36,7 @@ class StreamingServerManager
# Spawn a thread to listen on streaming server output
output_thread = Thread.new do
stdout_err.each_line do |line|
Rails.logger.info "Streaming server: #{line}"
logger&.info "Streaming server: #{line}"
if status == :starting && line.match('Streaming API now listening on')
status = :started
@@ -115,12 +120,12 @@ RSpec.configure do |config|
self.use_transactional_tests = true
end
private
def streaming_server_manager
@streaming_server_manager ||= StreamingServerManager.new
end
private
def streaming_examples_present?
RSpec.world.filtered_examples.values.flatten.any? { |example| example.metadata[:streaming] == true }
end

View File

@@ -0,0 +1,62 @@
# frozen_string_literal: true
require 'rails_helper'
require 'debug'
RSpec.describe 'Channel Subscriptions', :inline_jobs, :streaming do
let(:application) { Fabricate(:application, confidential: false) }
let(:scopes) { nil }
let(:access_token) { Fabricate(:accessible_access_token, resource_owner_id: user_account.user.id, application: application, scopes: scopes) }
let(:user_account) { Fabricate(:account, username: 'alice', domain: nil) }
let(:bob_account) { Fabricate(:account, username: 'bob') }
after do
streaming_client.close
end
context 'when the access token has read scope' do
let(:scopes) { 'read' }
it 'can subscribing to the public:local channel' do
streaming_client.authenticate(access_token.token)
streaming_client.connect
streaming_client.subscribe('public:local')
# We need to publish a status as there is no positive acknowledgement of
# subscriptions:
status = PostStatusService.new.call(bob_account, text: 'Hello @alice')
# And then we want to receive that status:
message = streaming_client.wait_for_message
expect(message).to include(
stream: be_an(Array).and(contain_exactly('public:local')),
event: 'update',
payload: include(
id: status.id.to_s
)
)
end
end
context 'when the access token cannot read notifications' do
let(:scopes) { 'read:statuses' }
it 'cannot subscribing to the user:notifications channel' do
streaming_client.authenticate(access_token.token)
streaming_client.connect
streaming_client.subscribe('user:notification')
# We should receive an error back immediately:
message = streaming_client.wait_for_message
expect(message).to include(
error: 'Access token does not have the required scopes',
status: 401
)
end
end
end

View File

@@ -0,0 +1,77 @@
# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Streaming', :inline_jobs, :streaming do
let(:authentication_method) { StreamingClient::AUTHENTICATION::SUBPROTOCOL }
let(:user) { Fabricate(:user) }
let(:scopes) { '' }
let(:application) { Fabricate(:application, confidential: false) }
let(:token) { Fabricate(:accessible_access_token, resource_owner_id: user.id, application: application, scopes: scopes) }
let(:access_token) { token.token }
before do
streaming_client.authenticate(access_token, authentication_method)
end
after do
streaming_client.close
end
context 'when authenticating via subprotocol' do
it 'is able to connect' do
streaming_client.connect
expect(streaming_client.status).to eq(101)
expect(streaming_client.open?).to be(true)
end
end
context 'when authenticating via authorization header' do
let(:authentication_method) { StreamingClient::AUTHENTICATION::AUTHORIZATION_HEADER }
it 'is able to connect successfully' do
streaming_client.connect
expect(streaming_client.status).to eq(101)
expect(streaming_client.open?).to be(true)
end
end
context 'when authenticating via query parameter' do
let(:authentication_method) { StreamingClient::AUTHENTICATION::QUERY_PARAMETER }
it 'is able to connect successfully' do
streaming_client.connect
expect(streaming_client.status).to eq(101)
expect(streaming_client.open?).to be(true)
end
end
context 'with a revoked access token' do
before do
token.revoke
end
it 'receives an 401 unauthorized error' do
streaming_client.connect
expect(streaming_client.status).to eq(401)
expect(streaming_client.open?).to be(false)
end
end
context 'when revoking an access token after connection' do
it 'disconnects the client' do
streaming_client.connect
expect(streaming_client.status).to eq(101)
expect(streaming_client.open?).to be(true)
token.revoke
expect(streaming_client.wait_for(:closed).code).to be(1000)
expect(streaming_client.open?).to be(false)
end
end
end