Skip to content

Commit 7f26e47

Browse files
committed
Merge branch 'redmine5'
2 parents aa74f68 + 3796efb commit 7f26e47

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+200
-167
lines changed

.github/workflows/brakeman.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Run Brakeman
22

3-
on: [push]
3+
on:
4+
- push
5+
- pull_request
46

57
jobs:
68
build:
@@ -23,7 +25,7 @@ jobs:
2325
- name: Setup Ruby
2426
uses: ruby/setup-ruby@v1
2527
with:
26-
ruby-version: 2.6
28+
ruby-version: 3.1
2729
bundler-cache: true
2830

2931
- name: Setup gems

.github/workflows/rubocop.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Run RuboCop
22

3-
on: [push]
3+
on:
4+
- push
5+
- pull_request
46

57
jobs:
68
build:
@@ -23,7 +25,7 @@ jobs:
2325
- name: Setup Ruby
2426
uses: ruby/setup-ruby@v1
2527
with:
26-
ruby-version: 2.6
28+
ruby-version: 3.1
2729
bundler-cache: true
2830

2931
- name: Setup gems

.github/workflows/stylelint.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
name: Run StyleLint
22

3-
on: [push]
3+
on:
4+
- push
5+
- pull_request
46

57
jobs:
68
build:
@@ -11,6 +13,6 @@ jobs:
1113
- uses: actions/checkout@v2
1214
- uses: actions/setup-node@v2
1315
with:
14-
node-version: '14'
16+
node-version: '16'
1517
- run: yarn install
1618
- run: node_modules/.bin/stylelint "assets/stylesheets/*.css"

.github/workflows/test.yml

+11-12
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: Test
2+
23
on:
3-
push:
4-
pull_request:
4+
- push
5+
- pull_request
56

67
jobs:
78
test:
@@ -10,16 +11,9 @@ jobs:
1011

1112
strategy:
1213
matrix:
13-
ruby: ['2.7', '2.6', '3.0']
14-
redmine: ['4.1-stable', '4.2-stable', 'master']
14+
ruby: ['2.7', '3.0', '3.1']
15+
redmine: ['5.0-stable', 'master']
1516
db: ['postgres', 'mysql']
16-
exclude:
17-
- ruby: 2.7
18-
redmine: 4.1-stable
19-
- ruby: '3.0'
20-
redmine: 4.1-stable
21-
- ruby: '3.0'
22-
redmine: 4.2-stable
2317
fail-fast: false
2418

2519
services:
@@ -77,7 +71,10 @@ jobs:
7771
- name: Checkout redmine_sidekiq
7872
uses: actions/checkout@v2
7973
with:
80-
repository: ogom/redmine_sidekiq
74+
# TODO Switch back to the original repo, once https://github.com/ogom/redmine_sidekiq/pull/16 is released
75+
# repository: ogom/redmine_sidekiq
76+
repository: dosyfier/redmine_sidekiq
77+
ref: fix-rails-6
8178
path: redmine/plugins/redmine_sidekiq
8279

8380
- name: Checkout gitolite
@@ -100,6 +97,7 @@ jobs:
10097
libmysqlclient-dev
10198
libssh2-1
10299
libssh2-1-dev
100+
pkg-config
103101
subversion
104102
105103
- name: Setup Ruby
@@ -132,6 +130,7 @@ jobs:
132130
working-directory: redmine
133131
run: |
134132
bundle config set --local without 'development'
133+
bundle config build.rugged --with-ssh
135134
bundle install --jobs=4 --retry=3
136135
137136
- name: Run Redmine rake tasks

.rubocop.yml

+8
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,11 @@ Layout/SpaceBeforeBrackets:
124124
Rails/EnvironmentVariableAccess:
125125
Enabled: true
126126
AllowReads: true
127+
128+
# Hrack::Server requires the `initialize` method
129+
Style/RedundantInitialize:
130+
Enabled: false
131+
132+
# Because our unit tests assert that
133+
Rails/RedundantPresenceValidationOnBelongsTo:
134+
Enabled: false

Gemfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# frozen_string_literal: true
22

3+
source 'https://rubygems.org'
4+
35
# Gitolite Admin repository management
4-
gem 'gitolite-rugged', git: 'https://github.com/jbox-web/gitolite-rugged.git', tag: '1.4.0'
6+
gem 'gitolite-rugged', git: 'https://github.com/jbox-web/gitolite-rugged.git', tag: '1.5.0'
57

68
# Ruby/Rack Git Smart-HTTP Server Handler
79
gem 'gitlab-grack', '~> 2.0.0', git: 'https://github.com/jbox-web/grack.git', require: 'grack', branch: 'fix_gemfile'
@@ -16,9 +18,7 @@ gem 'hiredis'
1618
gem 'redis'
1719

1820
# Markdown rendering
19-
gem 'deckar01-task_list'
2021
gem 'escape_utils'
21-
gem 'html-pipeline', '~> 2.13.2'
2222
gem 'rinku'
2323

