Rails将用户对象中的属性复制到新对象

时间:2017-03-22 20:54:14

标签: ruby-on-rails ruby activerecord

在用户模型中,我有一个存档!销毁用户时调用的方法。此操作在单独的表中创建新的ArchivedUser。

ArchivedUser已成功创建,但我手动设置每个值的方式非常脏;如果将新列添加到User表中,则还必须在此处添加。

我尝试了selectslice属性,但得到undefined local variable or method用户'`

ArchivedUser.create(user.attributes.select{ |key, _| ArchivedUser.attribute_names.include? key })

ArchivedUser.create(user.attributes.slice(ArchivedUser.attribute_names))

在使用self创建ArchivedUser时,如何遍历User表中的每个属性?

def archive!
    if ArchivedUser.create(
        user_id: self.id,
        company_id: self.company_id,
        first_name: self.first_name,
        last_name: self.last_name,
        email: self.email,
        encrypted_password: self.encrypted_password,
        password_salt: self.password_salt,
        session_token: self.session_token,
        perishable_token: self.perishable_token,
        role: self.role,
        score: self.score,
        created_at: self.created_at,
        updated_at: self.updated_at,
        api_key: self.api_key,
        device_id: self.device_id,
        time_zone: self.time_zone,
        device_type: self.device_type,
        verified_at: self.verified_at,
        verification_key: self.verification_key,
        uninstalled: self.uninstalled,
        device_details: self.device_details,
        is_archived: self.is_archived,
        registered_at: self.registered_at,
        logged_in_at: self.logged_in_at,
        state: self.state,
        creation_state: self.creation_state,
        language_id: self.language_id,
        offer_count: self.offer_count,
        expired_device_id: self.expired_device_id,
        unique_id: self.unique_id,
        best_language_code: self.best_language_code,
        offer_id: self.offer_id,
        vetted_state: self.vetted_state,
        photo_path: self.photo_path
      )

      self.is_archived = true

      self.email = "#{self.email}.archived#{Time.now.to_i}"
      self.encrypted_password = nil
      self.password_salt      = nil
      self.session_token      = nil
      self.perishable_token   = nil
      self.device_id          = nil
      self.verification_key   = nil
      self.save!

      self.update_column(:api_key, nil)
      UserGroup.delete_all(:user_id => self.id)
    else
      # handle the ArchivedUser not being created properly
    end
  end

感谢您查看:)

更新

我们能够找出ArchivedUser.create(self.attributes.slice!(ArchivedUser.attribute_names)没有工作的原因。第一个原因是create方法需要" bang"写对象。第二个原因是ArchivedUser有一个user_id字段,用户在创建之后才会收到该字段。我们必须手动设置user_id:merge(user_id: self.id)

最终输出看起来像 ArchivedUser.create!(self.attributes.slice!(ArchivedUser.attribute_names).merge(user_id: self.id))

2 个答案:

答案 0 :(得分:1)

您在第一次实施时走在正确的轨道上。你只需要使用self而不是用户。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<input type="text">
<input type="text">
<footer>footer</footer>

答案 1 :(得分:0)

如果您只想拥有要归档的用户的副本,我认为这样做是一种优雅的方法

archived_user = user_to_be_archived.dup

或者您可以看一下变形虫的宝石,如果需要的话,它将完成所有繁重的工作,包括关联。 https://github.com/amoeba-rb/amoeba