You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.2 KiB
47 lines
1.2 KiB
# frozen_string_literal: true
|
|
|
|
require 'singleton'
|
|
|
|
class TagManager
|
|
include Singleton
|
|
include RoutingHelper
|
|
|
|
def web_domain?(domain)
|
|
domain.nil? || domain.gsub(/[\/]/, '').casecmp(Rails.configuration.x.web_domain).zero?
|
|
end
|
|
|
|
def local_domain?(domain)
|
|
domain.nil? || domain.gsub(/[\/]/, '').casecmp(Rails.configuration.x.local_domain).zero?
|
|
end
|
|
|
|
def normalize_domain(domain)
|
|
return if domain.nil?
|
|
|
|
uri = Addressable::URI.new
|
|
uri.host = domain.gsub(/[\/]/, '')
|
|
uri.normalized_host
|
|
end
|
|
|
|
def same_acct?(canonical, needle)
|
|
return true if canonical.casecmp(needle).zero?
|
|
username, domain = needle.split('@')
|
|
local_domain?(domain) && canonical.casecmp(username).zero?
|
|
end
|
|
|
|
def local_url?(url)
|
|
uri = Addressable::URI.parse(url).normalize
|
|
domain = uri.host + (uri.port ? ":#{uri.port}" : '')
|
|
TagManager.instance.web_domain?(domain)
|
|
end
|
|
|
|
def url_for(target)
|
|
return target.url if target.respond_to?(:local?) && !target.local?
|
|
|
|
case target.object_type
|
|
when :person
|
|
short_account_url(target)
|
|
when :note, :comment, :activity
|
|
short_account_status_url(target.account, target)
|
|
end
|
|
end
|
|
end
|
|
|