2424
# Syntaxic coloration

app/controllers/concerns/xitolite_repository_finder.rb

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@ def find_xitolite_repository_by_path
1616
repo_path = "#{params[:repo_path]}.git"
1717
repository = Repository::Xitolite.find_by_path repo_path, loose: true
1818
if repository.nil?
19-
RedmineGitHosting.logger.error "GoRedirector : repository not found at path : '#{repo_path}'," \
20-
' exiting!'
19+
RedmineGitHosting.logger.error "GoRedirector : repository not found at path : '#{repo_path}', " \
20+
'exiting!'
2121
render_404
2222
elsif !repository.go_access_available?
23-
RedmineGitHosting.logger.error "GoRedirector : GoAccess is disabled for this repository '#{repository.gitolite_repository_name}'," \
24-
' exiting!'
23+
RedmineGitHosting.logger.error "GoRedirector : GoAccess is disabled for this repository '#{repository.gitolite_repository_name}', " \
24+
'exiting!'
2525
render_403
2626
else
2727
RedmineGitHosting.logger.info "GoRedirector : access granted for repository '#{repository.gitolite_repository_name}'"

app/overrides/repositories/navigation.rb

+5
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,8 @@
55
insert_before: 'erb[loud]:contains("label_statistics")',
66
original: '88f120e99075ba3246901c6e970ca671d7166855',
77
text: '<%= call_hook(:view_repositories_navigation, repository: @repository) %>'
8+
9+
module Repositories
10+
module Navigation
11+
end
12+
end

app/overrides/repositories/show.rb

+5
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,8 @@
1111
insert_before: 'erb[silent]:contains("html_title")',
1212
original: '2a0a09659d76066b896016c72527d479c69463ec',
1313
partial: 'hooks/show_repositories_sidebar'
14+
15+
module Repositories
16+
module Show
17+
end
18+
end

app/views/settings/redmine_git_hosting/_gitolite_config_test.html.slim

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,4 @@ fieldset.box.tabular
9292
br
9393
fieldset.box.tabular
9494
legend = l :label_path_directories
95-
pre == (ENV['PATH']).gsub(/:/, '<br/>')
95+
pre == ENV.fetch('PATH', nil).gsub(/:/, '<br/>')

contrib/hooks/post-receive/lib/git_hosting_http_helper.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
module GitHosting
99
module HttpHelper
1010
def http_post(url, opts = {}, &block)
11-
http, request = build_post_request url, opts
11+
http, request = build_post_request url, **opts
1212
send_http_request http, request, &block
1313
end
1414

init.rb

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# frozen_string_literal: true
22

3-
require 'redmine'
4-
require 'redmine_git_hosting'
3+
$LOAD_PATH.unshift "#{File.dirname __FILE__}/lib"
54

65
Redmine::Plugin.register :redmine_git_hosting do
76
name 'Redmine Git Hosting Plugin'
@@ -67,6 +66,12 @@
6766
# This *must stay after* Redmine::Plugin.register statement
6867
# because it needs to access to plugin settings...
6968
# so we need the plugin to be fully registered...
70-
Rails.configuration.to_prepare do
71-
require_dependency 'load_gitolite_hooks'
72-
end
69+
require_dependency 'load_gitolite_hooks'
70+
71+
# Autoload Git Hosting Libs and Patches
72+
RedmineGitHosting.load_plugin!
73+
74+
# Redmine SCM adapter
75+
require_dependency 'redmine/scm/adapters/xitolite_adapter'
76+
77+
require 'hrack/bundle'

lib/hrack/lib/hrack/bundle.rb lib/hrack/bundle.rb

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
require 'rack/builder'
44
require 'rack/parser'
5-
require 'hrack/server'
65

76
module Hrack
87
module Bundle

lib/hrack/init.rb

-4
This file was deleted.

lib/hrack/lib/hrack.rb

-5
This file was deleted.
File renamed without changes.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# frozen_string_literal: true
22

33
module Hrack
4+
module Version
5+
end
46
VERSION = '1.0.0'
57
end

lib/load_gitolite_hooks.rb

+3
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,6 @@
7272
].each do |file|
7373
require_dependency file if File.exist? file
7474
end
75+
76+
module LoadGitoliteHooks
77+
end

lib/redmine/scm/adapters/xitolite_adapter.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ def lastrev(path, rev)
187187
nil
188188
end
189189

190-
def revisions(path, identifier_from, identifier_to, **options)
190+
def revisions(path, identifier_from, identifier_to, options = {}) # rubocop:disable Style/OptionHash
191191
revs = Revisions.new
192192
cmd_args = %w[log --no-color --encoding=UTF-8 --raw --date=iso --pretty=fuller --parents --stdin]
193193
cmd_args << '--no-renames' if self.class.client_version_above? [2, 9]

lib/redmine_git_hosting.rb

-15
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# frozen_string_literal: true
22

