openSUSE/open-build-service

View on GitHub
src/api/app/models/event/request_statechange.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
module Event
  class RequestStatechange < Request
    self.message_bus_routing_key = 'request.state_change'
    self.description = 'Request state changed'
    payload_keys :oldstate, :duration
    receiver_roles :source_maintainer, :target_maintainer, :creator, :reviewer, :source_project_watcher, :target_project_watcher,
                   :source_package_watcher, :target_package_watcher, :request_watcher

    create_jobs :report_to_scm_job

    self.notification_explanation = 'Receive notifications for requests state changes for projects for which you are...'

    def subject
      "Request #{payload['number']} changed from #{payload['oldstate']} to #{payload['state']} (#{actions_summary})"
    end

    def parameters_for_notification
      super.merge({ notifiable_type: 'BsRequest',
                    bs_request_state: payload['state'],
                    bs_request_oldstate: payload['oldstate'] })
    end

    private

    def metric_tags
      payload.slice('oldstate', 'state', 'namespace')
    end

    def metric_fields
      payload.slice('number', 'duration')
    end
  end
end

# == Schema Information
#
# Table name: events
#
#  id          :bigint           not null, primary key
#  eventtype   :string(255)      not null, indexed
#  mails_sent  :boolean          default(FALSE), indexed
#  payload     :text(16777215)
#  undone_jobs :integer          default(0)
#  created_at  :datetime         indexed
#  updated_at  :datetime
#
# Indexes
#
#  index_events_on_created_at  (created_at)
#  index_events_on_eventtype   (eventtype)
#  index_events_on_mails_sent  (mails_sent)
#