debian-mirror-gitlab/app/finders/metrics/dashboards/annotations_finder.rb

44 lines
1 KiB
Ruby
Raw Normal View History

2020-04-22 19:07:51 +05:30
# frozen_string_literal: true
module Metrics
module Dashboards
class AnnotationsFinder
def initialize(dashboard:, params:)
2021-04-29 21:17:54 +05:30
@dashboard = dashboard
@params = params
2020-04-22 19:07:51 +05:30
end
def execute
if dashboard.environment
apply_filters_to(annotations_for_environment)
else
Metrics::Dashboard::Annotation.none
end
end
private
attr_reader :dashboard, :params
def apply_filters_to(annotations)
annotations = annotations.after(params[:from]) if params[:from].present?
annotations = annotations.before(params[:to]) if params[:to].present? && valid_timespan_boundaries?
by_dashboard(annotations)
end
def annotations_for_environment
dashboard.environment.metrics_dashboard_annotations
end
def by_dashboard(annotations)
annotations.for_dashboard(dashboard.path)
end
def valid_timespan_boundaries?
params[:from].blank? || params[:to] >= params[:from]
end
end
end
end