Sha256: e97a86fe847a73d747e6f2ba2863dc02d9c07b0c2a4af6e62def2976779c66fe

Contents?: true

Size: 1.18 KB

Versions: 1

Compression:

Stored size: 1.18 KB

Contents

class User < ActiveRecord::Base
  include Protobuf::ActiveRecord::Model

  attr_accessor :password

  has_many :photos

  accepts_nested_attributes_for :photos

  scope :by_guid, lambda { |*guids| where(guid: guids) }
  scope :by_email, lambda { |*emails| where(email: emails) }

  protobuf_fields except: :photos

  attribute_from_proto :first_name, :extract_first_name
  attribute_from_proto :last_name, :extract_last_name
  attribute_from_proto :password, lambda { |proto| proto.password! }

  field_from_record :email_domain, lambda { |record| record.email.split("@").last }
  field_from_record :password, :password_transformer

  def self.extract_first_name(proto)
    if proto.field?(:name)
      names = proto.name.split(" ")
      first_name = names.first
    end

    first_name
  end

  def self.extract_last_name(proto)
    if proto.field?(:name)
      names = proto.name.split(" ")
      names.shift # Drop the first name
      last_name = names.join(" ")
    end

    last_name
  end

  def self.password_transformer(user)
    # Simple way to test field transformers that call methods
    user.password
  end

  def token
    "key"
  end

  def name
    "#{first_name} #{last_name}"
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
protobuf-activerecord-7.0.0 spec/support/models/user.rb