Move directory with project. Fixed all related path methods to use namespace
This commit is contained in:
parent
e29ccece33
commit
71214bee75
9 changed files with 55 additions and 10 deletions
|
@ -48,14 +48,18 @@ class Admin::GroupsController < AdminController
|
||||||
|
|
||||||
def project_update
|
def project_update
|
||||||
project_ids = params[:project_ids]
|
project_ids = params[:project_ids]
|
||||||
Project.where(id: project_ids).update_all(group_id: @group.id)
|
|
||||||
|
Project.where(id: project_ids).each do |project|
|
||||||
|
project.namespace_id = @group.id
|
||||||
|
project.save
|
||||||
|
end
|
||||||
|
|
||||||
redirect_to :back, notice: 'Group was successfully updated.'
|
redirect_to :back, notice: 'Group was successfully updated.'
|
||||||
end
|
end
|
||||||
|
|
||||||
def remove_project
|
def remove_project
|
||||||
@project = Project.find(params[:project_id])
|
@project = Project.find(params[:project_id])
|
||||||
@project.group_id = nil
|
@project.namespace_id = nil
|
||||||
@project.save
|
@project.save
|
||||||
|
|
||||||
redirect_to :back, notice: 'Group was successfully updated.'
|
redirect_to :back, notice: 'Group was successfully updated.'
|
||||||
|
|
|
@ -4,7 +4,7 @@ class DashboardController < ApplicationController
|
||||||
before_filter :event_filter, only: :index
|
before_filter :event_filter, only: :index
|
||||||
|
|
||||||
def index
|
def index
|
||||||
@groups = Group.where(id: current_user.projects.pluck(:group_id))
|
@groups = Group.where(id: current_user.projects.pluck(:namespace_id))
|
||||||
@projects = current_user.projects_sorted_by_activity
|
@projects = current_user.projects_sorted_by_activity
|
||||||
@projects = @projects.page(params[:page]).per(30)
|
@projects = @projects.page(params[:page]).per(30)
|
||||||
|
|
||||||
|
|
|
@ -54,7 +54,7 @@ class GroupsController < ApplicationController
|
||||||
end
|
end
|
||||||
|
|
||||||
def projects
|
def projects
|
||||||
@projects ||= current_user.projects_sorted_by_activity.where(group_id: @group.id)
|
@projects ||= current_user.projects_sorted_by_activity.where(namespace_id: @group.id)
|
||||||
end
|
end
|
||||||
|
|
||||||
def project_ids
|
def project_ids
|
||||||
|
|
|
@ -1,6 +1,11 @@
|
||||||
class ProjectObserver < ActiveRecord::Observer
|
class ProjectObserver < ActiveRecord::Observer
|
||||||
def after_save(project)
|
def after_save(project)
|
||||||
project.update_repository
|
project.update_repository
|
||||||
|
|
||||||
|
# Move repository if namespace changed
|
||||||
|
if project.namespace_id_changed?
|
||||||
|
move_project(project)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def after_destroy(project)
|
def after_destroy(project)
|
||||||
|
@ -18,4 +23,19 @@ class ProjectObserver < ActiveRecord::Observer
|
||||||
def log_info message
|
def log_info message
|
||||||
Gitlab::AppLogger.info message
|
Gitlab::AppLogger.info message
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def move_project(project)
|
||||||
|
old_dir = Namespace.find_by_id(project.namespace_id_was).try(:code) || ''
|
||||||
|
new_dir = Namespace.find_by_id(project.namespace_id).try(:code) || ''
|
||||||
|
|
||||||
|
# Create new dir if missing
|
||||||
|
new_dir_path = File.join(Gitlab.config.git_base_path, new_dir)
|
||||||
|
Dir.mkdir(new_dir_path) unless File.exists?(new_dir_path)
|
||||||
|
|
||||||
|
old_path = File.join(Gitlab.config.git_base_path, old_dir, "#{project.path}.git")
|
||||||
|
new_path = File.join(new_dir_path, "#{project.path}.git")
|
||||||
|
|
||||||
|
binding.pry
|
||||||
|
`mv #{old_path} #{new_path}`
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -79,11 +79,15 @@ module Repository
|
||||||
end
|
end
|
||||||
|
|
||||||
def url_to_repo
|
def url_to_repo
|
||||||
git_host.url_to_repo(path)
|
git_host.url_to_repo(path_with_namespace)
|
||||||
end
|
end
|
||||||
|
|
||||||
def path_to_repo
|
def path_to_repo
|
||||||
File.join(Gitlab.config.git_base_path, "#{path}.git")
|
File.join(Gitlab.config.git_base_path, namespace_dir, "#{path}.git")
|
||||||
|
end
|
||||||
|
|
||||||
|
def namespace_dir
|
||||||
|
namespace.try(:code) || ''
|
||||||
end
|
end
|
||||||
|
|
||||||
def update_repository
|
def update_repository
|
||||||
|
|
|
@ -29,10 +29,14 @@ FactoryGirl.define do
|
||||||
owner
|
owner
|
||||||
end
|
end
|
||||||
|
|
||||||
factory :group do
|
factory :namespace do
|
||||||
sequence(:name) { |n| "group#{n}" }
|
sequence(:name) { |n| "group#{n}" }
|
||||||
code { name.downcase.gsub(/\s/, '_') }
|
code { name.downcase.gsub(/\s/, '_') }
|
||||||
owner
|
owner
|
||||||
|
|
||||||
|
factory :group do
|
||||||
|
type 'Group'
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
factory :users_project do
|
factory :users_project do
|
||||||
|
|
12
spec/models/namespace_spec.rb
Normal file
12
spec/models/namespace_spec.rb
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
require 'spec_helper'
|
||||||
|
|
||||||
|
describe Namespace do
|
||||||
|
let!(:namespace) { create(:namespace) }
|
||||||
|
|
||||||
|
it { should have_many :projects }
|
||||||
|
it { should validate_presence_of :name }
|
||||||
|
it { should validate_uniqueness_of(:name) }
|
||||||
|
it { should validate_presence_of :code }
|
||||||
|
it { should validate_uniqueness_of(:code) }
|
||||||
|
it { should validate_presence_of :owner }
|
||||||
|
end
|
|
@ -24,6 +24,7 @@ require 'spec_helper'
|
||||||
describe Project do
|
describe Project do
|
||||||
describe "Associations" do
|
describe "Associations" do
|
||||||
it { should belong_to(:group) }
|
it { should belong_to(:group) }
|
||||||
|
it { should belong_to(:namespace) }
|
||||||
it { should belong_to(:owner).class_name('User') }
|
it { should belong_to(:owner).class_name('User') }
|
||||||
it { should have_many(:users) }
|
it { should have_many(:users) }
|
||||||
it { should have_many(:events).dependent(:destroy) }
|
it { should have_many(:events).dependent(:destroy) }
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue