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
e7238824
Commit
e7238824
authored
Aug 01, 2018
by
Jamie Schembri
Committed by
Sean McGivern
Aug 01, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Resolve "Allow issue's Internal ID (`iid`) to be set when creating via the API"
parent
7586693e
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
169 additions
and
8 deletions
+169
-8
app/models/concerns/atomic_internal_id.rb
app/models/concerns/atomic_internal_id.rb
+11
-6
app/models/internal_id.rb
app/models/internal_id.rb
+35
-1
changelogs/unreleased/1756-set-iid-via-api.yml
changelogs/unreleased/1756-set-iid-via-api.yml
+5
-0
doc/api/issues.md
doc/api/issues.md
+1
-0
lib/api/issues.rb
lib/api/issues.rb
+5
-1
spec/models/internal_id_spec.rb
spec/models/internal_id_spec.rb
+66
-0
spec/requests/api/issues_spec.rb
spec/requests/api/issues_spec.rb
+32
-0
spec/support/shared_examples/models/atomic_internal_id_spec.rb
...support/shared_examples/models/atomic_internal_id_spec.rb
+14
-0
No files found.
app/models/concerns/atomic_internal_id.rb
View file @
e7238824
...
@@ -35,16 +35,21 @@ module AtomicInternalId
...
@@ -35,16 +35,21 @@ module AtomicInternalId
define_method
(
"ensure_
#{
scope
}
_
#{
column
}
!"
)
do
define_method
(
"ensure_
#{
scope
}
_
#{
column
}
!"
)
do
scope_value
=
association
(
scope
).
reader
scope_value
=
association
(
scope
).
reader
value
=
read_attribute
(
column
)
if
read_attribute
(
column
).
blank?
&&
scope_value
return
value
unless
scope_value
scope_attrs
=
{
scope_value
.
class
.
table_name
.
singularize
.
to_sym
=>
scope_value
}
usage
=
self
.
class
.
table_name
.
to_sym
new_iid
=
InternalId
.
generate_next
(
self
,
scope_attrs
,
usage
,
init
)
scope_attrs
=
{
scope_value
.
class
.
table_name
.
singularize
.
to_sym
=>
scope_value
}
write_attribute
(
column
,
new_iid
)
usage
=
self
.
class
.
table_name
.
to_sym
if
value
.
present?
InternalId
.
track_greatest
(
self
,
scope_attrs
,
usage
,
value
,
init
)
else
value
=
InternalId
.
generate_next
(
self
,
scope_attrs
,
usage
,
init
)
write_attribute
(
column
,
value
)
end
end
read_attribute
(
column
)
value
end
end
end
end
end
end
...
...
app/models/internal_id.rb
View file @
e7238824
# An InternalId is a strictly monotone sequence of integers
# An InternalId is a strictly monotone sequence of integers
# generated for a given scope and usage.
# generated for a given scope and usage.
#
#
# The monotone sequence may be broken if an ID is explicitly provided
# to `.track_greatest_and_save!` or `#track_greatest`.
#
# For example, issues use their project to scope internal ids:
# For example, issues use their project to scope internal ids:
# In that sense, scope is "project" and usage is "issues".
# In that sense, scope is "project" and usage is "issues".
# Generated internal ids for an issue are unique per project.
# Generated internal ids for an issue are unique per project.
...
@@ -25,13 +28,34 @@ class InternalId < ActiveRecord::Base
...
@@ -25,13 +28,34 @@ class InternalId < ActiveRecord::Base
# The operation locks the record and gathers a `ROW SHARE` lock (in PostgreSQL).
# The operation locks the record and gathers a `ROW SHARE` lock (in PostgreSQL).
# As such, the increment is atomic and safe to be called concurrently.
# As such, the increment is atomic and safe to be called concurrently.
def
increment_and_save!
def
increment_and_save!
update_and_save
{
self
.
last_value
=
(
last_value
||
0
)
+
1
}
end
# Increments #last_value with new_value if it is greater than the current,
# and saves the record
#
# The operation locks the record and gathers a `ROW SHARE` lock (in PostgreSQL).
# As such, the increment is atomic and safe to be called concurrently.
def
track_greatest_and_save!
(
new_value
)
update_and_save
{
self
.
last_value
=
[
last_value
||
0
,
new_value
].
max
}
end
private
def
update_and_save
(
&
block
)
lock!
lock!
self
.
last_value
=
(
last_value
||
0
)
+
1
yield
save!
save!
last_value
last_value
end
end
class
<<
self
class
<<
self
def
track_greatest
(
subject
,
scope
,
usage
,
new_value
,
init
)
return
new_value
unless
available?
InternalIdGenerator
.
new
(
subject
,
scope
,
usage
,
init
).
track_greatest
(
new_value
)
end
def
generate_next
(
subject
,
scope
,
usage
,
init
)
def
generate_next
(
subject
,
scope
,
usage
,
init
)
# Shortcut if `internal_ids` table is not available (yet)
# Shortcut if `internal_ids` table is not available (yet)
# This can be the case in other (unrelated) migration specs
# This can be the case in other (unrelated) migration specs
...
@@ -94,6 +118,16 @@ class InternalId < ActiveRecord::Base
...
@@ -94,6 +118,16 @@ class InternalId < ActiveRecord::Base
end
end
end
end
# Create a record in internal_ids if one does not yet exist
# and set its new_value if it is higher than the current last_value
#
# Note this will acquire a ROW SHARE lock on the InternalId record
def
track_greatest
(
new_value
)
subject
.
transaction
do
(
lookup
||
create_record
).
track_greatest_and_save!
(
new_value
)
end
end
private
private
# Retrieve InternalId record for (project, usage) combination, if it exists
# Retrieve InternalId record for (project, usage) combination, if it exists
...
...
changelogs/unreleased/1756-set-iid-via-api.yml
0 → 100644
View file @
e7238824
---
title
:
Allow issues API to receive an internal ID (iid) on create
merge_request
:
20626
author
:
Jamie Schembri
type
:
fixed
doc/api/issues.md
View file @
e7238824
...
@@ -463,6 +463,7 @@ POST /projects/:id/issues
...
@@ -463,6 +463,7 @@ POST /projects/:id/issues
| Attribute | Type | Required | Description |
| Attribute | Type | Required | Description |
|-------------------------------------------|----------------|----------|--------------|
|-------------------------------------------|----------------|----------|--------------|
|
`id`
| integer/string | yes | The ID or
[
URL-encoded path of the project
](
README.md#namespaced-path-encoding
)
owned by the authenticated user |
|
`id`
| integer/string | yes | The ID or
[
URL-encoded path of the project
](
README.md#namespaced-path-encoding
)
owned by the authenticated user |
|
`iid`
| integer/string | no | The internal ID of the project's issue (requires admin or project owner rights) |
|
`title`
| string | yes | The title of an issue |
|
`title`
| string | yes | The title of an issue |
|
`description`
| string | no | The description of an issue |
|
`description`
| string | no | The description of an issue |
|
`confidential`
| boolean | no | Set an issue to be confidential. Default is
`false`
. |
|
`confidential`
| boolean | no | Set an issue to be confidential. Default is
`false`
. |
...
...
lib/api/issues.rb
View file @
e7238824
...
@@ -162,6 +162,9 @@ module API
...
@@ -162,6 +162,9 @@ module API
desc:
'The IID of a merge request for which to resolve discussions'
desc:
'The IID of a merge request for which to resolve discussions'
optional
:discussion_to_resolve
,
type:
String
,
optional
:discussion_to_resolve
,
type:
String
,
desc:
'The ID of a discussion to resolve, also pass `merge_request_to_resolve_discussions_of`'
desc:
'The ID of a discussion to resolve, also pass `merge_request_to_resolve_discussions_of`'
optional
:iid
,
type:
Integer
,
desc:
'The internal ID of a project issue. Available only for admins and project owners.'
use
:issue_params
use
:issue_params
end
end
post
':id/issues'
do
post
':id/issues'
do
...
@@ -169,9 +172,10 @@ module API
...
@@ -169,9 +172,10 @@ module API
authorize!
:create_issue
,
user_project
authorize!
:create_issue
,
user_project
# Setting created_at time only allowed for admins and project owners
# Setting created_at time o
r iid o
nly allowed for admins and project owners
unless
current_user
.
admin?
||
user_project
.
owner
==
current_user
unless
current_user
.
admin?
||
user_project
.
owner
==
current_user
params
.
delete
(
:created_at
)
params
.
delete
(
:created_at
)
params
.
delete
(
:iid
)
end
end
issue_params
=
declared_params
(
include_missing:
false
)
issue_params
=
declared_params
(
include_missing:
false
)
...
...
spec/models/internal_id_spec.rb
View file @
e7238824
...
@@ -79,6 +79,46 @@ describe InternalId do
...
@@ -79,6 +79,46 @@ describe InternalId do
end
end
end
end
describe
'.track_greatest'
do
let
(
:value
)
{
9001
}
subject
{
described_class
.
track_greatest
(
issue
,
scope
,
usage
,
value
,
init
)
}
context
'in the absence of a record'
do
it
'creates a record if not yet present'
do
expect
{
subject
}.
to
change
{
described_class
.
count
}.
from
(
0
).
to
(
1
)
end
end
it
'stores record attributes'
do
subject
described_class
.
first
.
tap
do
|
record
|
expect
(
record
.
project
).
to
eq
(
project
)
expect
(
record
.
usage
).
to
eq
(
usage
.
to_s
)
expect
(
record
.
last_value
).
to
eq
(
value
)
end
end
context
'with existing issues'
do
before
do
create
(
:issue
,
project:
project
)
described_class
.
delete_all
end
it
'still returns the last value to that of the given value'
do
expect
(
subject
).
to
eq
(
value
)
end
end
context
'when value is less than the current last_value'
do
it
'returns the current last_value'
do
described_class
.
create!
(
**
scope
,
usage:
usage
,
last_value:
10_001
)
expect
(
subject
).
to
eq
10_001
end
end
end
describe
'#increment_and_save!'
do
describe
'#increment_and_save!'
do
let
(
:id
)
{
create
(
:internal_id
)
}
let
(
:id
)
{
create
(
:internal_id
)
}
subject
{
id
.
increment_and_save!
}
subject
{
id
.
increment_and_save!
}
...
@@ -103,4 +143,30 @@ describe InternalId do
...
@@ -103,4 +143,30 @@ describe InternalId do
end
end
end
end
end
end
describe
'#track_greatest_and_save!'
do
let
(
:id
)
{
create
(
:internal_id
)
}
let
(
:new_last_value
)
{
9001
}
subject
{
id
.
track_greatest_and_save!
(
new_last_value
)
}
it
'returns new last value'
do
expect
(
subject
).
to
eq
new_last_value
end
it
'saves the record'
do
subject
expect
(
id
.
changed?
).
to
be_falsey
end
context
'when new last value is lower than the max'
do
it
'does not update the last value'
do
id
.
update!
(
last_value:
10_001
)
subject
expect
(
id
.
reload
.
last_value
).
to
eq
10_001
end
end
end
end
end
spec/requests/api/issues_spec.rb
View file @
e7238824
...
@@ -1002,6 +1002,38 @@ describe API::Issues do
...
@@ -1002,6 +1002,38 @@ describe API::Issues do
end
end
end
end
context
'an internal ID is provided'
do
context
'by an admin'
do
it
'sets the internal ID on the new issue'
do
post
api
(
"/projects/
#{
project
.
id
}
/issues"
,
admin
),
title:
'new issue'
,
iid:
9001
expect
(
response
).
to
have_gitlab_http_status
(
201
)
expect
(
json_response
[
'iid'
]).
to
eq
9001
end
end
context
'by an owner'
do
it
'sets the internal ID on the new issue'
do
post
api
(
"/projects/
#{
project
.
id
}
/issues"
,
user
),
title:
'new issue'
,
iid:
9001
expect
(
response
).
to
have_gitlab_http_status
(
201
)
expect
(
json_response
[
'iid'
]).
to
eq
9001
end
end
context
'by another user'
do
it
'ignores the given internal ID'
do
post
api
(
"/projects/
#{
project
.
id
}
/issues"
,
user2
),
title:
'new issue'
,
iid:
9001
expect
(
response
).
to
have_gitlab_http_status
(
201
)
expect
(
json_response
[
'iid'
]).
not_to
eq
9001
end
end
end
it
'creates a new project issue'
do
it
'creates a new project issue'
do
post
api
(
"/projects/
#{
project
.
id
}
/issues"
,
user
),
post
api
(
"/projects/
#{
project
.
id
}
/issues"
,
user
),
title:
'new issue'
,
labels:
'label, label2'
,
weight:
3
,
title:
'new issue'
,
labels:
'label, label2'
,
weight:
3
,
...
...
spec/support/shared_examples/models/atomic_internal_id_spec.rb
View file @
e7238824
...
@@ -60,6 +60,20 @@ shared_examples_for 'AtomicInternalId' do |validate_presence: true|
...
@@ -60,6 +60,20 @@ shared_examples_for 'AtomicInternalId' do |validate_presence: true|
expect
{
subject
}.
not_to
change
{
instance
.
public_send
(
internal_id_attribute
)
}
expect
{
subject
}.
not_to
change
{
instance
.
public_send
(
internal_id_attribute
)
}
end
end
context
'when the instance has an internal ID set'
do
let
(
:internal_id
)
{
9001
}
it
'calls InternalId.update_last_value and sets the `last_value` to that of the instance'
do
instance
.
send
(
"
#{
internal_id_attribute
}
="
,
internal_id
)
expect
(
InternalId
)
.
to
receive
(
:track_greatest
)
.
with
(
instance
,
scope_attrs
,
usage
,
internal_id
,
any_args
)
.
and_return
(
internal_id
)
subject
end
end
end
end
end
end
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