BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
32ff813d
Commit
32ff813d
authored
Sep 18, 2017
by
Robert Speicher
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add BlocksJsonSerialization model concern and include it in User
parent
5b880f0d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
0 deletions
+33
-0
blocks_json_serialization.rb
app/models/concerns/blocks_json_serialization.rb
+14
-0
user.rb
app/models/user.rb
+1
-0
blocks_json_serialization_spec.rb
spec/models/concerns/blocks_json_serialization_spec.rb
+17
-0
user_spec.rb
spec/models/user_spec.rb
+1
-0
No files found.
app/models/concerns/blocks_json_serialization.rb
0 → 100644
View file @
32ff813d
# Overrides `as_json` and `to_json` to raise an exception when called in order
# to prevent accidentally exposing attributes
#
# Not that that would ever happen... but just in case.
module
BlocksJsonSerialization
extend
ActiveSupport
::
Concern
def
to_json
raise
SecurityError
,
"JSON serialization has been disabled on
#{
self
.
class
.
name
}
"
end
alias_method
:as_json
,
:to_json
end
app/models/user.rb
View file @
32ff813d
...
@@ -18,6 +18,7 @@ class User < ActiveRecord::Base
...
@@ -18,6 +18,7 @@ class User < ActiveRecord::Base
include
CreatedAtFilterable
include
CreatedAtFilterable
include
IgnorableColumn
include
IgnorableColumn
include
BulkMemberAccessLoad
include
BulkMemberAccessLoad
include
BlocksJsonSerialization
DEFAULT_NOTIFICATION_LEVEL
=
:participating
DEFAULT_NOTIFICATION_LEVEL
=
:participating
...
...
spec/models/concerns/blocks_json_serialization_spec.rb
0 → 100644
View file @
32ff813d
require
'rails_helper'
describe
BlocksJsonSerialization
do
DummyModel
=
Class
.
new
do
include
BlocksJsonSerialization
end
it
'blocks as_json'
do
expect
{
DummyModel
.
new
.
to_json
}
.
to
raise_error
(
SecurityError
,
"JSON serialization has been disabled on DummyModel"
)
end
it
'blocks to_json'
do
expect
{
DummyModel
.
new
.
to_json
}
.
to
raise_error
(
SecurityError
,
"JSON serialization has been disabled on DummyModel"
)
end
end
spec/models/user_spec.rb
View file @
32ff813d
...
@@ -12,6 +12,7 @@ describe User do
...
@@ -12,6 +12,7 @@ describe User do
it
{
is_expected
.
to
include_module
(
Referable
)
}
it
{
is_expected
.
to
include_module
(
Referable
)
}
it
{
is_expected
.
to
include_module
(
Sortable
)
}
it
{
is_expected
.
to
include_module
(
Sortable
)
}
it
{
is_expected
.
to
include_module
(
TokenAuthenticatable
)
}
it
{
is_expected
.
to
include_module
(
TokenAuthenticatable
)
}
it
{
is_expected
.
to
include_module
(
BlocksJsonSerialization
)
}
end
end
describe
'delegations'
do
describe
'delegations'
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