Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/organizations/update_service.rb')
-rw-r--r--app/services/organizations/update_service.rb46
1 files changed, 46 insertions, 0 deletions
diff --git a/app/services/organizations/update_service.rb b/app/services/organizations/update_service.rb
new file mode 100644
index 00000000000..e262bd15bc0
--- /dev/null
+++ b/app/services/organizations/update_service.rb
@@ -0,0 +1,46 @@
+# frozen_string_literal: true
+
+module Organizations
+ class UpdateService < ::Organizations::BaseService
+ attr_reader :organization
+
+ def initialize(organization, current_user:, params: {})
+ @organization = organization
+ @current_user = current_user
+ @params = params.dup
+ return unless @params.key?(:description)
+
+ organization_detail_attributes = { description: @params.delete(:description) }
+ # TODO: Remove explicit passing of id once https://github.com/rails/rails/issues/48714 is resolved.
+ organization_detail_attributes[:id] = organization.id
+ @params[:organization_detail_attributes] ||= {}
+ @params[:organization_detail_attributes].merge!(organization_detail_attributes)
+ end
+
+ def execute
+ return error_no_permissions unless allowed?
+
+ if organization.update(params)
+ ServiceResponse.success(payload: organization)
+ else
+ error_updating
+ end
+ end
+
+ private
+
+ def allowed?
+ current_user&.can?(:admin_organization, organization)
+ end
+
+ def error_no_permissions
+ ServiceResponse.error(message: [_('You have insufficient permissions to update the organization')])
+ end
+
+ def error_updating
+ message = organization.errors.full_messages || _('Failed to update organization')
+
+ ServiceResponse.error(payload: organization, message: Array(message))
+ end
+ end
+end