gitlab-org--gitlab-foss/app/models/project.rb

444 lines
13 KiB
Ruby
Raw Normal View History

2012-11-19 18:24:05 +00:00
# == Schema Information
#
# Table name: projects
#
# id :integer not null, primary key
# name :string(255)
# path :string(255)
# description :text
2013-06-19 12:40:33 +00:00
# created_at :datetime
# updated_at :datetime
2013-01-03 19:09:18 +00:00
# creator_id :integer
2012-11-19 18:24:05 +00:00
# default_branch :string(255)
# issues_enabled :boolean default(TRUE), not null
# wall_enabled :boolean default(TRUE), not null
# merge_requests_enabled :boolean default(TRUE), not null
# wiki_enabled :boolean default(TRUE), not null
2012-11-24 20:16:51 +00:00
# namespace_id :integer
# public :boolean default(FALSE), not null
2013-03-15 13:16:02 +00:00
# issues_tracker :string(255) default("gitlab"), not null
# issues_tracker_id :string(255)
2013-03-27 16:26:37 +00:00
# snippets_enabled :boolean default(TRUE), not null
# last_activity_at :datetime
2013-06-19 12:40:33 +00:00
# imported :boolean default(FALSE), not null
2012-11-19 18:24:05 +00:00
#
2011-10-08 21:36:38 +00:00
require "grit"
class Project < ActiveRecord::Base
include Gitlab::ShellAdapter
2013-01-23 14:13:28 +00:00
extend Enumerize
2013-04-16 09:45:45 +00:00
attr_accessible :name, :path, :description, :default_branch, :issues_tracker, :label_list,
:issues_enabled, :wall_enabled, :merge_requests_enabled, :snippets_enabled, :issues_tracker_id,
:wiki_enabled, :public, :import_url, :last_activity_at, as: [:default, :admin]
attr_accessible :namespace_id, :creator_id, as: :admin
acts_as_taggable_on :labels, :issues_default_labels
2013-04-16 09:45:45 +00:00
# Relations
belongs_to :creator, foreign_key: "creator_id", class_name: "User"
belongs_to :group, foreign_key: "namespace_id", conditions: "type = 'Group'"
belongs_to :namespace
2012-12-05 15:06:15 +00:00
has_one :last_event, class_name: 'Event', order: 'events.created_at DESC', foreign_key: 'project_id'
2012-11-19 19:34:05 +00:00
has_one :gitlab_ci_service, dependent: :destroy
2013-05-22 14:59:59 +00:00
has_one :campfire_service, dependent: :destroy
2013-05-23 18:10:32 +00:00
has_one :hipchat_service, dependent: :destroy
has_one :forked_project_link, dependent: :destroy, foreign_key: "forked_to_project_id"
has_one :forked_from_project, through: :forked_project_link
2011-11-04 07:42:36 +00:00
2013-05-22 13:58:44 +00:00
has_many :services, dependent: :destroy
has_many :events, dependent: :destroy
Merge Request on forked projects The good: - You can do a merge request for a forked commit and it will merge properly (i.e. it does work). - Push events take into account merge requests on forked projects - Tests around merge_actions now present, spinach, and other rspec tests - Satellites now clean themselves up rather then recreate The questionable: - Events only know about target projects - Project's merge requests only hold on to MR's where they are the target - All operations performed in the satellite The bad: - Duplication between project's repositories and satellites (e.g. commits_between) (for reference: http://feedback.gitlab.com/forums/176466-general/suggestions/3456722-merge-requests-between-projects-repos) Fixes: Make test repos/satellites only create when needed -Spinach/Rspec now only initialize test directory, and setup stubs (things that are relatively cheap) -project_with_code, source_project_with_code, and target_project_with_code now create/destroy their repos individually -fixed remote removal -How to merge renders properly -Update emails to show project/branches -Edit MR doesn't set target branch -Fix some failures on editing/creating merge requests, added a test -Added back a test around merge request observer -Clean up project_transfer_spec, Remove duplicate enable/disable observers -Ensure satellite lock files are cleaned up, Attempted to add some testing around these as well -Signifant speed ups for tests -Update formatting ordering in notes_on_merge_requests -Remove wiki schema update Fixes for search/search results -Search results was using by_project for a list of projects, updated this to use in_projects -updated search results to reference the correct (target) project -udpated search results to print both sides of the merge request Change-Id: I19407990a0950945cc95d62089cbcc6262dab1a8
2013-04-25 14:15:33 +00:00
has_many :merge_requests, dependent: :destroy, foreign_key: "target_project_id"
has_many :issues, dependent: :destroy, order: "state DESC, created_at DESC"
has_many :milestones, dependent: :destroy
has_many :notes, dependent: :destroy
has_many :snippets, dependent: :destroy, class_name: "ProjectSnippet"
has_many :hooks, dependent: :destroy, class_name: "ProjectHook"
has_many :protected_branches, dependent: :destroy
2013-06-19 16:54:10 +00:00
has_many :users_projects, dependent: :destroy
has_many :users, through: :users_projects
2013-05-06 12:10:55 +00:00
has_many :deploy_keys_projects, dependent: :destroy
has_many :deploy_keys, through: :deploy_keys_projects
delegate :name, to: :owner, allow_nil: true, prefix: true
2013-06-21 21:06:21 +00:00
delegate :members, to: :team, prefix: true
2012-10-09 00:10:04 +00:00
# Validations
validates :creator, presence: true
2012-10-09 00:10:04 +00:00
validates :description, length: { within: 0..2000 }
2012-12-25 22:50:41 +00:00
validates :name, presence: true, length: { within: 0..255 },
format: { with: Gitlab::Regex.project_name_regex,
message: "only letters, digits, spaces & '_' '-' '.' allowed. Letter or digit should be first" }
validates :path, presence: true, length: { within: 0..255 },
2013-06-12 19:11:35 +00:00
exclusion: { in: Gitlab::Blacklist.path },
2012-11-28 03:14:05 +00:00
format: { with: Gitlab::Regex.path_regex,
message: "only letters, digits & '_' '-' '.' allowed. Letter or digit should be first" }
2012-10-09 00:10:04 +00:00
validates :issues_enabled, :wall_enabled, :merge_requests_enabled,
:wiki_enabled, inclusion: { in: [true, false] }
2013-02-11 14:17:43 +00:00
validates :issues_tracker_id, length: { within: 0..255 }
validates_uniqueness_of :name, scope: :namespace_id
validates_uniqueness_of :path, scope: :namespace_id
2013-02-11 21:13:21 +00:00
validates :import_url,
format: { with: URI::regexp(%w(git http https)), message: "should be a valid url" },
2013-02-11 21:13:21 +00:00
if: :import?
2013-02-11 21:00:12 +00:00
validate :check_limit, on: :create
2012-10-09 00:10:04 +00:00
# Scopes
2013-04-03 03:06:18 +00:00
scope :without_user, ->(user) { where("projects.id NOT IN (:ids)", ids: user.authorized_projects.map(&:id) ) }
scope :without_team, ->(team) { team.projects.present? ? where("projects.id NOT IN (:ids)", ids: team.projects.map(&:id)) : scoped }
scope :not_in_group, ->(group) { where("projects.id NOT IN (:ids)", ids: group.project_ids ) }
scope :in_team, ->(team) { where("projects.id IN (:ids)", ids: team.projects.map(&:id)) }
scope :in_namespace, ->(namespace) { where(namespace_id: namespace.id) }
2013-04-02 22:28:12 +00:00
scope :in_group_namespace, -> { joins(:group) }
scope :sorted_by_activity, -> { reorder("projects.last_activity_at DESC") }
2012-11-30 03:14:05 +00:00
scope :personal, ->(user) { where(namespace_id: user.namespace_id) }
scope :joined, ->(user) { where("namespace_id != ?", user.namespace_id) }
2013-02-12 09:46:50 +00:00
scope :public_only, -> { where(public: true) }
2011-10-08 21:36:38 +00:00
enumerize :issues_tracker, in: (Gitlab.config.issues_tracker.keys).append(:gitlab), default: :gitlab
2013-01-23 14:13:28 +00:00
2012-10-09 00:10:04 +00:00
class << self
2013-01-14 07:37:29 +00:00
def abandoned
2013-06-11 13:57:52 +00:00
where('projects.last_activity_at < ?', 6.months.ago)
2013-01-14 07:37:29 +00:00
end
def with_push
2013-02-13 11:48:16 +00:00
includes(:events).where('events.action = ?', Event::PUSHED)
end
2012-10-09 00:10:04 +00:00
def active
joins(:issues, :notes, :merge_requests).order("issues.created_at, notes.created_at, merge_requests.created_at DESC")
end
2012-10-09 00:10:04 +00:00
def search query
where("projects.name LIKE :query OR projects.path LIKE :query", query: "%#{query}%")
2012-10-09 00:10:04 +00:00
end
def find_with_namespace(id)
if id.include?("/")
id = id.split("/")
namespace = Namespace.find_by_path(id.first)
return nil unless namespace
where(namespace_id: namespace.id).find_by_path(id.second)
else
where(path: id, namespace_id: nil).last
end
end
2012-10-09 00:10:04 +00:00
def access_options
UsersProject.access_roles
end
end
2013-01-03 19:09:18 +00:00
def team
2013-01-19 18:52:55 +00:00
@team ||= ProjectTeam.new(self)
2013-01-03 19:09:18 +00:00
end
def repository
@repository ||= Repository.new(path_with_namespace, default_branch)
2013-01-03 19:09:18 +00:00
end
def saved?
id && persisted?
end
2013-02-11 21:13:21 +00:00
def import?
import_url.present?
end
def imported?
imported
end
def check_limit
unless creator.can_create_project?
errors[:limit_reached] << ("Your own projects limit is #{creator.projects_limit}! Please contact administrator to increase it")
end
rescue
2012-08-10 23:47:54 +00:00
errors[:base] << ("Can't check your ability to create project")
2011-10-08 21:36:38 +00:00
end
def to_param
if namespace
namespace.path + "/" + path
else
path
end
2011-11-06 20:38:08 +00:00
end
def web_url
[Gitlab.config.gitlab.url, path_with_namespace].join("/")
2011-12-13 21:24:31 +00:00
end
def build_commit_note(commit)
notes.new(commit_id: commit.id, noteable_type: "Commit")
2011-10-08 21:36:38 +00:00
end
2011-11-15 08:34:30 +00:00
def last_activity
last_event
2011-10-31 20:57:16 +00:00
end
def last_activity_date
2013-04-03 03:06:18 +00:00
last_activity_at || updated_at
2012-03-01 18:40:32 +00:00
end
2012-03-05 22:26:40 +00:00
def project_id
self.id
end
2012-10-09 17:39:06 +00:00
def issues_labels
@issues_labels ||= (issues_default_labels + issues.tags_on(:labels)).uniq.sort_by(&:name)
2012-10-09 17:39:06 +00:00
end
2012-11-20 12:22:00 +00:00
def issue_exists?(issue_id)
if used_default_issues_tracker?
self.issues.where(id: issue_id).first.present?
else
true
end
end
def used_default_issues_tracker?
self.issues_tracker == Project.issues_tracker.default_value
end
2013-02-11 14:17:43 +00:00
def can_have_issues_tracker_id?
self.issues_enabled && !self.used_default_issues_tracker?
end
2013-05-22 13:58:44 +00:00
def build_missing_services
available_services_names.each do |service_name|
service = services.find { |service| service.to_param == service_name }
# If service is available but missing in db
# we should create an instance. Ex `create_gitlab_ci_service`
service = self.send :"create_#{service_name}_service" if service.nil?
end
end
def available_services_names
2013-05-23 18:10:32 +00:00
%w(gitlab_ci campfire hipchat)
2012-11-20 12:22:00 +00:00
end
2012-11-20 17:34:05 +00:00
def gitlab_ci?
gitlab_ci_service && gitlab_ci_service.active
end
2012-11-23 19:31:09 +00:00
# For compatibility with old code
def code
path
end
2012-11-21 05:24:05 +00:00
def items_for entity
case entity
when 'issue' then
issues
when 'merge_request' then
merge_requests
end
end
def send_move_instructions
team.members.each do |user|
Notify.delay.project_was_moved_email(self.id, user.id)
end
end
def owner
if namespace
namespace_owner
else
creator
end
end
2013-01-02 21:35:11 +00:00
def team_member_by_name_or_email(name = nil, email = nil)
user = users.where("name like ? or email like ?", name, email).first
users_projects.where(user: user) if user
end
# Get Team Member record by user id
def team_member_by_id(user_id)
users_projects.find_by_user_id(user_id)
end
def name_with_namespace
@name_with_namespace ||= begin
if namespace
namespace.human_name + " / " + name
else
name
end
end
end
def namespace_owner
namespace.try(:owner)
end
def path_with_namespace
if namespace
namespace.path + '/' + path
else
path
end
end
def transfer(new_namespace)
ProjectTransferService.new.transfer(self, new_namespace)
2013-01-02 21:35:11 +00:00
end
def execute_hooks(data)
hooks.each { |hook| hook.async_execute(data) }
2013-01-02 21:35:11 +00:00
end
def execute_services(data)
services.each do |service|
# Call service hook only if it is active
service.execute(data) if service.active
end
end
2013-02-25 19:21:38 +00:00
def discover_default_branch
# Discover the default branch, but only if it hasn't already been set to
# something else
if repository.exists? && default_branch.nil?
2013-02-25 19:21:38 +00:00
update_attributes(default_branch: self.repository.discover_default_branch)
2013-01-02 21:35:11 +00:00
end
end
def update_merge_requests(oldrev, newrev, ref, user)
return true unless ref =~ /heads/
branch_name = ref.gsub("refs/heads/", "")
c_ids = self.repository.commits_between(oldrev, newrev).map(&:id)
2013-01-02 21:35:11 +00:00
# Update code for merge requests
2013-02-20 13:37:20 +00:00
mrs = self.merge_requests.opened.by_branch(branch_name).all
2013-01-02 21:35:11 +00:00
mrs.each { |merge_request| merge_request.reload_code; merge_request.mark_as_unchecked }
# Close merge requests
mrs = self.merge_requests.opened.where(target_branch: branch_name).all
mrs = mrs.select(&:last_commit).select { |mr| c_ids.include?(mr.last_commit.id) }
mrs.each { |merge_request| merge_request.merge!(user.id) }
true
end
def valid_repo?
repository.exists?
2013-01-02 21:35:11 +00:00
rescue
errors.add(:path, "Invalid repository path")
false
end
def empty_repo?
!repository.exists? || repository.empty?
2013-01-02 21:35:11 +00:00
end
2013-02-25 19:21:38 +00:00
def ensure_satellite_exists
self.satellite.create unless self.satellite.exists?
end
2013-01-02 21:35:11 +00:00
def satellite
@satellite ||= Gitlab::Satellite::Satellite.new(self)
end
def repo
2013-01-03 19:09:18 +00:00
repository.raw
2013-01-02 21:35:11 +00:00
end
def url_to_repo
2013-02-11 17:16:59 +00:00
gitlab_shell.url_to_repo(path_with_namespace)
2013-01-02 21:35:11 +00:00
end
def namespace_dir
namespace.try(:path) || ''
end
def repo_exists?
@repo_exists ||= repository.exists?
2013-01-02 21:35:11 +00:00
rescue
@repo_exists = false
end
def open_branches
all_branches = repository.branches
if protected_branches.present?
all_branches.reject! do |branch|
protected_branches_names.include?(branch.name)
end
end
all_branches
end
def protected_branches_names
@protected_branches_names ||= protected_branches.map(&:name)
2013-01-02 21:35:11 +00:00
end
def root_ref?(branch)
2013-01-03 19:09:18 +00:00
repository.root_ref == branch
2013-01-02 21:35:11 +00:00
end
def ssh_url_to_repo
url_to_repo
end
def http_url_to_repo
http_url = [Gitlab.config.gitlab.url, "/", path_with_namespace, ".git"].join('')
end
def project_access_human(member)
project_user_relation = self.users_projects.find_by_user_id(member.id)
self.class.access_options.key(project_user_relation.project_access)
end
2013-01-02 21:35:11 +00:00
# Check if current branch name is marked as protected in the system
def protected_branch? branch_name
protected_branches_names.include?(branch_name)
2013-01-02 21:35:11 +00:00
end
def forked?
!(forked_project_link.nil? || forked_project_link.forked_from_project.nil?)
end
2013-05-24 21:07:19 +00:00
def personal?
!group
end
2013-05-24 21:07:19 +00:00
def rename_repo
old_path_with_namespace = File.join(namespace_dir, path_was)
new_path_with_namespace = File.join(namespace_dir, path)
if gitlab_shell.mv_repository(old_path_with_namespace, new_path_with_namespace)
# If repository moved successfully we need to remove old satellite
# and send update instructions to users.
# However we cannot allow rollback since we moved repository
# So we basically we mute exceptions in next actions
begin
gitlab_shell.rm_satellites(old_path_with_namespace)
send_move_instructions
rescue
2013-07-29 10:46:00 +00:00
# Returning false does not rollback after_* transaction but gives
2013-05-24 21:07:19 +00:00
# us information about failing some of tasks
false
end
else
# if we cannot move namespace directory we should rollback
# db changes in order to prevent out of sync between db and fs
raise Exception.new('repository cannot be renamed')
end
end
2011-10-08 21:36:38 +00:00
end