Commit f6e6faee authored by Nick Thomas's avatar Nick Thomas

Merge branch 'jr-archive-hook' into 'master'

Trigger `project_update` system hook when archiving projects

See merge request gitlab-org/gitlab-ce!20995
parents bc1f851f 79d90cb6
...@@ -148,7 +148,7 @@ class ProjectsController < Projects::ApplicationController ...@@ -148,7 +148,7 @@ class ProjectsController < Projects::ApplicationController
def archive def archive
return access_denied! unless can?(current_user, :archive_project, @project) return access_denied! unless can?(current_user, :archive_project, @project)
@project.archive! ::Projects::UpdateService.new(@project, current_user, archived: true).execute
respond_to do |format| respond_to do |format|
format.html { redirect_to project_path(@project) } format.html { redirect_to project_path(@project) }
...@@ -158,7 +158,7 @@ class ProjectsController < Projects::ApplicationController ...@@ -158,7 +158,7 @@ class ProjectsController < Projects::ApplicationController
def unarchive def unarchive
return access_denied! unless can?(current_user, :archive_project, @project) return access_denied! unless can?(current_user, :archive_project, @project)
@project.unarchive! ::Projects::UpdateService.new(@project, current_user, archived: false).execute
respond_to do |format| respond_to do |format|
format.html { redirect_to project_path(@project) } format.html { redirect_to project_path(@project) }
......
...@@ -1320,14 +1320,6 @@ class Project < ActiveRecord::Base ...@@ -1320,14 +1320,6 @@ class Project < ActiveRecord::Base
:visibility_level :visibility_level
end end
def archive!
update_attribute(:archived, true)
end
def unarchive!
update_attribute(:archived, false)
end
def change_head(branch) def change_head(branch)
if repository.branch_exists?(branch) if repository.branch_exists?(branch)
repository.before_change_head repository.before_change_head
......
---
title: Trigger system hooks when project is archived/unarchived
merge_request: 20995
author:
type: added
...@@ -321,7 +321,7 @@ module API ...@@ -321,7 +321,7 @@ module API
post ':id/archive' do post ':id/archive' do
authorize!(:archive_project, user_project) authorize!(:archive_project, user_project)
user_project.archive! ::Projects::UpdateService.new(user_project, current_user, archived: true).execute
present user_project, with: Entities::Project present user_project, with: Entities::Project
end end
...@@ -332,7 +332,7 @@ module API ...@@ -332,7 +332,7 @@ module API
post ':id/unarchive' do post ':id/unarchive' do
authorize!(:archive_project, user_project) authorize!(:archive_project, user_project)
user_project.unarchive! ::Projects::UpdateService.new(@project, current_user, archived: false).execute
present user_project, with: Entities::Project present user_project, with: Entities::Project
end end
......
...@@ -53,14 +53,14 @@ describe 'Explore Groups page', :js do ...@@ -53,14 +53,14 @@ describe 'Explore Groups page', :js do
expect(find('.js-groups-list-holder .content-list li:first-child .stats .number-projects')).to have_text("1") expect(find('.js-groups-list-holder .content-list li:first-child .stats .number-projects')).to have_text("1")
# Archive project # Archive project
empty_project.archive! ::Projects::UpdateService.new(empty_project, user, archived: true).execute
visit explore_groups_path visit explore_groups_path
# Check project count # Check project count
expect(find('.js-groups-list-holder .content-list li:first-child .stats .number-projects')).to have_text("0") expect(find('.js-groups-list-holder .content-list li:first-child .stats .number-projects')).to have_text("0")
# Unarchive project # Unarchive project
empty_project.unarchive! ::Projects::UpdateService.new(empty_project, user, archived: false).execute
visit explore_groups_path visit explore_groups_path
# Check project count # Check project count
......
...@@ -52,6 +52,7 @@ describe 'Group issues page' do ...@@ -52,6 +52,7 @@ describe 'Group issues page' do
context 'issues list', :nested_groups do context 'issues list', :nested_groups do
let(:subgroup) { create(:group, parent: group) } let(:subgroup) { create(:group, parent: group) }
let(:subgroup_project) { create(:project, :public, group: subgroup)} let(:subgroup_project) { create(:project, :public, group: subgroup)}
let(:user_in_group) { create(:group_member, :maintainer, user: create(:user), group: group ).user }
let!(:issue) { create(:issue, project: project, title: 'root group issue') } let!(:issue) { create(:issue, project: project, title: 'root group issue') }
let!(:subgroup_issue) { create(:issue, project: subgroup_project, title: 'subgroup issue') } let!(:subgroup_issue) { create(:issue, project: subgroup_project, title: 'subgroup issue') }
...@@ -67,7 +68,7 @@ describe 'Group issues page' do ...@@ -67,7 +68,7 @@ describe 'Group issues page' do
context 'when project is archived' do context 'when project is archived' do
before do before do
project.archive! ::Projects::UpdateService.new(project, user_in_group, archived: true).execute
end end
it 'does not render issue' do it 'does not render issue' do
......
...@@ -55,7 +55,7 @@ describe LabelsFinder do ...@@ -55,7 +55,7 @@ describe LabelsFinder do
context 'filtering by group_id' do context 'filtering by group_id' do
it 'returns labels available for any non-archived project within the group' do it 'returns labels available for any non-archived project within the group' do
group_1.add_developer(user) group_1.add_developer(user)
project_1.archive! ::Projects::UpdateService.new(project_1, user, archived: true).execute
finder = described_class.new(user, group_id: group_1.id) finder = described_class.new(user, group_id: group_1.id)
expect(finder.execute).to eq [group_label_2, group_label_1, project_label_5] expect(finder.execute).to eq [group_label_2, group_label_1, project_label_5]
......
...@@ -36,7 +36,7 @@ describe MoveToProjectFinder do ...@@ -36,7 +36,7 @@ describe MoveToProjectFinder do
it 'does not return archived projects' do it 'does not return archived projects' do
reporter_project.add_reporter(user) reporter_project.add_reporter(user)
reporter_project.archive! ::Projects::UpdateService.new(reporter_project, user, archived: true).execute
other_reporter_project = create(:project) other_reporter_project = create(:project)
other_reporter_project.add_reporter(user) other_reporter_project.add_reporter(user)
......
...@@ -429,7 +429,7 @@ describe API::Internal do ...@@ -429,7 +429,7 @@ describe API::Internal do
context "archived project" do context "archived project" do
before do before do
project.add_developer(user) project.add_developer(user)
project.archive! ::Projects::UpdateService.new(project, user, archived: true).execute
end end
context "git pull" do context "git pull" do
......
...@@ -1677,7 +1677,7 @@ describe API::Projects do ...@@ -1677,7 +1677,7 @@ describe API::Projects do
context 'on an archived project' do context 'on an archived project' do
before do before do
project.archive! ::Projects::UpdateService.new(project, user, archived: true).execute
end end
it 'remains archived' do it 'remains archived' do
...@@ -1713,7 +1713,7 @@ describe API::Projects do ...@@ -1713,7 +1713,7 @@ describe API::Projects do
context 'on an archived project' do context 'on an archived project' do
before do before do
project.archive! ::Projects::UpdateService.new(project, user, archived: true).execute
end end
it 'unarchives the project' do it 'unarchives the project' do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment