2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
module Discourse
|
2020-07-09 14:57:27 -04:00
|
|
|
VERSION_REGEXP ||= /\A\d+\.\d+\.\d+(\.beta\d+)?\z/
|
|
|
|
VERSION_COMPATIBILITY_FILENAME ||= ".discourse-compatibility"
|
2020-07-06 17:48:00 -04:00
|
|
|
|
2013-08-07 18:47:04 -04:00
|
|
|
# work around reloader
|
|
|
|
unless defined? ::Discourse::VERSION
|
2013-03-12 23:06:58 -04:00
|
|
|
module VERSION #:nodoc:
|
2018-01-03 16:54:55 -05:00
|
|
|
MAJOR = 2
|
2020-06-24 14:00:19 -04:00
|
|
|
MINOR = 6
|
2014-08-26 15:24:07 -04:00
|
|
|
TINY = 0
|
2020-09-24 16:05:52 -04:00
|
|
|
PRE = 'beta3'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-03-12 23:06:58 -04:00
|
|
|
STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2015-04-27 13:06:53 -04:00
|
|
|
|
|
|
|
def self.has_needed_version?(current, needed)
|
2020-06-29 03:52:33 -04:00
|
|
|
Gem::Version.new(current) >= Gem::Version.new(needed)
|
2015-04-27 13:06:53 -04:00
|
|
|
end
|
2020-07-06 17:48:00 -04:00
|
|
|
|
|
|
|
# lookup an external resource (theme/plugin)'s best compatible version
|
|
|
|
# compatible resource files are YAML, in the format:
|
|
|
|
# `discourse_version: plugin/theme git reference.` For example:
|
|
|
|
# 2.5.0.beta6: c4a6c17
|
|
|
|
# 2.5.0.beta4: d1d2d3f
|
|
|
|
# 2.5.0.beta2: bbffee
|
|
|
|
# 2.4.4.beta6: some-other-branch-ref
|
|
|
|
# 2.4.2.beta1: v1-tag
|
2020-07-09 14:57:27 -04:00
|
|
|
def self.find_compatible_resource(version_list, version = ::Discourse::VERSION::STRING)
|
2020-07-06 17:48:00 -04:00
|
|
|
|
|
|
|
return unless version_list
|
|
|
|
|
2020-07-09 14:57:27 -04:00
|
|
|
version_list = YAML.load(version_list).sort_by { |v, pin| Gem::Version.new(v) }.reverse
|
2020-07-06 17:48:00 -04:00
|
|
|
|
|
|
|
# If plugin compat version is listed as less than current Discourse version, take the version/hash listed before.
|
|
|
|
checkout_version = nil
|
|
|
|
version_list.each do |core_compat, target|
|
2020-07-09 14:57:27 -04:00
|
|
|
if Gem::Version.new(core_compat) == Gem::Version.new(version) # Exact version match - return it
|
2020-07-06 17:48:00 -04:00
|
|
|
checkout_version = target
|
|
|
|
break
|
2020-07-09 14:57:27 -04:00
|
|
|
elsif Gem::Version.new(core_compat) < Gem::Version.new(version) # Core is on a higher version than listed, use a later version
|
2020-07-06 17:48:00 -04:00
|
|
|
break
|
|
|
|
end
|
|
|
|
checkout_version = target
|
|
|
|
end
|
|
|
|
|
|
|
|
checkout_version
|
|
|
|
end
|
|
|
|
|
|
|
|
# Find a compatible resource from a git repo
|
|
|
|
def self.find_compatible_git_resource(path)
|
|
|
|
return unless File.directory?("#{path}/.git")
|
|
|
|
compat_resource, std_error, s = Open3.capture3("git -C '#{path}' show HEAD@{upstream}:#{Discourse::VERSION_COMPATIBILITY_FILENAME}")
|
|
|
|
Discourse.find_compatible_resource(compat_resource) if s.success?
|
|
|
|
end
|
2013-03-12 23:06:58 -04:00
|
|
|
end
|