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

sha_attribute.rb « database « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bad6d3e2a9bf7da45a424af7395ae3e234afa3f1 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

module Gitlab
  module Database
    # PostgreSQL defines its own class with slightly different
    # behaviour from the default Binary type.
    BINARY_TYPE = ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Bytea

    # Class for casting binary data to hexadecimal SHA1 hashes (and vice-versa).
    #
    # Using ShaAttribute allows you to store SHA1 values as binary while still
    # using them as if they were stored as string values. This gives you the
    # ease of use of string values, but without the storage overhead.
    class ShaAttribute < BINARY_TYPE
      PACK_FORMAT = 'H*'

      # Casts binary data to a SHA1 in hexadecimal.
      def deserialize(value)
        value = super(value)
        value ? value.unpack1(PACK_FORMAT) : nil
      end

      # Casts a SHA1 in hexadecimal to the proper binary format.
      def serialize(value)
        arg = value ? [value].pack(PACK_FORMAT) : nil

        BINARY_TYPE.new.serialize(arg)
      end

      # Casts a SHA1 in hexadecimal to the proper binary format.
      def self.serialize(value)
        arg = value ? [value].pack(PACK_FORMAT) : nil

        BINARY_TYPE.new.serialize(arg)
      end
    end
  end
end