すべての関係を含むEloquentオブジェクトのクローンを作成しますか?


87

すべての関係を含め、Eloquentオブジェクトを簡単に複製する方法はありますか?

たとえば、次のテーブルがある場合:

users ( id, name, email )
roles ( id, name )
user_roles ( user_id, role_id )

usersテーブルに新しい行を作成し、を除いてすべての列が同じ idであることに加えて、user_rolesテーブルに新しい行を作成し、新しいユーザーに同じロールを割り当てる必要があります。

このようなもの:

$user = User::find(1);
$new_user = $user->clone();

ユーザーモデルの場所

class User extends Eloquent {
    public function roles() {
        return $this->hasMany('Role', 'user_roles');
    }
}

回答:


77

Laravel4.2でbelongsToMany関係についてテスト済み

モデルにいる場合:

    //copy attributes
    $new = $this->replicate();

    //save model before you recreate relations (so it has an id)
    $new->push();

    //reset relations on EXISTING MODEL (this way you can control which ones will be loaded
    $this->relations = [];

    //load relations on EXISTING MODEL
    $this->load('relation1','relation2');

    //re-sync everything
    foreach ($this->relations as $relationName => $values){
        $new->{$relationName}()->sync($values);
    }

3
Laravel 7で働いた
DaniyalJavani20年

以前のバージョンのLaravel6でも動作します(前のコメントに基づいて予想されます:))ありがとう!
mmmdearte

Laravel7.28.4で働いていました。モデルの外部で実行しようとすると、コードが異なるはずであることに気づきました。ありがとう
ローマングリネフ

56

eloquentが提供するレプリケート機能を試すこともできます。

http://laravel.com/api/4.2/Illuminate/Database/Eloquent/Model.html#method_replicate

$user = User::find(1);
$new_user = $user->replicate();
$new_user->push();

7
実際には、複製する関係もロードする必要があります。指定されたコードは、関係のない基本モデルのみを複製します。リレーションシップも複製するには、ユーザーにリレーションシップを取得するか$user = User::with('roles')->find(1);、モデルを取得した後でそれらをロードします。したがって、最初の2行は次のようになります$user = User::find(1); $user->load('roles');
Alexander Taubenkorb 2015

2
少なくとも4.1では、関係をロードしても関係が複製されるようには見えません。親を複製してから、複製された元の子をループし、新しい親を指すように一度に1つずつ更新する必要がありました。
レックスシュレーダー2015年

replicate()リレーションを設定し、リレーションにpush()再帰して保存します。
マットK

また、5.2では、子をループして、一度に1つずつ複製した後に保存する必要があります。foreach内:$new_user->roles()->save($oldRole->replicate)
d.grassi84 2016

28

あなたはこれを試すことができます(オブジェクトクローニング):

$user = User::find(1);
$new_user = clone $user;

以来cloneそこにすべての子オブジェクトが利用可能であり、この場合には、使用して子オブジェクトをコピーする必要がある場合は、子オブジェクトがコピーされませんので、深いコピーされませんclone手動で。例えば:

$user = User::with('role')->find(1);
$new_user = clone $user; // copy the $user
$new_user->role = clone $user->role; // copy the $user->role

あなたの場合rolesRoleオブジェクトのコレクションになるので、コレクションRole object内のそれぞれを使用して手動でコピーする必要がありますclone

また、rolesusingをロードしない場合、withそれらはロードされないか、で使用できなくなり、$user呼び出すと$user->roles、それらのオブジェクトはその呼び出し後の実行時にロードされることに注意する必要があります。の$user->rolesそしてこれまで、それらrolesロードされません。

更新:

この答えは、Larave-4Laravelがreplicate()メソッドを提供するためのものでした。

$user = User::find(1);
$newUser = $user->replicate();
// ...

2
注意してください、サブ/子オブジェクトではなく、浅いコピーのみ:-)
アルファ

1
@TheShiftExchange、あなたはそれが面白いと思うかもしれませ、私はずっと前に実験をしました。親指を立ててくれてありがとう:
アルファ

1
これはオブジェクトのIDもコピーしませんか?保存に役に立たない?
Tosh 2015年

@Tosh、はい、その通りです。そのため、別のIDを設定する必要があります。またはnull:-)
Alpha

1
phpの秘密を明らかにするためのplus1:P
Metabolic

23

Laravel5の場合。hasManyリレーションでテスト済み。

$model = User::find($id);

$model->load('invoices');

$newModel = $model->replicate();
$newModel->push();


foreach($model->getRelations() as $relation => $items){
    foreach($items as $item){
        unset($item->id);
        $newModel->{$relation}()->create($item->toArray());
    }
}

完璧に動作しますlaravel5.6どうもありがとう
Ali Abbas

7

