summaryrefslogtreecommitdiff
path: root/lib/error_tracking/sentry_client/pagination_parser.rb
blob: 362a5d098f7a9c83306def409baee81e219b8bd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# frozen_string_literal: true

module ErrorTracking
  class SentryClient
    module PaginationParser
      PATTERN = /rel=\"(?<direction>\w+)\";\sresults=\"(?<results>\w+)\";\scursor=\"(?<cursor>.+)\"/.freeze

      def self.parse(headers)
        links = headers['link'].to_s.split(',')

        links.map { |link| parse_link(link) }.compact.to_h
      end

      def self.parse_link(link)
        match = link.match(PATTERN)

        return unless match
        return if match['results'] != "true"

        [match['direction'], { 'cursor' => match['cursor'] }]
      end
      private_class_method :parse_link
    end
  end
end