2017-04-21 03:30:59 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mastodon
|
2017-04-27 15:22:19 +02:00
|
|
|
module Version
|
|
|
|
module_function
|
|
|
|
|
|
|
|
def major
|
2022-10-28 00:26:02 +02:00
|
|
|
4
|
2017-04-27 15:22:19 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def minor
|
2023-09-28 13:40:43 +02:00
|
|
|
3
|
2017-04-27 15:22:19 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def patch
|
2023-08-08 16:12:12 +02:00
|
|
|
0
|
2017-04-27 15:22:19 +02:00
|
|
|
end
|
|
|
|
|
2023-08-25 18:26:44 +02:00
|
|
|
def default_prerelease
|
2023-09-28 13:40:43 +02:00
|
|
|
'alpha.0'
|
2017-04-27 15:22:19 +02:00
|
|
|
end
|
|
|
|
|
2023-08-25 18:26:44 +02:00
|
|
|
def prerelease
|
|
|
|
ENV['MASTODON_VERSION_PRERELEASE'].presence || default_prerelease
|
|
|
|
end
|
|
|
|
|
|
|
|
def build_metadata
|
|
|
|
ENV.fetch('MASTODON_VERSION_METADATA', nil)
|
2017-07-24 16:21:08 +02:00
|
|
|
end
|
|
|
|
|
2017-04-27 15:22:19 +02:00
|
|
|
def to_a
|
2019-07-26 07:57:27 +02:00
|
|
|
[major, minor, patch].compact
|
2017-04-27 15:22:19 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
2023-08-25 18:26:44 +02:00
|
|
|
components = [to_a.join('.')]
|
|
|
|
components << "-#{prerelease}" if prerelease.present?
|
|
|
|
components << "+#{build_metadata}" if build_metadata.present?
|
|
|
|
components.join
|
2017-04-27 15:22:19 +02:00
|
|
|
end
|
2017-08-22 22:54:19 +02:00
|
|
|
|
2023-09-01 17:47:07 +02:00
|
|
|
def gem_version
|
|
|
|
@gem_version ||= Gem::Version.new(to_s.split('+')[0])
|
|
|
|
end
|
|
|
|
|
2018-07-28 19:25:33 +02:00
|
|
|
def repository
|
2021-07-13 15:46:20 +02:00
|
|
|
ENV.fetch('GITHUB_REPOSITORY', 'mastodon/mastodon')
|
2018-07-28 19:25:33 +02:00
|
|
|
end
|
|
|
|
|
2017-08-22 22:54:19 +02:00
|
|
|
def source_base_url
|
2020-09-01 03:04:00 +02:00
|
|
|
ENV.fetch('SOURCE_BASE_URL', "https://github.com/#{repository}")
|
2017-08-22 22:54:19 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
# specify git tag or commit hash here
|
|
|
|
def source_tag
|
2020-09-01 03:04:00 +02:00
|
|
|
ENV.fetch('SOURCE_TAG', nil)
|
2017-08-22 22:54:19 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def source_url
|
|
|
|
if source_tag
|
|
|
|
"#{source_base_url}/tree/#{source_tag}"
|
|
|
|
else
|
|
|
|
source_base_url
|
|
|
|
end
|
|
|
|
end
|
2018-05-18 01:47:22 +02:00
|
|
|
|
|
|
|
def user_agent
|
|
|
|
@user_agent ||= "#{HTTP::Request::USER_AGENT} (Mastodon/#{Version}; +http#{Rails.configuration.x.use_https ? 's' : ''}://#{Rails.configuration.x.web_domain}/)"
|
|
|
|
end
|
2017-04-27 15:22:19 +02:00
|
|
|
end
|
2017-04-21 03:30:59 +02:00
|
|
|
end
|