3-
# Redmine Hooks
4-
require 'redmine_git_hosting/hooks'
5-
63
# Redmine SCM
74
Redmine::Scm::Base.add 'Xitolite'
85

@@ -12,7 +9,6 @@ module RedmineGitHosting
129
VERSION = '5.0.1-master'
1310

1411
# Load RedminePluginLoader
15-
require 'redmine_git_hosting/redmine_plugin_loader'
1612
extend RedminePluginLoader
1713

1814
set_plugin_name 'redmine_git_hosting'
@@ -60,14 +56,3 @@ def additionals_help_items
6056
admin: true }]
6157
end
6258
end
63-
64-
# Set up autoload of patches
65-
Rails.configuration.to_prepare do
66-
# Redmine Git Hosting Libs and Patches
67-
RedmineGitHosting.load_plugin!
68-
69-
# Redmine SCM adapter
70-
require_dependency 'redmine/scm/adapters/xitolite_adapter'
71-
72-
require 'hrack/init'
73-
end

lib/redmine_git_hosting/cache/abstract_cache.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def time_limit
5656
def valid_cache_entry?(cached_entry_date)
5757
return true if max_cache_time.to_i.negative? # No expiration needed
5858

59-
current_time = ActiveRecord::Base.default_timezone == :utc ? Time.now.utc : Timezone.now
59+
current_time = ActiveRecord::Base.default_timezone == :utc ? Time.now.utc : Time.zone.now
6060
expired = current_time.to_i - cached_entry_date.to_i > max_cache_time
6161
!expired
6262
end

lib/redmine_git_hosting/commands.rb

-5
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,5 @@
22

33
module RedmineGitHosting
44
module Commands
5-
extend Commands::Base
6-
extend Commands::Git
7-
extend Commands::Gitolite
8-
extend Commands::Ssh
9-
extend Commands::Sudo
105
end
116
end

lib/redmine_git_hosting/commands/base.rb

+2
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,7 @@ def logger
2525
RedmineGitHosting.logger
2626
end
2727
end
28+
29+
extend Commands::Base
2830
end
2931
end

lib/redmine_git_hosting/commands/git.rb

+2
Original file line numberDiff line numberDiff line change
@@ -120,5 +120,7 @@ def git_config_as_hash(namespace, params)
120120
value_hash
121121
end
122122
end
123+
124+
extend Commands::Git
123125
end
124126
end

lib/redmine_git_hosting/commands/gitolite.rb

+2
Original file line numberDiff line numberDiff line change
@@ -79,5 +79,7 @@ def gitolite_home_dir
7979
RedmineGitHosting::Config.gitolite_home_dir
8080
end
8181
end
82+
83+
extend Commands::Gitolite
8284
end
8385
end

lib/redmine_git_hosting/commands/ssh.rb

+2
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,7 @@ def ssh_shell_params
5353
]
5454
end
5555
end
56+
57+
extend Commands::Ssh
5658
end
5759
end

lib/redmine_git_hosting/commands/sudo.rb

+2
Original file line numberDiff line numberDiff line change
@@ -205,5 +205,7 @@ def content_from_gitolite_side(destination_path)
205205
sudo_cat destination_path
206206
end
207207
end
208+
209+
extend Commands::Sudo
208210
end
209211
end

lib/redmine_git_hosting/config.rb

-12
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,5 @@ module Config
77

88
GITOLITE_DEFAULT_CONFIG_FILE = 'gitolite.conf'
99
GITOLITE_IDENTIFIER_DEFAULT_PREFIX = 'redmine_'
10-
11-
extend Config::Base
12-
extend Config::GitoliteAccess
13-
extend Config::GitoliteBase
14-
extend Config::GitoliteCache
15-
extend Config::GitoliteConfigTests
16-
extend Config::GitoliteHooks
17-
extend Config::GitoliteInfos
18-
extend Config::GitoliteNotifications
19-
extend Config::GitoliteStorage
20-
extend Config::Mirroring
21-
extend Config::RedmineConfig
2210
end
2311
end

lib/redmine_git_hosting/config/base.rb

+2
Original file line numberDiff line numberDiff line change
@@ -99,5 +99,7 @@ def file_logger
9999
RedmineGitHosting.logger
100100
end
101101
end
102+
103+
extend Config::Base
102104
end
103105
end

lib/redmine_git_hosting/config/gitolite_access.rb

+2
Original file line numberDiff line numberDiff line change
@@ -57,5 +57,7 @@ def my_root_url(ssl: true)
5757
File.join(server_domain[%r{^[^/]*}], redmine_root_url, '/')[0..-2]
5858
end
5959
end
60+
61+
extend Config::GitoliteAccess
6062
end
6163
end

lib/redmine_git_hosting/config/gitolite_base.rb

+2
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,7 @@ def gitolite_log_level
111111
get_setting :gitolite_log_level
112112
end
113113
end
114+
115+
extend Config::GitoliteBase
114116
end
115117
end

0 commit comments

Comments
 (0)