From 79609d62705fa7060c1d1ab78234b4aabdbd7e0f Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Wed, 24 Feb 2016 18:25:04 +0100 Subject: Add service for posting statuses (normal and replies), mention regex to fetch webfinger information of mentioned accounts --- app/models/status.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'app/models/status.rb') diff --git a/app/models/status.rb b/app/models/status.rb index be616dce6..80719140e 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -51,6 +51,17 @@ class Status < ActiveRecord::Base m << thread.account if reply? m << reblog.account if reblog? + unless reblog? + self.text.scan(Account::MENTION_RE).each do |match| + uri = match.first + username = uri.split('@').first + domain = uri.split('@').size == 2 ? uri.split('@').last : nil + account = Account.find_by(username: username, domain: domain) + + m << account unless account.nil? + end + end + m end -- cgit