refactor code: repository.rb
This commit is contained in:
parent
99bd00158c
commit
dab072c1ab
4 changed files with 82 additions and 56 deletions
|
@ -64,7 +64,7 @@ class ApplicationController < ActionController::Base
|
||||||
else
|
else
|
||||||
@branch = params[:branch].blank? ? nil : params[:branch]
|
@branch = params[:branch].blank? ? nil : params[:branch]
|
||||||
@tag = params[:tag].blank? ? nil : params[:tag]
|
@tag = params[:tag].blank? ? nil : params[:tag]
|
||||||
@ref = @branch || @tag || "master"
|
@ref = @branch || @tag || Repository.default_ref
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -108,7 +108,7 @@ class ProjectsController < ApplicationController
|
||||||
if params[:commit_id]
|
if params[:commit_id]
|
||||||
@commit = @repo.commits(params[:commit_id]).first
|
@commit = @repo.commits(params[:commit_id]).first
|
||||||
else
|
else
|
||||||
@commit = @repo.commits(@ref || "master").first
|
@commit = @repo.commits(@ref).first
|
||||||
end
|
end
|
||||||
|
|
||||||
@tree = @commit.tree
|
@tree = @commit.tree
|
||||||
|
|
|
@ -46,6 +46,21 @@ class Project < ActiveRecord::Base
|
||||||
|
|
||||||
scope :public_only, where(:private_flag => false)
|
scope :public_only, where(:private_flag => false)
|
||||||
|
|
||||||
|
def repository
|
||||||
|
@repository ||= Repository.new(self)
|
||||||
|
end
|
||||||
|
|
||||||
|
delegate :repo,
|
||||||
|
:tags,
|
||||||
|
:repo_exists?,
|
||||||
|
:commit,
|
||||||
|
:commits,
|
||||||
|
:tree,
|
||||||
|
:heads,
|
||||||
|
:commits_since,
|
||||||
|
:fresh_commits,
|
||||||
|
:to => :repository, :prefix => nil
|
||||||
|
|
||||||
def to_param
|
def to_param
|
||||||
code
|
code
|
||||||
end
|
end
|
||||||
|
@ -114,18 +129,6 @@ class Project < ActiveRecord::Base
|
||||||
GITOSIS["base_path"] + path + ".git"
|
GITOSIS["base_path"] + path + ".git"
|
||||||
end
|
end
|
||||||
|
|
||||||
def repo
|
|
||||||
@repo ||= Grit::Repo.new(path_to_repo)
|
|
||||||
end
|
|
||||||
|
|
||||||
def tags
|
|
||||||
repo.tags.map(&:name).sort.reverse
|
|
||||||
end
|
|
||||||
|
|
||||||
def repo_exists?
|
|
||||||
repo rescue false
|
|
||||||
end
|
|
||||||
|
|
||||||
def last_activity
|
def last_activity
|
||||||
updates(1).first
|
updates(1).first
|
||||||
rescue
|
rescue
|
||||||
|
@ -146,48 +149,6 @@ class Project < ActiveRecord::Base
|
||||||
end[0...n]
|
end[0...n]
|
||||||
end
|
end
|
||||||
|
|
||||||
def commit(commit_id = nil)
|
|
||||||
if commit_id
|
|
||||||
repo.commits(commit_id).first
|
|
||||||
else
|
|
||||||
repo.commits.first
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def heads
|
|
||||||
@heads ||= repo.heads
|
|
||||||
end
|
|
||||||
|
|
||||||
def fresh_commits(n = 10)
|
|
||||||
commits = heads.map do |h|
|
|
||||||
repo.commits(h.name, n)
|
|
||||||
end.flatten.uniq { |c| c.id }
|
|
||||||
|
|
||||||
commits.sort! do |x, y|
|
|
||||||
y.committed_date <=> x.committed_date
|
|
||||||
end
|
|
||||||
|
|
||||||
commits[0...n]
|
|
||||||
end
|
|
||||||
|
|
||||||
def commits_since(date)
|
|
||||||
commits = heads.map do |h|
|
|
||||||
repo.log(h.name, nil, :since => date)
|
|
||||||
end.flatten.uniq { |c| c.id }
|
|
||||||
|
|
||||||
commits.sort! do |x, y|
|
|
||||||
y.committed_date <=> x.committed_date
|
|
||||||
end
|
|
||||||
|
|
||||||
commits
|
|
||||||
end
|
|
||||||
|
|
||||||
def tree(fcommit, path = nil)
|
|
||||||
fcommit = commit if fcommit == :head
|
|
||||||
tree = fcommit.tree
|
|
||||||
path ? (tree / path) : tree
|
|
||||||
end
|
|
||||||
|
|
||||||
def check_limit
|
def check_limit
|
||||||
unless owner.can_create_project?
|
unless owner.can_create_project?
|
||||||
errors[:base] << ("Your own projects limit is #{owner.projects_limit}! Please contact administrator to increase it")
|
errors[:base] << ("Your own projects limit is #{owner.projects_limit}! Please contact administrator to increase it")
|
||||||
|
|
65
app/models/repository.rb
Normal file
65
app/models/repository.rb
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
class Repository
|
||||||
|
attr_accessor :project
|
||||||
|
|
||||||
|
def self.default_ref
|
||||||
|
"master"
|
||||||
|
end
|
||||||
|
|
||||||
|
def initialize(project)
|
||||||
|
@project = project
|
||||||
|
end
|
||||||
|
|
||||||
|
def repo
|
||||||
|
@repo ||= Grit::Repo.new(project.path_to_repo)
|
||||||
|
end
|
||||||
|
|
||||||
|
def tags
|
||||||
|
repo.tags.map(&:name).sort.reverse
|
||||||
|
end
|
||||||
|
|
||||||
|
def repo_exists?
|
||||||
|
repo rescue false
|
||||||
|
end
|
||||||
|
|
||||||
|
def commit(commit_id = nil)
|
||||||
|
if commit_id
|
||||||
|
repo.commits(commit_id).first
|
||||||
|
else
|
||||||
|
repo.commits.first
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def tree(fcommit, path = nil)
|
||||||
|
fcommit = commit if fcommit == :head
|
||||||
|
tree = fcommit.tree
|
||||||
|
path ? (tree / path) : tree
|
||||||
|
end
|
||||||
|
|
||||||
|
def fresh_commits(n = 10)
|
||||||
|
commits = heads.map do |h|
|
||||||
|
repo.commits(h.name, n)
|
||||||
|
end.flatten.uniq { |c| c.id }
|
||||||
|
|
||||||
|
commits.sort! do |x, y|
|
||||||
|
y.committed_date <=> x.committed_date
|
||||||
|
end
|
||||||
|
|
||||||
|
commits[0...n]
|
||||||
|
end
|
||||||
|
|
||||||
|
def heads
|
||||||
|
@heads ||= repo.heads
|
||||||
|
end
|
||||||
|
|
||||||
|
def commits_since(date)
|
||||||
|
commits = heads.map do |h|
|
||||||
|
repo.log(h.name, nil, :since => date)
|
||||||
|
end.flatten.uniq { |c| c.id }
|
||||||
|
|
||||||
|
commits.sort! do |x, y|
|
||||||
|
y.committed_date <=> x.committed_date
|
||||||
|
end
|
||||||
|
|
||||||
|
commits
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in a new issue