これは、@ sabrina-gelbartからのソリューションの更新バージョンであり、彼女が投稿したbelongsToManyだけでなく、すべてのhasMany関係のクローンを作成します。

    //copy attributes from original model
    $newRecord = $original->replicate();
    // Reset any fields needed to connect to another parent, etc
    $newRecord->some_id = $otherParent->id;
    //save model before you recreate relations (so it has an id)
    $newRecord->push();
    //reset relations on EXISTING MODEL (this way you can control which ones will be loaded
    $original->relations = [];
    //load relations on EXISTING MODEL
    $original->load('somerelationship', 'anotherrelationship');
    //re-sync the child relationships
    $relations = $original->getRelations();
    foreach ($relations as $relation) {
        foreach ($relation as $relationRecord) {
            $newRelationship = $relationRecord->replicate();
            $newRelationship->some_parent_id = $newRecord->id;
            $newRelationship->push();
        }
    }

some_parent_idすべての関係で同じではない場合は注意が必要です。でも、これは便利です。
ダスティングラハム

6

これはlaravel5.8にあり、古いバージョンでは試していません

//# this will clone $eloquent and asign all $eloquent->$withoutProperties = null
$cloned = $eloquent->cloneWithout(Array $withoutProperties)

編集、ちょうど今日2019年4月7日laravel5.8.10がリリースされました

今すぐレプリケートを使用できます

$post = Post::find(1);
$newPost = $post->replicate();
$newPost->save();

2

以下のコードを使用して$ userという名前のコレクションがある場合、すべての関係を含め、古いコレクションと同じ新しいコレクションが作成されます。

$new_user = new \Illuminate\Database\Eloquent\Collection ( $user->all() );

このコードはlaravel5用です。


1
あなたはただすることができませんでした$new = $old->slice(0)か?
fubar 2017

2

必要なリレーションでオブジェクトをフェッチし、その後レプリケートすると、取得したすべてのリレーションもレプリケートされます。例えば:

$oldUser = User::with('roles')->find(1);
$newUser = $oldUser->replicate();

私はLaravel 5.5でテストしてみた
elyas.m

2

これは、オブジェクトにロードされたすべての関係を再帰的に複製する特性です。サブリナのbelongsToManyの例のように、これを他の関係タイプに簡単に拡張できます。

trait DuplicateRelations
{
    public static function duplicateRelations($from, $to)
    {
        foreach ($from->relations as $relationName => $object){
            if($object !== null) {
                if ($object instanceof Collection) {
                    foreach ($object as $relation) {
                        self::replication($relationName, $relation, $to);
                    }
                } else {
                    self::replication($relationName, $object, $to);
                }
            }
        }
    }

    private static function replication($name, $relation, $to)
    {
        $newRelation = $relation->replicate();
        $to->{$name}()->create($newRelation->toArray());
        if($relation->relations !== null) {
            self::duplicateRelations($relation, $to->{$name});
        }
    }
}

使用法:

//copy attributes
$new = $this->replicate();

//save model before you recreate relations (so it has an id)
$new->push();

//reset relations on EXISTING MODEL (this way you can control which ones will be loaded
$this->relations = [];

//load relations on EXISTING MODEL
$this->load('relation1','relation2.nested_relation');

// duplication all LOADED relations including nested.
self::duplicateRelations($this, $new);

0

他の解決策があなたをなだめない場合、これを行う別の方法があります:

<?php
/** @var \App\Models\Booking $booking */
$booking = Booking::query()->with('segments.stops','billingItems','invoiceItems.applyTo')->findOrFail($id);

$booking->id = null;
$booking->exists = false;
$booking->number = null;
$booking->confirmed_date_utc = null;
$booking->save();

$now = CarbonDate::now($booking->company->timezone);

foreach($booking->segments as $seg) {
    $seg->id = null;
    $seg->exists = false;
    $seg->booking_id = $booking->id;
    $seg->save();

    foreach($seg->stops as $stop) {
        $stop->id = null;
        $stop->exists = false;
        $stop->segment_id = $seg->id;
        $stop->save();
    }
}

foreach($booking->billingItems as $bi) {
    $bi->id = null;
    $bi->exists = false;
    $bi->booking_id = $booking->id;
    $bi->save();
}

$iiMap = [];

foreach($booking->invoiceItems as $ii) {
    $oldId = $ii->id;
    $ii->id = null;
    $ii->exists = false;
    $ii->booking_id = $booking->id;
    $ii->save();
    $iiMap[$oldId] = $ii->id;
}

foreach($booking->invoiceItems as $ii) {
    $newIds = [];
    foreach($ii->applyTo as $at) {
        $newIds[] = $iiMap[$at->id];
    }
    $ii->applyTo()->sync($newIds);
}

秘訣は、Laravelが新しいレコードを作成するようにidexistsプロパティをワイプすることです。

自己関係のクローンを作成するのは少し注意が必要ですが、例を示しました。古いIDから新しいIDへのマッピングを作成してから、再同期するだけです。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.