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
a50ab5e1
Commit
a50ab5e1
authored
Feb 02, 2018
by
Micaël Bergeron
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
port 42547 to ee
parent
db735398
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
119 additions
and
29 deletions
+119
-29
app/controllers/concerns/uploads_actions.rb
app/controllers/concerns/uploads_actions.rb
+1
-1
app/models/upload.rb
app/models/upload.rb
+14
-3
app/uploaders/file_mover.rb
app/uploaders/file_mover.rb
+2
-2
app/uploaders/file_uploader.rb
app/uploaders/file_uploader.rb
+22
-6
app/uploaders/gitlab_uploader.rb
app/uploaders/gitlab_uploader.rb
+4
-0
app/uploaders/records_uploads.rb
app/uploaders/records_uploads.rb
+7
-6
changelogs/unreleased/42547-upload-store-mount-point.yml
changelogs/unreleased/42547-upload-store-mount-point.yml
+5
-0
db/migrate/20180129193323_add_uploads_builder_context.rb
db/migrate/20180129193323_add_uploads_builder_context.rb
+14
-0
db/schema.rb
db/schema.rb
+2
-0
lib/gitlab/gfm/uploads_rewriter.rb
lib/gitlab/gfm/uploads_rewriter.rb
+1
-1
spec/factories/uploads.rb
spec/factories/uploads.rb
+11
-7
spec/lib/file_size_validator_spec.rb
spec/lib/file_size_validator_spec.rb
+1
-1
spec/models/upload_spec.rb
spec/models/upload_spec.rb
+6
-0
spec/uploaders/file_uploader_spec.rb
spec/uploaders/file_uploader_spec.rb
+28
-1
spec/uploaders/gitlab_uploader_spec.rb
spec/uploaders/gitlab_uploader_spec.rb
+1
-1
No files found.
app/controllers/concerns/uploads_actions.rb
View file @
a50ab5e1
...
@@ -70,7 +70,7 @@ module UploadsActions
...
@@ -70,7 +70,7 @@ module UploadsActions
end
end
def
build_uploader_from_params
def
build_uploader_from_params
uploader
=
uploader_class
.
new
(
model
,
params
[
:secret
])
uploader
=
uploader_class
.
new
(
model
,
secret:
params
[
:secret
])
uploader
.
retrieve_from_store!
(
params
[
:filename
])
uploader
.
retrieve_from_store!
(
params
[
:filename
])
uploader
uploader
end
end
...
...
app/models/upload.rb
View file @
a50ab5e1
...
@@ -33,7 +33,7 @@ class Upload < ActiveRecord::Base
...
@@ -33,7 +33,7 @@ class Upload < ActiveRecord::Base
end
end
def
build_uploader
def
build_uploader
uploader_class
.
new
(
model
).
tap
do
|
uploader
|
uploader_class
.
new
(
model
,
mount_point
,
**
uploader_context
).
tap
do
|
uploader
|
uploader
.
upload
=
self
uploader
.
upload
=
self
uploader
.
retrieve_from_store!
(
identifier
)
uploader
.
retrieve_from_store!
(
identifier
)
end
end
...
@@ -43,6 +43,13 @@ class Upload < ActiveRecord::Base
...
@@ -43,6 +43,13 @@ class Upload < ActiveRecord::Base
File
.
exist?
(
absolute_path
)
File
.
exist?
(
absolute_path
)
end
end
def
uploader_context
{
identifier:
identifier
,
secret:
secret
}.
compact
end
private
private
def
checksummable?
def
checksummable?
...
@@ -67,11 +74,15 @@ class Upload < ActiveRecord::Base
...
@@ -67,11 +74,15 @@ class Upload < ActiveRecord::Base
!
path
.
start_with?
(
'/'
)
!
path
.
start_with?
(
'/'
)
end
end
def
uploader_class
Object
.
const_get
(
uploader
)
end
def
identifier
def
identifier
File
.
basename
(
path
)
File
.
basename
(
path
)
end
end
def
uploader_class
def
mount_point
Object
.
const_get
(
uploader
)
super
&
.
to_sym
end
end
end
end
app/uploaders/file_mover.rb
View file @
a50ab5e1
...
@@ -46,11 +46,11 @@ class FileMover
...
@@ -46,11 +46,11 @@ class FileMover
end
end
def
uploader
def
uploader
@uploader
||=
PersonalFileUploader
.
new
(
model
,
secret
)
@uploader
||=
PersonalFileUploader
.
new
(
model
,
secret
:
secret
)
end
end
def
temp_file_uploader
def
temp_file_uploader
@temp_file_uploader
||=
PersonalFileUploader
.
new
(
nil
,
secret
)
@temp_file_uploader
||=
PersonalFileUploader
.
new
(
nil
,
secret
:
secret
)
end
end
def
revert
def
revert
...
...
app/uploaders/file_uploader.rb
View file @
a50ab5e1
...
@@ -62,9 +62,11 @@ class FileUploader < GitlabUploader
...
@@ -62,9 +62,11 @@ class FileUploader < GitlabUploader
attr_accessor
:model
attr_accessor
:model
def
initialize
(
model
,
secret
=
nil
)
def
initialize
(
model
,
mounted_as
=
nil
,
**
uploader_context
)
super
(
model
,
nil
,
**
uploader_context
)
@model
=
model
@model
=
model
@secret
=
secret
apply_context!
(
uploader_context
)
end
end
def
base_dir
def
base_dir
...
@@ -107,15 +109,17 @@ class FileUploader < GitlabUploader
...
@@ -107,15 +109,17 @@ class FileUploader < GitlabUploader
self
.
file
.
filename
self
.
file
.
filename
end
end
# the upload does not hold the secret, but holds the path
# which contains the secret: extract it
def
upload
=
(
value
)
def
upload
=
(
value
)
super
return
unless
value
return
if
apply_context!
(
value
.
uploader_context
)
# fallback to the regex based extraction
if
matches
=
DYNAMIC_PATH_PATTERN
.
match
(
value
.
path
)
if
matches
=
DYNAMIC_PATH_PATTERN
.
match
(
value
.
path
)
@secret
=
matches
[
:secret
]
@secret
=
matches
[
:secret
]
@identifier
=
matches
[
:identifier
]
@identifier
=
matches
[
:identifier
]
end
end
super
end
end
def
secret
def
secret
...
@@ -124,6 +128,18 @@ class FileUploader < GitlabUploader
...
@@ -124,6 +128,18 @@ class FileUploader < GitlabUploader
private
private
def
apply_context!
(
uploader_context
)
@secret
,
@identifier
=
uploader_context
.
values_at
(
:secret
,
:identifier
)
!!
(
@secret
&&
@identifier
)
end
def
build_upload
super
.
tap
do
|
upload
|
upload
.
secret
=
secret
end
end
def
markdown_name
def
markdown_name
(
image_or_video?
?
File
.
basename
(
filename
,
File
.
extname
(
filename
))
:
filename
).
gsub
(
"]"
,
"
\\
]"
)
(
image_or_video?
?
File
.
basename
(
filename
,
File
.
extname
(
filename
))
:
filename
).
gsub
(
"]"
,
"
\\
]"
)
end
end
...
...
app/uploaders/gitlab_uploader.rb
View file @
a50ab5e1
...
@@ -29,6 +29,10 @@ class GitlabUploader < CarrierWave::Uploader::Base
...
@@ -29,6 +29,10 @@ class GitlabUploader < CarrierWave::Uploader::Base
delegate
:base_dir
,
:file_storage?
,
to: :class
delegate
:base_dir
,
:file_storage?
,
to: :class
def
initialize
(
model
,
mounted_as
=
nil
,
**
uploader_context
)
super
(
model
,
mounted_as
)
end
def
file_cache_storage?
def
file_cache_storage?
cache_storage
.
is_a?
(
CarrierWave
::
Storage
::
File
)
cache_storage
.
is_a?
(
CarrierWave
::
Storage
::
File
)
end
end
...
...
app/uploaders/records_uploads.rb
View file @
a50ab5e1
...
@@ -24,7 +24,7 @@ module RecordsUploads
...
@@ -24,7 +24,7 @@ module RecordsUploads
uploads
.
where
(
path:
upload_path
).
delete_all
uploads
.
where
(
path:
upload_path
).
delete_all
upload
.
destroy!
if
upload
upload
.
destroy!
if
upload
self
.
upload
=
build_upload
_from_uploader
(
self
)
self
.
upload
=
build_upload
upload
.
save!
upload
.
save!
end
end
end
end
...
@@ -39,12 +39,13 @@ module RecordsUploads
...
@@ -39,12 +39,13 @@ module RecordsUploads
Upload
.
order
(
id: :desc
).
where
(
uploader:
self
.
class
.
to_s
)
Upload
.
order
(
id: :desc
).
where
(
uploader:
self
.
class
.
to_s
)
end
end
def
build_upload
_from_uploader
(
uploader
)
def
build_upload
Upload
.
new
(
Upload
.
new
(
size:
uploader
.
file
.
size
,
uploader:
self
.
class
.
to_s
,
path:
uploader
.
upload_path
,
size:
file
.
size
,
model:
uploader
.
model
,
path:
upload_path
,
uploader:
uploader
.
class
.
to_s
model:
model
,
mount_point:
mounted_as
)
)
end
end
...
...
changelogs/unreleased/42547-upload-store-mount-point.yml
0 → 100644
View file @
a50ab5e1
---
title
:
Added uploader metadata to the uploads.
merge_request
:
16779
author
:
type
:
added
db/migrate/20180129193323_add_uploads_builder_context.rb
0 → 100644
View file @
a50ab5e1
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
class
AddUploadsBuilderContext
<
ActiveRecord
::
Migration
include
Gitlab
::
Database
::
MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME
=
false
def
change
add_column
:uploads
,
:mount_point
,
:string
add_column
:uploads
,
:secret
,
:string
end
end
db/schema.rb
View file @
a50ab5e1
...
@@ -2255,6 +2255,8 @@ ActiveRecord::Schema.define(version: 20180202111106) do
...
@@ -2255,6 +2255,8 @@ ActiveRecord::Schema.define(version: 20180202111106) do
t
.
string
"uploader"
,
null:
false
t
.
string
"uploader"
,
null:
false
t
.
datetime
"created_at"
,
null:
false
t
.
datetime
"created_at"
,
null:
false
t
.
integer
"store"
t
.
integer
"store"
t
.
string
"mount_point"
t
.
string
"secret"
end
end
add_index
"uploads"
,
[
"checksum"
],
name:
"index_uploads_on_checksum"
,
using: :btree
add_index
"uploads"
,
[
"checksum"
],
name:
"index_uploads_on_checksum"
,
using: :btree
...
...
lib/gitlab/gfm/uploads_rewriter.rb
View file @
a50ab5e1
...
@@ -46,7 +46,7 @@ module Gitlab
...
@@ -46,7 +46,7 @@ module Gitlab
private
private
def
find_file
(
project
,
secret
,
file
)
def
find_file
(
project
,
secret
,
file
)
uploader
=
FileUploader
.
new
(
project
,
secret
)
uploader
=
FileUploader
.
new
(
project
,
secret
:
secret
)
uploader
.
retrieve_from_store!
(
file
)
uploader
.
retrieve_from_store!
(
file
)
uploader
.
file
uploader
.
file
end
end
...
...
spec/factories/uploads.rb
View file @
a50ab5e1
...
@@ -3,26 +3,29 @@ FactoryBot.define do
...
@@ -3,26 +3,29 @@ FactoryBot.define do
model
{
build
(
:project
)
}
model
{
build
(
:project
)
}
size
100
.
kilobytes
size
100
.
kilobytes
uploader
"AvatarUploader"
uploader
"AvatarUploader"
mount_point
:avatar
secret
nil
store
ObjectStorage
::
Store
::
LOCAL
store
ObjectStorage
::
Store
::
LOCAL
# we should build a mount agnostic upload by default
# we should build a mount agnostic upload by default
transient
do
transient
do
mounted_as
:avatar
filename
'myfile.jpg'
secret
SecureRandom
.
hex
end
end
# this needs to comply with RecordsUpload::Concern#upload_path
# this needs to comply with RecordsUpload::Concern#upload_path
path
{
File
.
join
(
"uploads/-/system"
,
model
.
class
.
to_s
.
underscore
,
mount
ed_as
.
to_s
,
'avatar.jpg'
)
}
path
{
File
.
join
(
"uploads/-/system"
,
model
.
class
.
to_s
.
underscore
,
mount
_point
.
to_s
,
'avatar.jpg'
)
}
trait
:personal_snippet_upload
do
trait
:personal_snippet_upload
do
model
{
build
(
:personal_snippet
)
}
model
{
build
(
:personal_snippet
)
}
path
{
File
.
join
(
secret
,
'myfile.jpg'
)
}
path
{
File
.
join
(
secret
,
filename
)
}
uploader
"PersonalFileUploader"
uploader
"PersonalFileUploader"
secret
SecureRandom
.
hex
end
end
trait
:issuable_upload
do
trait
:issuable_upload
do
path
{
File
.
join
(
secret
,
'myfile.jpg'
)
}
path
{
File
.
join
(
secret
,
filename
)
}
uploader
"FileUploader"
uploader
"FileUploader"
secret
SecureRandom
.
hex
end
end
trait
:object_storage
do
trait
:object_storage
do
...
@@ -31,13 +34,14 @@ FactoryBot.define do
...
@@ -31,13 +34,14 @@ FactoryBot.define do
trait
:namespace_upload
do
trait
:namespace_upload
do
model
{
build
(
:group
)
}
model
{
build
(
:group
)
}
path
{
File
.
join
(
secret
,
'myfile.jpg'
)
}
path
{
File
.
join
(
secret
,
filename
)
}
uploader
"NamespaceFileUploader"
uploader
"NamespaceFileUploader"
secret
SecureRandom
.
hex
end
end
trait
:attachment_upload
do
trait
:attachment_upload
do
transient
do
transient
do
mount
ed_as
:attachment
mount
_point
:attachment
end
end
model
{
build
(
:note
)
}
model
{
build
(
:note
)
}
...
...
spec/lib/file_size_validator_spec.rb
View file @
a50ab5e1
...
@@ -2,8 +2,8 @@ require 'spec_helper'
...
@@ -2,8 +2,8 @@ require 'spec_helper'
describe
FileSizeValidator
do
describe
FileSizeValidator
do
let
(
:validator
)
{
described_class
.
new
(
options
)
}
let
(
:validator
)
{
described_class
.
new
(
options
)
}
let
(
:attachment
)
{
AttachmentUploader
.
new
}
let
(
:note
)
{
create
(
:note
)
}
let
(
:note
)
{
create
(
:note
)
}
let
(
:attachment
)
{
AttachmentUploader
.
new
(
note
)
}
describe
'options uses an integer'
do
describe
'options uses an integer'
do
let
(
:options
)
{
{
maximum:
10
,
attributes:
{
attachment:
attachment
}
}
}
let
(
:options
)
{
{
maximum:
10
,
attributes:
{
attachment:
attachment
}
}
}
...
...
spec/models/upload_spec.rb
View file @
a50ab5e1
...
@@ -103,4 +103,10 @@ describe Upload do
...
@@ -103,4 +103,10 @@ describe Upload do
expect
(
upload
).
not_to
exist
expect
(
upload
).
not_to
exist
end
end
end
end
describe
"#uploader_context"
do
subject
{
create
(
:upload
,
:issuable_upload
,
secret:
'secret'
,
filename:
'file.txt'
)
}
it
{
expect
(
subject
.
uploader_context
).
to
match
(
a_hash_including
(
secret:
'secret'
,
identifier:
'file.txt'
))
}
end
end
end
spec/uploaders/file_uploader_spec.rb
View file @
a50ab5e1
...
@@ -51,7 +51,7 @@ describe FileUploader do
...
@@ -51,7 +51,7 @@ describe FileUploader do
end
end
describe
'initialize'
do
describe
'initialize'
do
let
(
:uploader
)
{
described_class
.
new
(
double
,
'secret'
)
}
let
(
:uploader
)
{
described_class
.
new
(
double
,
secret:
'secret'
)
}
it
'accepts a secret parameter'
do
it
'accepts a secret parameter'
do
expect
(
described_class
).
not_to
receive
(
:generate_secret
)
expect
(
described_class
).
not_to
receive
(
:generate_secret
)
...
@@ -75,4 +75,31 @@ describe FileUploader do
...
@@ -75,4 +75,31 @@ describe FileUploader do
it_behaves_like
"migrates"
,
to_store:
described_class
::
Store
::
REMOTE
it_behaves_like
"migrates"
,
to_store:
described_class
::
Store
::
REMOTE
it_behaves_like
"migrates"
,
from_store:
described_class
::
Store
::
REMOTE
,
to_store:
described_class
::
Store
::
LOCAL
it_behaves_like
"migrates"
,
from_store:
described_class
::
Store
::
REMOTE
,
to_store:
described_class
::
Store
::
LOCAL
end
end
describe
'#upload='
do
let
(
:secret
)
{
SecureRandom
.
hex
}
let
(
:upload
)
{
create
(
:upload
,
:issuable_upload
,
secret:
secret
,
filename:
'file.txt'
)
}
it
'handles nil'
do
expect
(
uploader
).
not_to
receive
(
:apply_context!
)
uploader
.
upload
=
nil
end
it
'extract the uploader context from it'
do
expect
(
uploader
).
to
receive
(
:apply_context!
).
with
(
a_hash_including
(
secret:
secret
,
identifier:
'file.txt'
))
uploader
.
upload
=
upload
end
context
'uploader_context is empty'
do
it
'fallbacks to regex based extraction'
do
expect
(
upload
).
to
receive
(
:uploader_context
).
and_return
({})
uploader
.
upload
=
upload
expect
(
uploader
.
secret
).
to
eq
(
secret
)
expect
(
uploader
.
instance_variable_get
(
:@identifier
)).
to
eq
(
'file.txt'
)
end
end
end
end
end
spec/uploaders/gitlab_uploader_spec.rb
View file @
a50ab5e1
...
@@ -4,7 +4,7 @@ require 'carrierwave/storage/fog'
...
@@ -4,7 +4,7 @@ require 'carrierwave/storage/fog'
describe
GitlabUploader
do
describe
GitlabUploader
do
let
(
:uploader_class
)
{
Class
.
new
(
described_class
)
}
let
(
:uploader_class
)
{
Class
.
new
(
described_class
)
}
subject
{
uploader_class
.
new
}
subject
{
uploader_class
.
new
(
double
)
}
describe
'#file_storage?'
do
describe
'#file_storage?'
do
context
'when file storage is used'
do
context
'when file storage is used'
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