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
f34f9a9e
Commit
f34f9a9e
authored
Apr 28, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'notes_finder_updated_at' into 'master'
NotesFinder filters by updated_at
parents
27f31a7e
bd8b2b7f
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
62 additions
and
5 deletions
+62
-5
app/assets/javascripts/notes.js.coffee
app/assets/javascripts/notes.js.coffee
+4
-1
app/controllers/projects/notes_controller.rb
app/controllers/projects/notes_controller.rb
+2
-1
app/finders/notes_finder.rb
app/finders/notes_finder.rb
+10
-1
app/views/projects/notes/_notes_with_form.html.haml
app/views/projects/notes/_notes_with_form.html.haml
+1
-1
db/migrate/20140428105831_add_notes_index_updated_at.rb
db/migrate/20140428105831_add_notes_index_updated_at.rb
+5
-0
db/schema.rb
db/schema.rb
+2
-1
spec/finders/notes_finder_spec.rb
spec/finders/notes_finder_spec.rb
+38
-0
No files found.
app/assets/javascripts/notes.js.coffee
View file @
f34f9a9e
class
Notes
class
Notes
@
interval
:
null
@
interval
:
null
constructor
:
(
notes_url
,
note_ids
)
->
constructor
:
(
notes_url
,
note_ids
,
last_fetched_at
)
->
@
notes_url
=
notes_url
@
notes_url
=
notes_url
@
notes_url
=
gon
.
relative_url_root
+
@
notes_url
if
gon
.
relative_url_root
?
@
notes_url
=
gon
.
relative_url_root
+
@
notes_url
if
gon
.
relative_url_root
?
@
note_ids
=
note_ids
@
note_ids
=
note_ids
@
last_fetched_at
=
last_fetched_at
@
initRefresh
()
@
initRefresh
()
@
setupMainTargetNoteForm
()
@
setupMainTargetNoteForm
()
@
cleanBinding
()
@
cleanBinding
()
...
@@ -76,9 +77,11 @@ class Notes
...
@@ -76,9 +77,11 @@ class Notes
getContent
:
->
getContent
:
->
$
.
ajax
$
.
ajax
url
:
@
notes_url
url
:
@
notes_url
data
:
"last_fetched_at="
+
@
last_fetched_at
dataType
:
"json"
dataType
:
"json"
success
:
(
data
)
=>
success
:
(
data
)
=>
notes
=
data
.
notes
notes
=
data
.
notes
@
last_fetched_at
=
data
.
last_fetched_at
$
.
each
notes
,
(
i
,
note
)
=>
$
.
each
notes
,
(
i
,
note
)
=>
@
renderNote
(
note
)
@
renderNote
(
note
)
...
...
app/controllers/projects/notes_controller.rb
View file @
f34f9a9e
...
@@ -5,9 +5,10 @@ class Projects::NotesController < Projects::ApplicationController
...
@@ -5,9 +5,10 @@ class Projects::NotesController < Projects::ApplicationController
before_filter
:authorize_admin_note!
,
only:
[
:update
,
:destroy
]
before_filter
:authorize_admin_note!
,
only:
[
:update
,
:destroy
]
def
index
def
index
current_fetched_at
=
Time
.
now
.
to_i
@notes
=
NotesFinder
.
new
.
execute
(
project
,
current_user
,
params
)
@notes
=
NotesFinder
.
new
.
execute
(
project
,
current_user
,
params
)
notes_json
=
{
notes:
[]
}
notes_json
=
{
notes:
[]
,
last_fetched_at:
current_fetched_at
}
@notes
.
each
do
|
note
|
@notes
.
each
do
|
note
|
notes_json
[
:notes
]
<<
{
notes_json
[
:notes
]
<<
{
...
...
app/finders/notes_finder.rb
View file @
f34f9a9e
class
NotesFinder
class
NotesFinder
FETCH_OVERLAP
=
5
.
seconds
def
execute
(
project
,
current_user
,
params
)
def
execute
(
project
,
current_user
,
params
)
target_type
=
params
[
:target_type
]
target_type
=
params
[
:target_type
]
target_id
=
params
[
:target_id
]
target_id
=
params
[
:target_id
]
# Default to 0 to remain compatible with old clients
last_fetched_at
=
Time
.
at
(
params
.
fetch
(
:last_fetched_at
,
0
).
to_i
)
case
target_type
notes
=
case
target_type
when
"commit"
when
"commit"
project
.
notes
.
for_commit_id
(
target_id
).
not_inline
.
fresh
project
.
notes
.
for_commit_id
(
target_id
).
not_inline
.
fresh
when
"issue"
when
"issue"
...
@@ -12,6 +16,11 @@ class NotesFinder
...
@@ -12,6 +16,11 @@ class NotesFinder
project
.
merge_requests
.
find
(
target_id
).
mr_and_commit_notes
.
inc_author
.
fresh
project
.
merge_requests
.
find
(
target_id
).
mr_and_commit_notes
.
inc_author
.
fresh
when
"snippet"
when
"snippet"
project
.
snippets
.
find
(
target_id
).
notes
.
fresh
project
.
snippets
.
find
(
target_id
).
notes
.
fresh
else
raise
'invalid target_type'
end
end
# Use overlapping intervals to avoid worrying about race conditions
notes
.
where
(
'updated_at > ?'
,
last_fetched_at
-
FETCH_OVERLAP
)
end
end
end
end
app/views/projects/notes/_notes_with_form.html.haml
View file @
f34f9a9e
...
@@ -7,4 +7,4 @@
...
@@ -7,4 +7,4 @@
=
render
"projects/notes/form"
=
render
"projects/notes/form"
:javascript
:javascript
new
Notes
(
"
#{
project_notes_path
(
target_id:
@noteable
.
id
,
target_type:
@noteable
.
class
.
name
.
underscore
)
}
"
,
#{
@notes
.
map
(
&
:id
).
to_json
}
)
new
Notes
(
"
#{
project_notes_path
(
target_id:
@noteable
.
id
,
target_type:
@noteable
.
class
.
name
.
underscore
)
}
"
,
#{
@notes
.
map
(
&
:id
).
to_json
}
,
#{
Time
.
now
.
to_i
}
)
db/migrate/20140428105831_add_notes_index_updated_at.rb
0 → 100644
View file @
f34f9a9e
class
AddNotesIndexUpdatedAt
<
ActiveRecord
::
Migration
def
change
add_index
:notes
,
:updated_at
end
end
db/schema.rb
View file @
f34f9a9e
...
@@ -11,7 +11,7 @@
...
@@ -11,7 +11,7 @@
#
#
# It's strongly recommended that you check this file into your version control system.
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
201404
16185734
)
do
ActiveRecord
::
Schema
.
define
(
version:
201404
28105831
)
do
# These are extensions that must be enabled in order to support this database
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
enable_extension
"plpgsql"
...
@@ -200,6 +200,7 @@ ActiveRecord::Schema.define(version: 20140416185734) do
...
@@ -200,6 +200,7 @@ ActiveRecord::Schema.define(version: 20140416185734) do
add_index
"notes"
,
[
"noteable_type"
],
name:
"index_notes_on_noteable_type"
,
using: :btree
add_index
"notes"
,
[
"noteable_type"
],
name:
"index_notes_on_noteable_type"
,
using: :btree
add_index
"notes"
,
[
"project_id"
,
"noteable_type"
],
name:
"index_notes_on_project_id_and_noteable_type"
,
using: :btree
add_index
"notes"
,
[
"project_id"
,
"noteable_type"
],
name:
"index_notes_on_project_id_and_noteable_type"
,
using: :btree
add_index
"notes"
,
[
"project_id"
],
name:
"index_notes_on_project_id"
,
using: :btree
add_index
"notes"
,
[
"project_id"
],
name:
"index_notes_on_project_id"
,
using: :btree
add_index
"notes"
,
[
"updated_at"
],
name:
"index_notes_on_updated_at"
,
using: :btree
create_table
"projects"
,
force:
true
do
|
t
|
create_table
"projects"
,
force:
true
do
|
t
|
t
.
string
"name"
t
.
string
"name"
...
...
spec/finders/notes_finder_spec.rb
0 → 100644
View file @
f34f9a9e
require
'spec_helper'
describe
NotesFinder
do
let
(
:user
)
{
create
:user
}
let
(
:project
)
{
create
:project
}
let
(
:note1
)
{
create
:note_on_commit
,
project:
project
}
let
(
:note2
)
{
create
:note_on_commit
,
project:
project
}
let
(
:commit
)
{
note1
.
noteable
}
before
do
project
.
team
<<
[
user
,
:master
]
end
describe
:execute
do
let
(
:params
)
{
{
target_id:
commit
.
id
,
target_type:
'commit'
,
last_fetched_at:
1
.
hour
.
ago
.
to_i
}
}
before
do
note1
note2
end
it
'should find all notes'
do
notes
=
NotesFinder
.
new
.
execute
(
project
,
user
,
params
)
notes
.
size
.
should
eq
(
2
)
end
it
'should raise an exception for an invalid target_type'
do
params
.
merge!
(
target_type:
'invalid'
)
expect
{
NotesFinder
.
new
.
execute
(
project
,
user
,
params
)
}.
to
raise_error
(
'invalid target_type'
)
end
it
'filters out old notes'
do
note2
.
update_attribute
(
:updated_at
,
2
.
hours
.
ago
)
notes
=
NotesFinder
.
new
.
execute
(
project
,
user
,
params
)
notes
.
should
eq
([
note1
])
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