2019-05-02 18:17:27 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-12 03:36:06 -04:00
|
|
|
module ThemeStore; end
|
|
|
|
|
|
|
|
class ThemeStore::GitImporter
|
2021-04-27 12:04:15 -04:00
|
|
|
COMMAND_TIMEOUT_SECONDS = 20
|
2017-04-12 10:52:52 -04:00
|
|
|
|
|
|
|
attr_reader :url
|
|
|
|
|
2018-10-09 02:01:08 -04:00
|
|
|
def initialize(url, private_key: nil, branch: nil)
|
2017-04-12 10:52:52 -04:00
|
|
|
@url = url
|
|
|
|
if @url.start_with?("https://github.com") && !@url.end_with?(".git")
|
2019-06-04 05:28:36 -04:00
|
|
|
@url = @url.gsub(/\/$/, '')
|
2017-04-12 10:52:52 -04:00
|
|
|
@url += ".git"
|
|
|
|
end
|
2017-04-12 14:47:37 -04:00
|
|
|
@temp_folder = "#{Pathname.new(Dir.tmpdir).realpath}/discourse_theme_#{SecureRandom.hex}"
|
2018-03-09 00:14:21 -05:00
|
|
|
@private_key = private_key
|
2018-10-09 02:01:08 -04:00
|
|
|
@branch = branch
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def import!
|
2018-03-09 00:14:21 -05:00
|
|
|
if @private_key
|
|
|
|
import_private!
|
|
|
|
else
|
|
|
|
import_public!
|
|
|
|
end
|
2020-07-06 17:48:00 -04:00
|
|
|
if version = Discourse.find_compatible_git_resource(@temp_folder)
|
2021-04-27 12:04:15 -04:00
|
|
|
begin
|
|
|
|
execute "git", "cat-file", "-e", version
|
|
|
|
rescue RuntimeError => e
|
|
|
|
tracking_ref = execute "git", "rev-parse", "--abbrev-ref", "--symbolic-full-name", "@{upstream}"
|
|
|
|
remote_name = tracking_ref.split("/", 2)[0]
|
|
|
|
execute "git", "fetch", remote_name, "#{version}:#{version}"
|
|
|
|
end
|
|
|
|
|
|
|
|
begin
|
|
|
|
execute "git", "reset", "--hard", version
|
2021-04-14 10:32:47 -04:00
|
|
|
rescue RuntimeError
|
|
|
|
raise RemoteTheme::ImportError.new(I18n.t("themes.import_error.git_ref_not_found", ref: version))
|
2020-07-06 17:48:00 -04:00
|
|
|
end
|
|
|
|
end
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def commits_since(hash)
|
|
|
|
commit_hash, commits_behind = nil
|
|
|
|
|
2021-04-27 12:04:15 -04:00
|
|
|
commit_hash = execute("git", "rev-parse", "HEAD").strip
|
|
|
|
commits_behind = execute("git", "rev-list", "#{hash}..HEAD", "--count").strip rescue -1
|
2017-04-12 10:52:52 -04:00
|
|
|
|
|
|
|
[commit_hash, commits_behind]
|
|
|
|
end
|
|
|
|
|
|
|
|
def version
|
2021-04-27 12:45:54 -04:00
|
|
|
execute("git", "rev-parse", "HEAD").strip
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def cleanup!
|
|
|
|
FileUtils.rm_rf(@temp_folder)
|
|
|
|
end
|
|
|
|
|
2017-05-09 17:20:28 -04:00
|
|
|
def real_path(relative)
|
|
|
|
fullpath = "#{@temp_folder}/#{relative}"
|
2017-04-12 10:52:52 -04:00
|
|
|
return nil unless File.exist?(fullpath)
|
|
|
|
|
|
|
|
# careful to handle symlinks here, don't want to expose random data
|
|
|
|
fullpath = Pathname.new(fullpath).realpath.to_s
|
2017-05-09 17:20:28 -04:00
|
|
|
|
2017-04-12 10:52:52 -04:00
|
|
|
if fullpath && fullpath.start_with?(@temp_folder)
|
2017-05-09 17:20:28 -04:00
|
|
|
fullpath
|
|
|
|
else
|
|
|
|
nil
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-23 09:40:21 -05:00
|
|
|
def all_files
|
2019-11-13 18:45:09 -05:00
|
|
|
Dir.glob("**/*", base: @temp_folder).reject { |f| File.directory?(File.join(@temp_folder, f)) }
|
2019-01-23 09:40:21 -05:00
|
|
|
end
|
|
|
|
|
2017-05-09 17:20:28 -04:00
|
|
|
def [](value)
|
|
|
|
fullpath = real_path(value)
|
|
|
|
return nil unless fullpath
|
|
|
|
File.read(fullpath)
|
|
|
|
end
|
|
|
|
|
2018-03-09 00:14:21 -05:00
|
|
|
protected
|
|
|
|
|
|
|
|
def import_public!
|
2018-09-08 09:24:11 -04:00
|
|
|
begin
|
2018-10-09 02:01:08 -04:00
|
|
|
if @branch.present?
|
2021-11-23 06:54:51 -05:00
|
|
|
Discourse::Utils.execute_command({ "GIT_TERMINAL_PROMPT" => "0" }, "git", "clone", "--single-branch", "-b", @branch, @url, @temp_folder)
|
2018-10-09 02:01:08 -04:00
|
|
|
else
|
2021-11-23 06:54:51 -05:00
|
|
|
Discourse::Utils.execute_command({ "GIT_TERMINAL_PROMPT" => "0" }, "git", "clone", @url, @temp_folder)
|
2018-10-09 02:01:08 -04:00
|
|
|
end
|
2021-04-11 23:55:54 -04:00
|
|
|
rescue RuntimeError
|
2019-01-23 09:40:21 -05:00
|
|
|
raise RemoteTheme::ImportError.new(I18n.t("themes.import_error.git"))
|
2018-09-08 09:24:11 -04:00
|
|
|
end
|
2018-03-09 00:14:21 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def import_private!
|
|
|
|
ssh_folder = "#{Pathname.new(Dir.tmpdir).realpath}/discourse_theme_ssh_#{SecureRandom.hex}"
|
|
|
|
FileUtils.mkdir_p ssh_folder
|
|
|
|
|
2020-03-10 13:20:11 -04:00
|
|
|
File.write("#{ssh_folder}/id_rsa", @private_key)
|
2019-11-13 04:57:39 -05:00
|
|
|
FileUtils.chmod(0600, "#{ssh_folder}/id_rsa")
|
2018-03-09 00:14:21 -05:00
|
|
|
|
2018-09-08 09:24:11 -04:00
|
|
|
begin
|
2018-10-09 02:01:08 -04:00
|
|
|
git_ssh_command = { 'GIT_SSH_COMMAND' => "ssh -i #{ssh_folder}/id_rsa -o StrictHostKeyChecking=no" }
|
|
|
|
if @branch.present?
|
|
|
|
Discourse::Utils.execute_command(git_ssh_command, "git", "clone", "--single-branch", "-b", @branch, @url, @temp_folder)
|
|
|
|
else
|
|
|
|
Discourse::Utils.execute_command(git_ssh_command, "git", "clone", @url, @temp_folder)
|
|
|
|
end
|
2019-01-23 09:40:21 -05:00
|
|
|
rescue RuntimeError => err
|
|
|
|
raise RemoteTheme::ImportError.new(I18n.t("themes.import_error.git"))
|
2018-09-08 09:24:11 -04:00
|
|
|
end
|
2018-03-09 00:14:21 -05:00
|
|
|
ensure
|
|
|
|
FileUtils.rm_rf ssh_folder
|
|
|
|
end
|
|
|
|
|
2021-04-27 12:04:15 -04:00
|
|
|
def execute(*args)
|
|
|
|
Discourse::Utils.execute_command(*args, chdir: @temp_folder, timeout: COMMAND_TIMEOUT_SECONDS)
|
|
|
|
end
|
2017-04-12 10:52:52 -04:00
|
|
|
end
|