1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-15 07:33:04 +01:00
invoiceninja/app/Http/Controllers/ImportQuickbooksController.php

126 lines
4.2 KiB
PHP
Raw Normal View History

2024-07-23 02:02:13 +02:00
<?php
namespace App\Http\Controllers;
2024-08-21 07:07:52 +02:00
use App\Http\Requests\Quickbooks\AuthorizedQuickbooksRequest;
2024-08-21 05:04:09 +02:00
use App\Libraries\MultiDB;
use Illuminate\Support\Facades\Cache;
use App\Http\Requests\Quickbooks\AuthQuickbooksRequest;
use App\Services\Import\Quickbooks\QuickbooksService;
2024-07-23 02:02:13 +02:00
class ImportQuickbooksController extends BaseController
{
2024-08-23 06:17:37 +02:00
// private array $import_entities = [
// 'client' => 'Customer',
// 'invoice' => 'Invoice',
// 'product' => 'Item',
// 'payment' => 'Payment'
// ];
2024-08-21 07:07:52 +02:00
public function onAuthorized(AuthorizedQuickbooksRequest $request)
{
2024-08-22 08:45:06 +02:00
2024-08-21 07:07:52 +02:00
MultiDB::findAndSetDbByCompanyKey($request->getTokenContent()['company_key']);
$company = $request->getCompany();
$qb = new QuickbooksService($company);
$realm = $request->query('realmId');
2024-08-23 06:17:37 +02:00
$access_token_object = $qb->getAuth()->accessTokenFromCode($request->query('code'), $realm);
$qb->getAuth()->saveOAuthToken($access_token_object);
return redirect(config('ninja.react_url'));
2024-08-22 08:45:06 +02:00
}
2024-07-23 02:02:13 +02:00
/**
* Determine if the user is authorized to make this request.
*
*/
2024-08-21 05:04:09 +02:00
public function authorizeQuickbooks(AuthQuickbooksRequest $request, string $token)
2024-07-23 02:02:13 +02:00
{
2024-08-22 08:45:06 +02:00
2024-08-21 05:04:09 +02:00
MultiDB::findAndSetDbByCompanyKey($request->getTokenContent()['company_key']);
$company = $request->getCompany();
$qb = new QuickbooksService($company);
$authorizationUrl = $qb->getAuth()->getAuthorizationUrl();
$state = $qb->getAuth()->getState();
Cache::put($state, $token, 190);
2024-07-23 02:02:13 +02:00
return redirect()->to($authorizationUrl);
2024-07-23 02:02:13 +02:00
}
public function preimport(string $type, string $hash)
2024-07-23 02:02:13 +02:00
{
2024-08-23 06:17:37 +02:00
// // Check for authorization otherwise
// // Create a reference
// $data = [
// 'hash' => $hash,
// 'type' => $type
// ];
// $this->getData($data);
2024-07-23 02:02:13 +02:00
}
2024-08-22 08:45:06 +02:00
protected function getData($data)
{
2024-07-23 02:02:13 +02:00
2024-08-23 06:17:37 +02:00
// $entity = $this->import_entities[$data['type']];
// $cache_name = "{$data['hash']}-{$data['type']}";
// // TODO: Get or put cache or DB?
// if(! Cache::has($cache_name)) {
// $contents = call_user_func([$this->service, "fetch{$entity}s"]);
// if($contents->isEmpty()) {
// return;
// }
// Cache::put($cache_name, base64_encode($contents->toJson()), 600);
// }
2024-07-23 02:02:13 +02:00
}
/**
* @OA\Post(
* path="/api/v1/import_json",
* operationId="getImportJson",
* tags={"import"},
* summary="Import data from the system",
* description="Import data from the system",
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
* @OA\Response(
* response=200,
* description="success",
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
* @OA\Header(header="X-RateLimit-Remaining", ref="#/components/headers/X-RateLimit-Remaining"),
* @OA\Header(header="X-RateLimit-Limit", ref="#/components/headers/X-RateLimit-Limit"),
* ),
* @OA\Response(
* response=422,
* description="Validation error",
* @OA\JsonContent(ref="#/components/schemas/ValidationError"),
* ),
* @OA\Response(
* response="default",
* description="Unexpected Error",
* @OA\JsonContent(ref="#/components/schemas/Error"),
* ),
* )
*/
public function import(Request $request)
{
2024-08-22 08:45:06 +02:00
// $hash = Str::random(32);
// foreach($request->input('import_types') as $type) {
// $this->preimport($type, $hash);
// }
// /** @var \App\Models\User $user */
// // $user = auth()->user() ?? Auth::loginUsingId(60);
// $data = ['import_types' => $request->input('import_types') ] + compact('hash');
// if (Ninja::isHosted()) {
// QuickbooksIngest::dispatch($data, $user->company());
// } else {
// QuickbooksIngest::dispatch($data, $user->company());
// }
2024-07-23 02:02:13 +02:00
2024-08-22 08:45:06 +02:00
// return response()->json(['message' => 'Processing'], 200);
2024-07-23 02:02:13 +02:00
}
}