debian-mirror-gitlab/lib/gitlab/database/sha_attribute.rb

39 lines
1.2 KiB
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2017-09-10 17:25:29 +05:30
module Gitlab
module Database
2019-10-12 21:52:04 +05:30
# PostgreSQL defines its own class with slightly different
# behaviour from the default Binary type.
BINARY_TYPE = ActiveRecord::ConnectionAdapters::PostgreSQL::OID::Bytea
2017-09-10 17:25:29 +05:30
# 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
2019-12-04 20:38:33 +05:30
PACK_FORMAT = 'H*'
2017-09-10 17:25:29 +05:30
2018-05-09 12:01:36 +05:30
# Casts binary data to a SHA1 in hexadecimal.
2019-02-15 15:39:39 +05:30
def deserialize(value)
value = super(value)
2019-07-07 11:18:12 +05:30
value ? value.unpack1(PACK_FORMAT) : nil
2017-09-10 17:25:29 +05:30
end
# Casts a SHA1 in hexadecimal to the proper binary format.
2018-05-09 12:01:36 +05:30
def serialize(value)
2017-09-10 17:25:29 +05:30
arg = value ? [value].pack(PACK_FORMAT) : nil
2020-03-09 13:42:32 +05:30
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)
2017-09-10 17:25:29 +05:30
end
end
end
end