2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-12 15:36:06 +08:00
|
|
|
module ThemeStore; end
|
|
|
|
|
|
|
|
class ThemeStore::GitImporter
|
2017-04-12 22:52:52 +08:00
|
|
|
|
|
|
|
attr_reader :url
|
|
|
|
|
2018-10-09 14:01:08 +08:00
|
|
|
def initialize(url, private_key: nil, branch: nil)
|
2017-04-12 22:52:52 +08:00
|
|
|
@url = url
|
|
|
|
if @url.start_with?("https://github.com") && !@url.end_with?(".git")
|
2019-06-04 17:28:36 +08:00
|
|
|
@url = @url.gsub(/\/$/, '')
|
2017-04-12 22:52:52 +08:00
|
|
|
@url += ".git"
|
|
|
|
end
|
2017-04-13 02:47:37 +08:00
|
|
|
@temp_folder = "#{Pathname.new(Dir.tmpdir).realpath}/discourse_theme_#{SecureRandom.hex}"
|
2018-03-09 13:14:21 +08:00
|
|
|
@private_key = private_key
|
2018-10-09 14:01:08 +08:00
|
|
|
@branch = branch
|
2017-04-12 22:52:52 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def import!
|
2018-03-09 13:14:21 +08:00
|
|
|
if @private_key
|
|
|
|
import_private!
|
|
|
|
else
|
|
|
|
import_public!
|
|
|
|
end
|
2017-04-12 22:52:52 +08:00
|
|
|
end
|
|
|
|
|
2019-05-03 09:43:54 +08:00
|
|
|
def diff_local_changes(remote_theme_id)
|
|
|
|
theme = Theme.find_by(remote_theme_id: remote_theme_id)
|
|
|
|
raise Discourse::InvalidParameters.new(:id) unless theme
|
|
|
|
local_version = theme.remote_theme&.local_version
|
|
|
|
|
2019-10-03 21:19:35 +08:00
|
|
|
exporter = ThemeStore::ZipExporter.new(theme)
|
2019-05-03 09:43:54 +08:00
|
|
|
local_temp_folder = exporter.export_to_folder
|
|
|
|
|
2019-11-13 17:57:39 +08:00
|
|
|
Discourse::Utils.execute_command(chdir: @temp_folder) do |runner|
|
|
|
|
runner.exec("git", "checkout", local_version)
|
|
|
|
runner.exec("rm -rf ./*/")
|
|
|
|
runner.exec("cp", "-rf", "#{local_temp_folder}/#{exporter.export_name}/.", @temp_folder)
|
|
|
|
runner.exec("git", "checkout", "about.json")
|
2019-11-07 03:45:18 +08:00
|
|
|
# add + diff staged to catch uploads but exclude renamed assets
|
2019-11-13 17:57:39 +08:00
|
|
|
runner.exec("git", "add", "-A")
|
|
|
|
return runner.exec("git", "diff", "--staged", "--diff-filter=r")
|
2019-05-03 09:43:54 +08:00
|
|
|
end
|
|
|
|
ensure
|
2019-05-17 16:45:11 +08:00
|
|
|
FileUtils.rm_rf local_temp_folder if local_temp_folder
|
2019-05-03 09:43:54 +08:00
|
|
|
end
|
|
|
|
|
2017-04-12 22:52:52 +08:00
|
|
|
def commits_since(hash)
|
|
|
|
commit_hash, commits_behind = nil
|
|
|
|
|
2019-11-13 17:57:39 +08:00
|
|
|
Discourse::Utils.execute_command(chdir: @temp_folder) do |runner|
|
|
|
|
commit_hash = runner.exec("git", "rev-parse", "HEAD").strip
|
|
|
|
commits_behind = runner.exec("git", "rev-list", "#{hash}..HEAD", "--count").strip
|
2017-04-12 22:52:52 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
[commit_hash, commits_behind]
|
|
|
|
end
|
|
|
|
|
|
|
|
def version
|
2019-11-13 17:57:39 +08:00
|
|
|
Discourse::Utils.execute_command("git", "rev-parse", "HEAD", chdir: @temp_folder).strip
|
2017-04-12 22:52:52 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def cleanup!
|
|
|
|
FileUtils.rm_rf(@temp_folder)
|
|
|
|
end
|
|
|
|
|
2017-05-10 05:20:28 +08:00
|
|
|
def real_path(relative)
|
|
|
|
fullpath = "#{@temp_folder}/#{relative}"
|
2017-04-12 22:52:52 +08: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-10 05:20:28 +08:00
|
|
|
|
2017-04-12 22:52:52 +08:00
|
|
|
if fullpath && fullpath.start_with?(@temp_folder)
|
2017-05-10 05:20:28 +08:00
|
|
|
fullpath
|
|
|
|
else
|
|
|
|
nil
|
2017-04-12 22:52:52 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-23 22:40:21 +08:00
|
|
|
def all_files
|
2019-11-14 07:45:09 +08:00
|
|
|
Dir.glob("**/*", base: @temp_folder).reject { |f| File.directory?(File.join(@temp_folder, f)) }
|
2019-01-23 22:40:21 +08:00
|
|
|
end
|
|
|
|
|
2017-05-10 05:20:28 +08:00
|
|
|
def [](value)
|
|
|
|
fullpath = real_path(value)
|
|
|
|
return nil unless fullpath
|
|
|
|
File.read(fullpath)
|
|
|
|
end
|
|
|
|
|
2018-03-09 13:14:21 +08:00
|
|
|
protected
|
|
|
|
|
|
|
|
def import_public!
|
2018-09-08 21:24:11 +08:00
|
|
|
begin
|
2018-10-09 14:01:08 +08:00
|
|
|
if @branch.present?
|
|
|
|
Discourse::Utils.execute_command("git", "clone", "--single-branch", "-b", @branch, @url, @temp_folder)
|
|
|
|
else
|
|
|
|
Discourse::Utils.execute_command("git", "clone", @url, @temp_folder)
|
|
|
|
end
|
2019-01-23 22:40:21 +08:00
|
|
|
rescue RuntimeError => err
|
|
|
|
raise RemoteTheme::ImportError.new(I18n.t("themes.import_error.git"))
|
2018-09-08 21:24:11 +08:00
|
|
|
end
|
2018-03-09 13:14:21 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def import_private!
|
|
|
|
ssh_folder = "#{Pathname.new(Dir.tmpdir).realpath}/discourse_theme_ssh_#{SecureRandom.hex}"
|
|
|
|
FileUtils.mkdir_p ssh_folder
|
|
|
|
|
2020-03-11 01:20:11 +08:00
|
|
|
File.write("#{ssh_folder}/id_rsa", @private_key)
|
2019-11-13 17:57:39 +08:00
|
|
|
FileUtils.chmod(0600, "#{ssh_folder}/id_rsa")
|
2018-03-09 13:14:21 +08:00
|
|
|
|
2018-09-08 21:24:11 +08:00
|
|
|
begin
|
2018-10-09 14:01:08 +08: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 22:40:21 +08:00
|
|
|
rescue RuntimeError => err
|
|
|
|
raise RemoteTheme::ImportError.new(I18n.t("themes.import_error.git"))
|
2018-09-08 21:24:11 +08:00
|
|
|
end
|
2018-03-09 13:14:21 +08:00
|
|
|
ensure
|
|
|
|
FileUtils.rm_rf ssh_folder
|
|
|
|
end
|
|
|
|
|
2017-04-12 22:52:52 +08:00
|
|
|
end
|