Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
b612670c
Commit
b612670c
authored
Jun 20, 2018
by
Alexis Reigel
Committed by
Douwe Maan
Jun 20, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix: Serve favicon image always from the main GitLab domain to avoid issues with CORS
parent
b349c01c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
35 additions
and
5 deletions
+35
-5
changelogs/unreleased/fix-favicon-cross-origin.yml
changelogs/unreleased/fix-favicon-cross-origin.yml
+5
-0
lib/gitlab/favicon.rb
lib/gitlab/favicon.rb
+15
-5
spec/lib/gitlab/favicon_spec.rb
spec/lib/gitlab/favicon_spec.rb
+15
-0
No files found.
changelogs/unreleased/fix-favicon-cross-origin.yml
0 → 100644
View file @
b612670c
---
title
:
Serve favicon image always from the main GitLab domain to avoid issues with CORS
merge_request
:
19810
author
:
Alexis Reigel
type
:
fixed
lib/gitlab/favicon.rb
View file @
b612670c
...
...
@@ -2,10 +2,10 @@ module Gitlab
class
Favicon
class
<<
self
def
main
return
appearance_favicon
.
url
if
appearance_favicon
.
exists?
image_name
=
if
Gitlab
::
Utils
.
to_boolean
(
ENV
[
'CANARY'
])
if
appearance_favicon
.
exists?
appearance_favicon
.
url
elsif
Gitlab
::
Utils
.
to_boolean
(
ENV
[
'CANARY'
])
'favicon-yellow.png'
elsif
Rails
.
env
.
development?
'favicon-blue.png'
...
...
@@ -13,7 +13,7 @@ module Gitlab
'favicon.png'
end
ActionController
::
Base
.
helpers
.
image_path
(
image_name
)
ActionController
::
Base
.
helpers
.
image_path
(
image_name
,
host:
host
)
end
def
status_overlay
(
status_name
)
...
...
@@ -22,7 +22,7 @@ module Gitlab
"
#{
status_name
}
.png"
)
ActionController
::
Base
.
helpers
.
image_path
(
path
)
ActionController
::
Base
.
helpers
.
image_path
(
path
,
host:
host
)
end
def
available_status_names
...
...
@@ -35,6 +35,16 @@ module Gitlab
private
# we only want to create full urls when there's a different asset_host
# configured.
def
host
if
Gitlab
::
Application
.
config
.
asset_host
.
nil?
||
Gitlab
::
Application
.
config
.
asset_host
==
Gitlab
.
config
.
gitlab
.
base_url
nil
else
Gitlab
.
config
.
gitlab
.
base_url
end
end
def
appearance
RequestStore
.
store
[
:appearance
]
||=
(
Appearance
.
current
||
Appearance
.
new
)
end
...
...
spec/lib/gitlab/favicon_spec.rb
View file @
b612670c
...
...
@@ -21,6 +21,21 @@ RSpec.describe Gitlab::Favicon, :request_store do
create
:appearance
,
favicon:
fixture_file_upload
(
'spec/fixtures/dk.png'
)
expect
(
described_class
.
main
).
to
match
%r{/uploads/-/system/appearance/favicon/
\d
+/dk.png}
end
context
'asset host'
do
before
do
allow
(
Rails
).
to
receive
(
:env
).
and_return
(
ActiveSupport
::
StringInquirer
.
new
(
'production'
))
end
it
'returns a relative url when the asset host is not configured'
do
expect
(
described_class
.
main
).
to
match
%r{^/assets/favicon-(?:
\h
+).png$}
end
it
'returns a full url when the asset host is configured'
do
allow
(
Gitlab
::
Application
.
config
).
to
receive
(
:asset_host
).
and_return
(
'http://assets.local'
)
expect
(
described_class
.
main
).
to
match
%r{^http://localhost/assets/favicon-(?:
\h
+).png$}
end
end
end
describe
'.status_overlay'
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment