Fix plugin assets are no longer copied under plugin name (#36218, #29914, #32938).

git-svn-id: http://svn.redmine.org/redmine/trunk@21295 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu
2021-11-25 21:34:40 +00:00
parent 5865edeba7
commit 79e7cde849
3 changed files with 53 additions and 3 deletions

View File

@@ -38,21 +38,24 @@ module Redmine
def mirror_assets def mirror_assets
return unless has_assets_dir? return unless has_assets_dir?
destination = File.join(PluginLoader.public_directory, File.basename(@dir))
source_files = Dir["#{assets_dir}/**/*"] source_files = Dir["#{assets_dir}/**/*"]
source_dirs = source_files.select { |d| File.directory?(d)} source_dirs = source_files.select { |d| File.directory?(d)}
source_files -= source_dirs source_files -= source_dirs
unless source_files.empty? unless source_files.empty?
base_target_dir = File.join(PluginLoader.public_directory, File.dirname(source_files.first).gsub(assets_dir, '')) base_target_dir = File.join(destination, File.dirname(source_files.first).gsub(assets_dir, ''))
begin begin
FileUtils.mkdir_p(base_target_dir) FileUtils.mkdir_p(base_target_dir)
rescue => e rescue => e
raise "Could not create directory #{base_target_dir}: " + e.message raise "Could not create directory #{base_target_dir}: " + e.message
end end
end end
source_dirs.each do |dir| source_dirs.each do |dir|
# strip down these paths so we have simple, relative paths we can # strip down these paths so we have simple, relative paths we can
# add to the destination # add to the destination
target_dir = File.join(PluginLoader.public_directory, dir.gsub(assets_dir, '')) target_dir = File.join(destination, dir.gsub(assets_dir, ''))
begin begin
FileUtils.mkdir_p(target_dir) FileUtils.mkdir_p(target_dir)
rescue => e rescue => e
@@ -60,7 +63,7 @@ module Redmine
end end
end end
source_files.each do |file| source_files.each do |file|
target = File.join(PluginLoader.public_directory, file.gsub(assets_dir, '')) target = File.join(destination, file.gsub(assets_dir, ''))
unless File.exist?(target) && FileUtils.identical?(file, target) unless File.exist?(target) && FileUtils.identical?(file, target)
FileUtils.cp(file, target) FileUtils.cp(file, target)
end end

View File

@@ -0,0 +1,47 @@
# frozen_string_literal: true
# Redmine - project management software
# Copyright (C) 2006-2021 Jean-Philippe Lang
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
require File.expand_path('../../../../test_helper', __FILE__)
class Redmine::PluginLoaderTest < ActiveSupport::TestCase
def setup
clear_public
@klass = Redmine::PluginLoader
@klass.directory = Rails.root.join('test/fixtures/plugins')
@klass.public_directory = Rails.root.join('tmp/public/plugin_assets')
@klass.load
end
def teardown
clear_public
end
def test_create_assets_reloader
plugin_assets = @klass.create_assets_reloader
plugin_assets.execute.inspect
assert File.exist?("#{@klass.public_directory}/foo_plugin")
assert File.exist?("#{@klass.public_directory}/foo_plugin/stylesheets/foo.css")
end
def clear_public
FileUtils.rm_rf 'tmp/public'
end
end