2017 © Pedro Peláez
 

library backup-importer

image

taylornetwork/backup-importer

  • Wednesday, March 28, 2018
  • by taylornetwork
  • Repository
  • 1 Watchers
  • 0 Stars
  • 11 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Backup Importer

This package will allow you to import data to your database from a backup database that is not identical., (*1)

This is useful if you re-write an application and the database structure changes., (*2)

Install

Using Composer, (*3)

$ composer require taylornetwork/backup-importer

Publish Config

$ php artisan vendor:publish

Add Backup Database Config

By default this will use your mysql database connection with the DB_BACKUP_DATABASE value from your .env file or backup as the database name, (*4)

Add connection details to config/backup-importer.php, (*5)

Usage

Run your importers

$ php artisan importer:run

Create an Importer

$ php artisan importer:new CustomerImporter

Would generate an importer App\Backup\Importers\CustomerImporter.php by default., (*6)

Simple Importer

use TaylorNetwork\BackupImporter\BaseImporter;

class CustomerImporter extends BaseImporter
{
    public function import(): int
    {
        return $this->simpleImport();
    }
}

By default the importer assumes the following - There is a model to import to - The model being imported is App\Customer (see Advanced Config to change) - The backup table name is customers - The backup table fields are all the same as the model's fields, (*7)

Advanced Importers

You can override the above assumptions on an importer by importer basis, (*8)

Override Model

Add a protected $model variable in your importer, (*9)

protected $model = App\Models\Customer::class;

Override the Backup Table Name

Add a protected $backupTableName variable in your importer, (*10)

protected $backupTableName = 'xyz_customers';

Ignore Model (For a Pivot Table)

If you don't have a model for this importer set a protected $ignoreModel to true, (*11)

protected $ignoreModel = true;

Override Columns From Backup Table

You can override the columns that are taken from the backup table, or rename them., (*12)

Add a public getColumnMap() function that returns the array of columns to get., (*13)

public function getColumnMap(): array
{
    return [
        'firstname as first_name,
        'lastname as last_name',
        'address',
    ];
}

Example

use TaylorNetwork\BackupImporter\BaseImporter;

class CustomerImporter extends BaseImporter
{
    /**
     * Set the model to import to
     */
    protected $model = App\Models\Customer::class;

    /**
     * Set the backup table name
     */
    protected $backupTableName = 'xyz_customers';

    /**
     * Set the columns to get from the backup table
     */
    public function getColumnMap(): array
    {
        return [
            'firstname as first_name',
            'lastname as last_name',
            'address',
        ];
    }


    public function import(): int
    {
       return $this->simpleImport();    
    }
}

Customizing the import() function

The import() function by default will return $this->simpleImport() which is fine for simple tables with no relations, however you will likely want to customize the import logic., (*14)

Notes

  • Access the model by $this->getModel()
  • Access the database query data by $this->items()
  • Access the fluent builder for more complex queries by $this->builder()
  • Access the fluent builder AFTER the select call by $this->select()
  • Whenever you import a row you should call $this->increment() to add to the total of rows imported
  • If you use $this->increment() your return statement should be $this->getImportTotal()

Example

Let's say you have an application that has customers and services. Each customer can have many services with properties. You have the following models which you store in app/, (*15)

  • App\Customer
  • App\Service
  • App\CustomerService

For the customer and service models, you used the simple import method., (*16)

// App\Backup\Importers\CustomerServiceImporter.php

use TaylorNetwork\BackupImporter\BaseImporter;
use App\Customer;

class CustomerServiceImporter extends BaseImporter
{
    public function getColumnMap(): array
    {
        return [
            'customer_id',
            'service_id',
            'qty',
            'description',
            'last_service_date',
        ];
    }

    public function import(): int
    {
        $rows = $this->select()->where('last_service_date', '!=', null)->get();

        foreach($rows as $row) {
            Customer::find($row->customer_id)->services()->create([
                'service_id' => $row->service_id,
                'qty' => $row->qty,
                'desc' => $row->description,
                'last_date' => $row->last_service_date,
            ]);

            $this->increment();
        }

        return $this->getImportTotal();
    }
}

The Versions

28/03 2018

dev-master

9999999-dev

  Sources   Download

MIT

The Requires

 

by Sam Taylor

27/03 2018

v0.1

0.1.0.0

  Sources   Download

MIT

The Requires

 

by Sam Taylor