2017-04-21 01:30:59 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mastodon
|
2017-04-27 13:22:19 +00:00
|
|
|
module Version
|
|
|
|
module_function
|
|
|
|
|
|
|
|
def major
|
2019-09-21 18:02:14 +00:00
|
|
|
3
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def minor
|
2022-03-15 07:16:45 +00:00
|
|
|
5
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def patch
|
2022-05-26 21:26:15 +00:00
|
|
|
3
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
2019-07-26 05:57:27 +00:00
|
|
|
def flags
|
2022-03-30 12:52:37 +00:00
|
|
|
''
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
2019-07-26 05:57:27 +00:00
|
|
|
def suffix
|
2019-06-13 18:19:21 +00:00
|
|
|
''
|
2017-07-24 14:21:08 +00:00
|
|
|
end
|
|
|
|
|
2017-04-27 13:22:19 +00:00
|
|
|
def to_a
|
2019-07-26 05:57:27 +00:00
|
|
|
[major, minor, patch].compact
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
2019-07-26 05:57:27 +00:00
|
|
|
[to_a.join('.'), flags, suffix].join
|
2017-04-27 13:22:19 +00:00
|
|
|
end
|
2017-08-22 20:54:19 +00:00
|
|
|
|
2018-07-28 17:25:33 +00:00
|
|
|
def repository
|
2021-07-13 13:46:20 +00:00
|
|
|
ENV.fetch('GITHUB_REPOSITORY', 'mastodon/mastodon')
|
2018-07-28 17:25:33 +00:00
|
|
|
end
|
|
|
|
|
2017-08-22 20:54:19 +00:00
|
|
|
def source_base_url
|
2020-09-01 01:04:00 +00:00
|
|
|
ENV.fetch('SOURCE_BASE_URL', "https://github.com/#{repository}")
|
2017-08-22 20:54:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# specify git tag or commit hash here
|
|
|
|
def source_tag
|
2020-09-01 01:04:00 +00:00
|
|
|
ENV.fetch('SOURCE_TAG', nil)
|
2017-08-22 20:54:19 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def source_url
|
|
|
|
if source_tag
|
|
|
|
"#{source_base_url}/tree/#{source_tag}"
|
|
|
|
else
|
|
|
|
source_base_url
|
|
|
|
end
|
|
|
|
end
|
2018-05-17 23:47:22 +00: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 13:22:19 +00:00
|
|
|
end
|
2017-04-21 01:30:59 +00:00
|
|
|
end
|