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
0
Merge Requests
0
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
Boxiang Sun
gitlab-ce
Commits
20695052
Commit
20695052
authored
Apr 06, 2018
by
blackst0ne
Committed by
Sean McGivern
Apr 06, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Rails5] Update `type_cast_*_database` methods
parent
52b232ca
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
66 additions
and
34 deletions
+66
-34
app/models/merge_request_diff_commit.rb
app/models/merge_request_diff_commit.rb
+1
-1
config/initializers/active_record_array_type_casting.rb
config/initializers/active_record_array_type_casting.rb
+17
-14
lib/gitlab/background_migration/deserialize_merge_request_diffs_and_commits.rb
..._migration/deserialize_merge_request_diffs_and_commits.rb
+1
-1
lib/gitlab/database/sha_attribute.rb
lib/gitlab/database/sha_attribute.rb
+40
-11
spec/lib/gitlab/database/sha_attribute_spec.rb
spec/lib/gitlab/database/sha_attribute_spec.rb
+4
-4
spec/models/merge_request_diff_commit_spec.rb
spec/models/merge_request_diff_commit_spec.rb
+3
-3
No files found.
app/models/merge_request_diff_commit.rb
View file @
20695052
...
@@ -17,7 +17,7 @@ class MergeRequestDiffCommit < ActiveRecord::Base
...
@@ -17,7 +17,7 @@ class MergeRequestDiffCommit < ActiveRecord::Base
commit_hash
.
merge
(
commit_hash
.
merge
(
merge_request_diff_id:
merge_request_diff_id
,
merge_request_diff_id:
merge_request_diff_id
,
relative_order:
index
,
relative_order:
index
,
sha:
sha_attribute
.
type_cast_for_database
(
sha
),
sha:
sha_attribute
.
serialize
(
sha
),
# rubocop:disable Cop/ActiveRecordSerialize
authored_date:
Gitlab
::
Database
.
sanitize_timestamp
(
commit_hash
[
:authored_date
]),
authored_date:
Gitlab
::
Database
.
sanitize_timestamp
(
commit_hash
[
:authored_date
]),
committed_date:
Gitlab
::
Database
.
sanitize_timestamp
(
commit_hash
[
:committed_date
])
committed_date:
Gitlab
::
Database
.
sanitize_timestamp
(
commit_hash
[
:committed_date
])
)
)
...
...
config/initializers/active_record_array_type_casting.rb
View file @
20695052
module
ActiveRecord
# Remove this initializer when upgraded to Rails 5.0
unless
Gitlab
.
rails5?
module
ActiveRecord
class
PredicateBuilder
class
PredicateBuilder
class
ArrayHandler
class
ArrayHandler
module
TypeCasting
module
TypeCasting
...
@@ -17,4 +19,5 @@ module ActiveRecord
...
@@ -17,4 +19,5 @@ module ActiveRecord
prepend
TypeCasting
prepend
TypeCasting
end
end
end
end
end
end
end
lib/gitlab/background_migration/deserialize_merge_request_diffs_and_commits.rb
View file @
20695052
...
@@ -96,7 +96,7 @@ module Gitlab
...
@@ -96,7 +96,7 @@ module Gitlab
commit_hash
.
merge
(
commit_hash
.
merge
(
merge_request_diff_id:
merge_request_diff
.
id
,
merge_request_diff_id:
merge_request_diff
.
id
,
relative_order:
index
,
relative_order:
index
,
sha:
sha_attribute
.
type_cast_for_databas
e
(
sha
)
sha:
sha_attribute
.
serializ
e
(
sha
)
)
)
end
end
...
...
lib/gitlab/database/sha_attribute.rb
View file @
20695052
module
Gitlab
module
Gitlab
module
Database
module
Database
BINARY_TYPE
=
if
Gitlab
::
Database
.
postgresql?
BINARY_TYPE
=
if
Gitlab
::
Database
.
postgresql?
# PostgreSQL defines its own class with slightly different
# PostgreSQL defines its own class with slightly different
# behaviour from the default Binary type.
# behaviour from the default Binary type.
ActiveRecord
::
ConnectionAdapters
::
PostgreSQL
::
OID
::
Bytea
ActiveRecord
::
ConnectionAdapters
::
PostgreSQL
::
OID
::
Bytea
else
# In Rails 5.0 `Type` has been moved from `ActiveRecord` to `ActiveModel`
# https://github.com/rails/rails/commit/9cc8c6f3730df3d94c81a55be9ee1b7b4ffd29f6#diff-f8ba7983a51d687976e115adcd95822b
# Remove this method and leave just `ActiveModel::Type::Binary` when removing Gitlab.rails5? code.
if
Gitlab
.
rails5?
ActiveModel
::
Type
::
Binary
else
else
ActiveRecord
::
Type
::
Binary
ActiveRecord
::
Type
::
Binary
end
end
end
# Class for casting binary data to hexadecimal SHA1 hashes (and vice-versa).
# Class for casting binary data to hexadecimal SHA1 hashes (and vice-versa).
#
#
...
@@ -16,18 +24,39 @@ module Gitlab
...
@@ -16,18 +24,39 @@ module Gitlab
class
ShaAttribute
<
BINARY_TYPE
class
ShaAttribute
<
BINARY_TYPE
PACK_FORMAT
=
'H*'
.
freeze
PACK_FORMAT
=
'H*'
.
freeze
# Casts binary data to a SHA1 in hexadecimal.
# It is called from activerecord-4.2.10/lib/active_record internal methods.
# Remove this method when removing Gitlab.rails5? code.
def
type_cast_from_database
(
value
)
def
type_cast_from_database
(
value
)
value
=
super
unpack_sha
(
super
)
end
# It is called from activerecord-4.2.10/lib/active_record internal methods.
# Remove this method when removing Gitlab.rails5? code.
def
type_cast_for_database
(
value
)
serialize
(
value
)
end
# It is called from activerecord-5.0.6/lib/active_record/attribute.rb
# Remove this method when removing Gitlab.rails5? code..
def
deserialize
(
value
)
value
=
Gitlab
.
rails5?
?
super
:
method
(
:type_cast_from_database
).
super_method
.
call
(
value
)
unpack_sha
(
value
)
end
# Rename this method to `deserialize(value)` removing Gitlab.rails5? code.
# Casts binary data to a SHA1 in hexadecimal.
def
unpack_sha
(
value
)
# Uncomment this line when removing Gitlab.rails5? code.
# value = super
value
?
value
.
unpack
(
PACK_FORMAT
)[
0
]
:
nil
value
?
value
.
unpack
(
PACK_FORMAT
)[
0
]
:
nil
end
end
# Casts a SHA1 in hexadecimal to the proper binary format.
# Casts a SHA1 in hexadecimal to the proper binary format.
def
type_cast_for_databas
e
(
value
)
def
serializ
e
(
value
)
arg
=
value
?
[
value
].
pack
(
PACK_FORMAT
)
:
nil
arg
=
value
?
[
value
].
pack
(
PACK_FORMAT
)
:
nil
super
(
arg
)
Gitlab
.
rails5?
?
super
(
arg
)
:
method
(
:type_cast_for_database
).
super_method
.
call
(
arg
)
end
end
end
end
end
end
...
...
spec/lib/gitlab/database/sha_attribute_spec.rb
View file @
20695052
...
@@ -19,15 +19,15 @@ describe Gitlab::Database::ShaAttribute do
...
@@ -19,15 +19,15 @@ describe Gitlab::Database::ShaAttribute do
let
(
:attribute
)
{
described_class
.
new
}
let
(
:attribute
)
{
described_class
.
new
}
describe
'#
type_cast_from_databas
e'
do
describe
'#
deserializ
e'
do
it
'converts the binary SHA to a String'
do
it
'converts the binary SHA to a String'
do
expect
(
attribute
.
type_cast_from_databas
e
(
binary_from_db
)).
to
eq
(
sha
)
expect
(
attribute
.
deserializ
e
(
binary_from_db
)).
to
eq
(
sha
)
end
end
end
end
describe
'#
type_cast_for_databas
e'
do
describe
'#
serializ
e'
do
it
'converts a SHA String to binary data'
do
it
'converts a SHA String to binary data'
do
expect
(
attribute
.
type_cast_for_databas
e
(
sha
).
to_s
).
to
eq
(
binary_sha
)
expect
(
attribute
.
serializ
e
(
sha
).
to_s
).
to
eq
(
binary_sha
)
end
end
end
end
end
end
spec/models/merge_request_diff_commit_spec.rb
View file @
20695052
...
@@ -36,7 +36,7 @@ describe MergeRequestDiffCommit do
...
@@ -36,7 +36,7 @@ describe MergeRequestDiffCommit do
"committer_email"
:
"dmitriy.zaporozhets@gmail.com"
,
"committer_email"
:
"dmitriy.zaporozhets@gmail.com"
,
"merge_request_diff_id"
:
merge_request_diff_id
,
"merge_request_diff_id"
:
merge_request_diff_id
,
"relative_order"
:
0
,
"relative_order"
:
0
,
"sha"
:
sha_attribute
.
type_cast_for_database
(
'5937ac0a7beb003549fc5fd26fc247adbce4a52e'
)
"sha"
:
sha_attribute
.
serialize
(
"5937ac0a7beb003549fc5fd26fc247adbce4a52e"
)
},
},
{
{
"message"
:
"Change some files
\n\n
Signed-off-by: Dmitriy Zaporozhets
\u
003cdmitriy.zaporozhets@gmail.com
\u
003e
\n
"
,
"message"
:
"Change some files
\n\n
Signed-off-by: Dmitriy Zaporozhets
\u
003cdmitriy.zaporozhets@gmail.com
\u
003e
\n
"
,
...
@@ -48,7 +48,7 @@ describe MergeRequestDiffCommit do
...
@@ -48,7 +48,7 @@ describe MergeRequestDiffCommit do
"committer_email"
:
"dmitriy.zaporozhets@gmail.com"
,
"committer_email"
:
"dmitriy.zaporozhets@gmail.com"
,
"merge_request_diff_id"
:
merge_request_diff_id
,
"merge_request_diff_id"
:
merge_request_diff_id
,
"relative_order"
:
1
,
"relative_order"
:
1
,
"sha"
:
sha_attribute
.
type_cast_for_database
(
'570e7b2abdd848b95f2f578043fc23bd6f6fd24d'
)
"sha"
:
sha_attribute
.
serialize
(
"570e7b2abdd848b95f2f578043fc23bd6f6fd24d"
)
}
}
]
]
end
end
...
@@ -79,7 +79,7 @@ describe MergeRequestDiffCommit do
...
@@ -79,7 +79,7 @@ describe MergeRequestDiffCommit do
"committer_email"
:
"alejorro70@gmail.com"
,
"committer_email"
:
"alejorro70@gmail.com"
,
"merge_request_diff_id"
:
merge_request_diff_id
,
"merge_request_diff_id"
:
merge_request_diff_id
,
"relative_order"
:
0
,
"relative_order"
:
0
,
"sha"
:
sha_attribute
.
type_cast_for_database
(
'ba3343bc4fa403a8dfbfcab7fc1a8c29ee34bd69'
)
"sha"
:
sha_attribute
.
serialize
(
"ba3343bc4fa403a8dfbfcab7fc1a8c29ee34bd69"
)
}]
}]
end
end
...
...
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