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
f0116f13
Commit
f0116f13
authored
Jul 17, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Store commit count in project table
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
67ca5a53
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
37 additions
and
19 deletions
+37
-19
app/helpers/projects_helper.rb
app/helpers/projects_helper.rb
+14
-0
app/models/project.rb
app/models/project.rb
+4
-0
app/models/repository.rb
app/models/repository.rb
+0
-12
app/services/git_push_service.rb
app/services/git_push_service.rb
+0
-1
app/views/explore/projects/_project.html.haml
app/views/explore/projects/_project.html.haml
+1
-1
app/views/projects/show.html.haml
app/views/projects/show.html.haml
+1
-1
app/workers/project_cache_worker.rb
app/workers/project_cache_worker.rb
+4
-1
app/workers/repository_import_worker.rb
app/workers/repository_import_worker.rb
+1
-1
db/migrate/20150717130904_add_commits_count_to_project.rb
db/migrate/20150717130904_add_commits_count_to_project.rb
+5
-0
db/schema.rb
db/schema.rb
+2
-1
lib/repository_cache.rb
lib/repository_cache.rb
+5
-1
No files found.
app/helpers/projects_helper.rb
View file @
f0116f13
...
...
@@ -276,4 +276,18 @@ module ProjectsHelper
def
readme_cache_key
[
@project
.
id
,
@project
.
commit
.
sha
,
"readme"
].
join
(
'-'
)
end
def
round_commit_count
(
project
)
count
=
project
.
commit_count
if
count
>
10000
'10000+'
elsif
count
>
5000
'5000+'
elsif
count
>
1000
'1000+'
else
count
end
end
end
app/models/project.rb
View file @
f0116f13
...
...
@@ -683,6 +683,10 @@ class Project < ActiveRecord::Base
update_attribute
(
:repository_size
,
repository
.
size
)
end
def
update_commit_count
update_attribute
(
:commit_count
,
repository
.
commit_count
)
end
def
forks_count
ForkedProjectLink
.
where
(
forked_from_project_id:
self
.
id
).
count
end
...
...
app/models/repository.rb
View file @
f0116f13
...
...
@@ -94,18 +94,6 @@ class Repository
gitlab_shell
.
rm_tag
(
path_with_namespace
,
tag_name
)
end
def
round_commit_count
if
commit_count
>
10000
'10000+'
elsif
commit_count
>
5000
'5000+'
elsif
commit_count
>
1000
'1000+'
else
commit_count
end
end
def
branch_names
cache
.
fetch
(
:branch_names
)
{
raw_repository
.
branch_names
}
end
...
...
app/services/git_push_service.rb
View file @
f0116f13
...
...
@@ -21,7 +21,6 @@ class GitPushService
project
.
ensure_satellite_exists
project
.
repository
.
expire_cache
project
.
update_repository_size
if
push_remove_branch?
(
ref
,
newrev
)
@push_commits
=
[]
...
...
app/views/explore/projects/_project.html.haml
View file @
f0116f13
...
...
@@ -14,7 +14,7 @@
.repo-info
-
unless
project
.
empty_repo?
=
link_to
pluralize
(
project
.
repository
.
round_commit_count
,
'commit'
),
namespace_project_commits_path
(
project
.
namespace
,
project
,
project
.
default_branch
)
=
link_to
pluralize
(
round_commit_count
(
project
)
,
'commit'
),
namespace_project_commits_path
(
project
.
namespace
,
project
,
project
.
default_branch
)
·
=
link_to
pluralize
(
project
.
repository
.
branch_names
.
count
,
'branch'
),
namespace_project_branches_path
(
project
.
namespace
,
project
)
·
...
...
app/views/projects/show.html.haml
View file @
f0116f13
...
...
@@ -13,7 +13,7 @@
%ul
.nav.nav-pills
%li
=
link_to
namespace_project_commits_path
(
@project
.
namespace
,
@project
,
@ref
||
@repository
.
root_ref
)
do
=
pluralize
(
number_with_delimiter
(
@
repository
.
commit_count
),
'commit'
)
=
pluralize
(
number_with_delimiter
(
@
project
.
commit_count
),
'commit'
)
%li
=
link_to
namespace_project_branches_path
(
@project
.
namespace
,
@project
)
do
=
pluralize
(
number_with_delimiter
(
@repository
.
branch_names
.
count
),
'branch'
)
...
...
app/workers/project_cache_worker.rb
View file @
f0116f13
...
...
@@ -4,6 +4,9 @@ class ProjectCacheWorker
sidekiq_options
queue: :default
def
perform
(
project_id
)
Project
.
find
(
project_id
).
repository
.
build_cache
project
=
Project
.
find
(
project_id
)
project
.
update_repository_size
project
.
update_commit_count
project
.
repository
.
build_cache
end
end
app/workers/repository_import_worker.rb
View file @
f0116f13
...
...
@@ -28,7 +28,7 @@ class RepositoryImportWorker
project
.
import_finish
project
.
save
project
.
satellite
.
create
unless
project
.
satellite
.
exists?
project
.
update_repository_size
ProjectCacheWorker
.
perform_async
(
project
.
id
)
Gitlab
::
BitbucketImport
::
KeyDeleter
.
new
(
project
).
execute
if
project
.
import_type
==
'bitbucket'
end
end
db/migrate/20150717130904_add_commits_count_to_project.rb
0 → 100644
View file @
f0116f13
class
AddCommitsCountToProject
<
ActiveRecord
::
Migration
def
change
add_column
:projects
,
:commit_count
,
:integer
,
default:
0
end
end
db/schema.rb
View file @
f0116f13
...
...
@@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord
::
Schema
.
define
(
version:
2015071
3160110
)
do
ActiveRecord
::
Schema
.
define
(
version:
2015071
7130904
)
do
# These are extensions that must be enabled in order to support this database
enable_extension
"plpgsql"
...
...
@@ -374,6 +374,7 @@ ActiveRecord::Schema.define(version: 20150713160110) do
t
.
integer
"star_count"
,
default:
0
,
null:
false
t
.
string
"import_type"
t
.
string
"import_source"
t
.
integer
"commit_count"
,
default:
0
end
add_index
"projects"
,
[
"created_at"
,
"id"
],
name:
"index_projects_on_created_at_and_id"
,
using: :btree
...
...
lib/repository_cache.rb
View file @
f0116f13
...
...
@@ -20,6 +20,10 @@ class RepositoryCache
end
def
exist?
(
key
)
backend
.
exist?
(
key
)
backend
.
exist?
(
cache_key
(
key
))
end
def
read
(
key
)
backend
.
read
(
cache_key
(
key
))
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