1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Services/ImportService.php

416 lines
12 KiB
PHP
Raw Normal View History

2015-11-24 20:45:38 +01:00
<?php namespace app\Services;
2015-11-18 15:40:50 +01:00
2015-11-24 20:45:38 +01:00
use stdClass;
2015-11-18 15:40:50 +01:00
use Excel;
use Cache;
use Exception;
2015-11-18 17:08:37 +01:00
use Auth;
2015-11-18 18:16:23 +01:00
use parsecsv;
use Session;
use Validator;
2015-11-18 15:40:50 +01:00
use League\Fractal\Manager;
use App\Ninja\Repositories\ContactRepository;
2015-11-18 15:40:50 +01:00
use App\Ninja\Repositories\ClientRepository;
use App\Ninja\Repositories\InvoiceRepository;
use App\Ninja\Repositories\PaymentRepository;
use App\Ninja\Serializers\ArraySerializer;
2015-11-18 17:08:37 +01:00
use App\Models\Client;
2015-11-24 20:45:38 +01:00
use App\Models\Invoice;
2015-11-18 15:40:50 +01:00
class ImportService
{
protected $transformer;
protected $invoiceRepo;
protected $clientRepo;
protected $contactRepo;
2015-11-18 15:40:50 +01:00
public static $entityTypes = [
ENTITY_CLIENT,
ENTITY_CONTACT,
2015-11-18 15:40:50 +01:00
ENTITY_INVOICE,
ENTITY_TASK,
];
public static $sources = [
IMPORT_CSV,
IMPORT_FRESHBOOKS,
IMPORT_HARVEST,
2015-12-08 11:10:20 +01:00
IMPORT_HIVEAGE,
2015-12-10 11:57:51 +01:00
IMPORT_INVOICEABLE,
2015-12-14 21:07:48 +01:00
IMPORT_NUTCACHE,
2015-12-10 14:35:40 +01:00
IMPORT_RONIN,
2015-12-13 21:12:54 +01:00
IMPORT_WAVE,
IMPORT_ZOHO,
2015-11-18 15:40:50 +01:00
];
public function __construct(Manager $manager, ClientRepository $clientRepo, InvoiceRepository $invoiceRepo, PaymentRepository $paymentRepo, ContactRepository $contactRepo)
2015-11-18 15:40:50 +01:00
{
$this->fractal = $manager;
$this->fractal->setSerializer(new ArraySerializer());
$this->clientRepo = $clientRepo;
$this->invoiceRepo = $invoiceRepo;
$this->paymentRepo = $paymentRepo;
$this->contactRepo = $contactRepo;
2015-11-18 15:40:50 +01:00
}
public function import($source, $files)
{
2015-12-15 21:25:12 +01:00
$skipped = [];
2015-11-18 15:40:50 +01:00
$imported_files = null;
2015-11-24 20:45:38 +01:00
2015-11-18 15:40:50 +01:00
foreach ($files as $entityType => $file) {
2015-12-15 21:25:12 +01:00
$result = $this->execute($source, $entityType, $file);
$skipped = array_merge($skipped, $result);
2015-11-18 15:40:50 +01:00
}
2015-12-15 21:25:12 +01:00
return $skipped;
2015-11-18 15:40:50 +01:00
}
private function execute($source, $entityType, $file)
{
2015-11-25 10:35:24 +01:00
$skipped = [];
2015-11-24 20:45:38 +01:00
2015-12-15 21:25:12 +01:00
Excel::load($file, function ($reader) use ($source, $entityType, &$skipped) {
2015-11-24 20:45:38 +01:00
$this->checkData($entityType, count($reader->all()));
$maps = $this->createMaps();
2015-11-18 15:40:50 +01:00
2015-12-15 21:25:12 +01:00
$reader->each(function ($row) use ($source, $entityType, $maps, &$skipped) {
2015-11-25 10:35:24 +01:00
$result = $this->saveData($source, $entityType, $row, $maps);
if ( ! $result) {
$skipped[] = $row;
}
2015-11-24 20:45:38 +01:00
});
});
2015-11-18 17:08:37 +01:00
2015-11-25 10:35:24 +01:00
return $skipped;
2015-11-24 20:45:38 +01:00
}
2015-11-18 18:16:23 +01:00
2015-11-24 20:45:38 +01:00
private function saveData($source, $entityType, $row, $maps)
{
2015-12-08 11:10:20 +01:00
$transformer = $this->getTransformer($source, $entityType, $maps);
2015-11-24 20:45:38 +01:00
$resource = $transformer->transform($row, $maps);
if (!$resource) {
return;
}
$data = $this->fractal->createData($resource)->toArray();
2015-11-25 10:35:24 +01:00
// if the invoice number is blank we'll assign it
2015-11-24 21:54:04 +01:00
if ($entityType == ENTITY_INVOICE && !$data['invoice_number']) {
2015-11-24 21:41:08 +01:00
$account = Auth::user()->account;
$invoice = Invoice::createNew();
$data['invoice_number'] = $account->getNextInvoiceNumber($invoice);
}
if ($this->validate($source, $data, $entityType) !== true) {
2015-11-24 20:45:38 +01:00
return;
}
$entity = $this->{"{$entityType}Repo"}->save($data);
2015-11-25 10:35:24 +01:00
2015-11-24 20:45:38 +01:00
// if the invoice is paid we'll also create a payment record
2015-12-10 14:35:40 +01:00
if ($entityType === ENTITY_INVOICE && isset($data['paid']) && $data['paid'] > 0) {
$this->createPayment($source, $row, $maps, $data['client_id'], $entity->id);
2015-11-24 20:45:38 +01:00
}
return $entity;
2015-11-24 20:45:38 +01:00
}
private function checkData($entityType, $count)
{
if ($entityType === ENTITY_CLIENT) {
$this->checkClientCount($count);
}
}
2015-11-25 10:35:24 +01:00
private function checkClientCount($count)
{
$totalClients = $count + Client::scope()->withTrashed()->count();
if ($totalClients > Auth::user()->getMaxNumClients()) {
throw new Exception(trans('texts.limit_clients', ['count' => Auth::user()->getMaxNumClients()]));
}
}
2015-11-24 20:45:38 +01:00
public static function getTransformerClassName($source, $entityType)
{
return 'App\\Ninja\\Import\\'.$source.'\\'.ucwords($entityType).'Transformer';
}
2015-12-08 11:10:20 +01:00
public static function getTransformer($source, $entityType, $maps)
2015-11-24 20:45:38 +01:00
{
$className = self::getTransformerClassName($source, $entityType);
2015-12-08 11:10:20 +01:00
return new $className($maps);
2015-11-24 20:45:38 +01:00
}
private function createPayment($source, $data, $maps, $clientId, $invoiceId)
{
2015-12-08 11:10:20 +01:00
$paymentTransformer = $this->getTransformer($source, ENTITY_PAYMENT, $maps);
2015-11-24 20:45:38 +01:00
2015-11-24 22:10:09 +01:00
$data->client_id = $clientId;
$data->invoice_id = $invoiceId;
2015-11-24 20:45:38 +01:00
if ($resource = $paymentTransformer->transform($data, $maps)) {
$data = $this->fractal->createData($resource)->toArray();
$this->paymentRepo->save($data);
}
2015-11-18 15:40:50 +01:00
}
private function validate($source, $data, $entityType)
2015-11-18 18:16:23 +01:00
{
// Harvest's contacts are listed separately
if ($entityType === ENTITY_CLIENT && $source != IMPORT_HARVEST) {
2015-11-18 18:16:23 +01:00
$rules = [
'contacts' => 'valid_contacts',
];
2015-11-25 10:35:24 +01:00
}
if ($entityType === ENTITY_INVOICE) {
2015-11-18 18:16:23 +01:00
$rules = [
'client.contacts' => 'valid_contacts',
'invoice_items' => 'valid_invoice_items',
'invoice_number' => 'required|unique:invoices,invoice_number,,id,account_id,'.Auth::user()->account_id,
'discount' => 'positive',
];
2015-11-24 22:10:09 +01:00
} else {
return true;
2015-11-18 18:16:23 +01:00
}
$validator = Validator::make($data, $rules);
if ($validator->fails()) {
$messages = $validator->messages();
2015-11-24 20:45:38 +01:00
2015-11-18 18:16:23 +01:00
return $messages->first();
} else {
return true;
}
}
2015-11-18 15:40:50 +01:00
private function createMaps()
{
$clientMap = [];
$clients = $this->clientRepo->all();
foreach ($clients as $client) {
2015-12-10 11:57:51 +01:00
if ($name = strtolower(trim($client->name))) {
$clientMap[$name] = $client->id;
}
2015-11-18 15:40:50 +01:00
}
$invoiceMap = [];
$invoices = $this->invoiceRepo->all();
foreach ($invoices as $invoice) {
2015-12-10 11:57:51 +01:00
if ($number = strtolower(trim($invoice->invoice_number))) {
$invoiceMap[$number] = $invoice->id;
}
2015-11-18 15:40:50 +01:00
}
$countryMap = [];
2015-12-10 11:57:51 +01:00
$countryMap2 = [];
2015-11-18 15:40:50 +01:00
$countries = Cache::get('countries');
foreach ($countries as $country) {
2015-12-08 11:10:20 +01:00
$countryMap[strtolower($country->name)] = $country->id;
2015-12-10 11:57:51 +01:00
$countryMap2[strtolower($country->iso_3166_2)] = $country->id;
2015-12-08 11:10:20 +01:00
}
$currencyMap = [];
$currencies = Cache::get('currencies');
foreach ($currencies as $currency) {
$currencyMap[strtolower($currency->code)] = $currency->id;
2015-11-18 15:40:50 +01:00
}
return [
ENTITY_CLIENT => $clientMap,
ENTITY_INVOICE => $invoiceMap,
'countries' => $countryMap,
2015-12-10 11:57:51 +01:00
'countries2' => $countryMap2,
2015-12-08 11:10:20 +01:00
'currencies' => $currencyMap,
2015-11-18 15:40:50 +01:00
];
}
2015-11-24 20:45:38 +01:00
public function mapCSV($files)
2015-11-18 15:40:50 +01:00
{
2015-11-24 20:45:38 +01:00
$data = [];
foreach ($files as $entityType => $filename) {
if ($entityType === ENTITY_CLIENT) {
$columns = Client::getImportColumns();
$map = Client::getImportMap();
} else {
$columns = Invoice::getImportColumns();
$map = Invoice::getImportMap();
}
// Lookup field translations
foreach ($columns as $key => $value) {
unset($columns[$key]);
$columns[$value] = trans("texts.{$value}");
}
array_unshift($columns, ' ');
$data[$entityType] = $this->mapFile($entityType, $filename, $columns, $map);
if ($entityType === ENTITY_CLIENT) {
if (count($data[$entityType]['data']) + Client::scope()->count() > Auth::user()->getMaxNumClients()) {
throw new Exception(trans('texts.limit_clients', ['count' => Auth::user()->getMaxNumClients()]));
}
}
}
return $data;
2015-11-18 15:40:50 +01:00
}
2015-11-18 18:16:23 +01:00
2015-11-24 20:45:38 +01:00
public function mapFile($entityType, $filename, $columns, $map)
2015-11-18 18:16:23 +01:00
{
require_once app_path().'/Includes/parsecsv.lib.php';
$csv = new parseCSV();
$csv->heading = false;
$csv->auto($filename);
2015-11-24 20:45:38 +01:00
Session::put("{$entityType}-data", $csv->data);
2015-11-18 18:16:23 +01:00
$headers = false;
$hasHeaders = false;
$mapped = array();
if (count($csv->data) > 0) {
$headers = $csv->data[0];
foreach ($headers as $title) {
if (strpos(strtolower($title), 'name') > 0) {
$hasHeaders = true;
break;
}
}
for ($i = 0; $i<count($headers); $i++) {
$title = strtolower($headers[$i]);
$mapped[$i] = '';
if ($hasHeaders) {
foreach ($map as $search => $column) {
2015-11-25 10:35:24 +01:00
if ($this->checkForMatch($title, $search)) {
$mapped[$i] = $column;
break;
2015-11-18 18:16:23 +01:00
}
}
}
}
}
$data = array(
2015-11-24 20:45:38 +01:00
'entityType' => $entityType,
2015-11-18 18:16:23 +01:00
'data' => $csv->data,
'headers' => $headers,
'hasHeaders' => $hasHeaders,
'columns' => $columns,
'mapped' => $mapped,
);
return $data;
}
2015-11-25 10:35:24 +01:00
private function checkForMatch($column, $pattern)
{
if (strpos($column, 'sec') === 0) {
return false;
}
if (strpos($pattern, '^')) {
list($include, $exclude) = explode('^', $pattern);
$includes = explode('|', $include);
$excludes = explode('|', $exclude);
} else {
$includes = explode('|', $pattern);
$excludes = [];
}
foreach ($includes as $string) {
if (strpos($column, $string) !== false) {
$excluded = false;
foreach ($excludes as $exclude) {
if (strpos($column, $exclude) !== false) {
$excluded = true;
break;
}
}
if (!$excluded) {
return true;
}
}
}
return false;
}
2015-11-24 20:45:38 +01:00
public function importCSV($maps, $headers)
2015-11-18 18:16:23 +01:00
{
2015-11-25 10:35:24 +01:00
$skipped = [];
2015-11-24 20:45:38 +01:00
foreach ($maps as $entityType => $map) {
2015-11-25 10:35:24 +01:00
$result = $this->executeCSV($entityType, $map, $headers[$entityType]);
$skipped = array_merge($skipped, $result);
}
return $skipped;
}
private function executeCSV($entityType, $map, $hasHeaders)
{
$skipped = [];
$source = IMPORT_CSV;
$data = Session::get("{$entityType}-data");
$this->checkData($entityType, count($data));
$maps = $this->createMaps();
foreach ($data as $row) {
if ($hasHeaders) {
$hasHeaders = false;
continue;
}
$row = $this->convertToObject($entityType, $row, $map);
$result = $this->saveData($source, $entityType, $row, $maps);
if ( ! $result) {
$skipped[] = $row;
}
2015-11-18 18:16:23 +01:00
}
2015-11-25 10:35:24 +01:00
Session::forget("{$entityType}-data");
return $skipped;
2015-11-24 20:45:38 +01:00
}
2015-11-18 18:16:23 +01:00
2015-11-24 20:45:38 +01:00
private function convertToObject($entityType, $data, $map)
{
$obj = new stdClass();
2015-11-18 18:16:23 +01:00
2015-11-24 20:45:38 +01:00
if ($entityType === ENTITY_CLIENT) {
$columns = Client::getImportColumns();
} else {
$columns = Invoice::getImportColumns();
}
2015-11-18 18:16:23 +01:00
2015-11-24 20:45:38 +01:00
foreach ($columns as $column) {
$obj->$column = false;
}
2015-11-18 18:16:23 +01:00
2015-11-24 20:45:38 +01:00
foreach ($map as $index => $field) {
if (! $field) {
2015-11-18 18:16:23 +01:00
continue;
}
2015-11-25 10:35:24 +01:00
if (isset($obj->$field) && $obj->$field) {
continue;
}
2015-11-24 20:45:38 +01:00
$obj->$field = $data[$index];
2015-11-18 18:16:23 +01:00
}
2015-11-24 20:45:38 +01:00
return $obj;
2015-11-18 18:16:23 +01:00
}
2015-11-18 15:40:50 +01:00
}