Conflicts: - `CONTRIBUTING.md`: Upstream changed the file, while we had a different one. Updated the common parts. - `README.md`: Upstream changed the file, while we had a different one. Updated the common parts. - `app/helpers/application_helper.rb`: Upstream added helpers where glitch-soc had extra ones. Added upstream's new helpers. - `app/models/form/admin_settings.rb`: Upstream added some custom handling of one setting, while glitch-soc had additional code. Ported upstream's code. - `lib/mastodon/version.rb`: Upstream moved some things to `config/mastodon.yml`. Did the same. - `spec/requests/api/v1/accounts/credentials_spec.rb`: I don't know honestly.
86 lines
1.6 KiB
Ruby
86 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Mastodon
|
|
module Version
|
|
module_function
|
|
|
|
def major
|
|
4
|
|
end
|
|
|
|
def minor
|
|
4
|
|
end
|
|
|
|
def patch
|
|
0
|
|
end
|
|
|
|
def default_prerelease
|
|
'alpha.1'
|
|
end
|
|
|
|
def prerelease
|
|
version_configuration[:prerelease].presence || default_prerelease
|
|
end
|
|
|
|
def build_metadata
|
|
version_configuration[:metadata]
|
|
end
|
|
|
|
def to_a
|
|
[major, minor, patch].compact
|
|
end
|
|
|
|
def to_s
|
|
components = [to_a.join('.')]
|
|
components << "-#{prerelease}" if prerelease.present?
|
|
components << "+#{build_metadata}" if build_metadata.present?
|
|
components.join
|
|
end
|
|
|
|
def gem_version
|
|
@gem_version ||= Gem::Version.new(to_s.split('+')[0])
|
|
end
|
|
|
|
def api_versions
|
|
{
|
|
mastodon: 2,
|
|
}
|
|
end
|
|
|
|
def repository
|
|
ENV.fetch('GITHUB_REPOSITORY', 'glitch-soc/mastodon')
|
|
end
|
|
|
|
def source_base_url
|
|
ENV.fetch('SOURCE_BASE_URL', "https://github.com/#{repository}")
|
|
end
|
|
|
|
# specify git tag or commit hash here
|
|
def source_tag
|
|
ENV.fetch('SOURCE_TAG', nil)
|
|
end
|
|
|
|
def source_url
|
|
if source_tag
|
|
"#{source_base_url}/tree/#{source_tag}"
|
|
else
|
|
source_base_url
|
|
end
|
|
end
|
|
|
|
def source_commit
|
|
ENV.fetch('SOURCE_COMMIT', nil)
|
|
end
|
|
|
|
def user_agent
|
|
@user_agent ||= "Mastodon/#{Version} (#{HTTP::Request::USER_AGENT}; +http#{Rails.configuration.x.use_https ? 's' : ''}://#{Rails.configuration.x.web_domain}/)"
|
|
end
|
|
|
|
def version_configuration
|
|
Rails.configuration.x.mastodon.version
|
|
end
|
|
end
|
|
end
|