# frozen_string_literal: true

module Integrations
  class Assembla < Integration
    validates :token, presence: true, if: :activated?

    field :token,
      type: :password,
      description: -> { s_('The authentication token.') },
      non_empty_password_title: -> { s_('ProjectService|Enter new token') },
      non_empty_password_help: -> { s_('ProjectService|Leave blank to use your current token.') },
      placeholder: '',
      required: true

    field :subdomain,
      description: -> { s_('The subdomain setting.') },
      exposes_secrets: true,
      placeholder: ''

    def self.title
      'Assembla'
    end

    def self.description
      _('Manage projects.')
    end

    def self.to_param
      'assembla'
    end

    def self.supported_events
      %w[push]
    end

    def execute(data)
      return unless supported_events.include?(data[:object_kind])

      url = "https://atlas.assembla.com/spaces/#{subdomain}/github_tool?secret_key=#{token}"
      body = { payload: data }

      Gitlab::HTTP.post(url, body: Gitlab::Json.dump(body), headers: { 'Content-Type' => 'application/json' })
    end
  end
end
