1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Controllers/ActivityController.php

232 lines
9.1 KiB
PHP
Raw Normal View History

2019-09-27 06:31:13 +02:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2019-09-27 06:31:13 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 05:20:41 +02:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2019-09-27 06:31:13 +02:00
*
2021-06-16 08:58:16 +02:00
* @license https://www.elastic.co/licensing/elastic-license
2019-09-27 06:31:13 +02:00
*/
namespace App\Http\Controllers;
2020-08-12 02:41:26 +02:00
use App\Http\Requests\Activity\DownloadHistoricalEntityRequest;
2019-09-27 06:31:13 +02:00
use App\Models\Activity;
use App\Transformers\ActivityTransformer;
2021-05-04 11:56:15 +02:00
use App\Utils\HostedPDF\NinjaPdf;
use App\Utils\Ninja;
2021-05-04 11:56:15 +02:00
use App\Utils\PhantomJS\Phantom;
2022-05-25 14:00:17 +02:00
use App\Utils\Traits\Pdf\PageNumbering;
2020-08-12 02:01:27 +02:00
use App\Utils\Traits\Pdf\PdfMaker;
2020-10-28 11:10:49 +01:00
use Illuminate\Http\JsonResponse;
2019-09-27 06:31:13 +02:00
use Illuminate\Http\Request;
2020-10-28 11:10:49 +01:00
use Illuminate\Http\Response;
2021-10-20 05:05:46 +02:00
use Illuminate\Support\Facades\Storage;
2021-05-04 11:56:15 +02:00
use stdClass;
use Symfony\Component\HttpFoundation\StreamedResponse;
2019-09-27 06:31:13 +02:00
class ActivityController extends BaseController
{
2022-05-25 14:00:17 +02:00
use PdfMaker, PageNumbering;
2020-08-12 02:01:27 +02:00
2019-09-27 06:31:13 +02:00
protected $entity_type = Activity::class;
protected $entity_transformer = ActivityTransformer::class;
public function __construct()
{
parent::__construct();
}
/**
2020-10-28 11:10:49 +01:00
* @OA\Get(
2022-09-27 12:02:37 +02:00
* path="/api/v1/activities",
* operationId="getActivities",
* tags={"actvities"},
* summary="Gets a list of actvities",
* description="Lists all activities",
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
* @OA\Parameter(ref="#/components/parameters/include"),
* @OA\Parameter(ref="#/components/parameters/index"),
* @OA\Parameter(
* name="rows",
* in="query",
* description="The number of activities to return",
* example="50",
* required=false,
* @OA\Schema(
* type="number",
* format="integer",
* ),
* ),
* @OA\Response(
* response=200,
* description="A list of actvities",
* @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\JsonContent(ref="#/components/schemas/Activity"),
* ),
* @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"),
* ),
* )
2020-10-28 11:10:49 +01:00
* @param Request $request
* @return Response|mixed
2019-09-27 06:31:13 +02:00
*/
public function index(Request $request)
2019-09-27 06:31:13 +02:00
{
2019-12-16 12:52:00 +01:00
$default_activities = $request->has('rows') ? $request->input('rows') : 50;
2019-09-27 06:31:13 +02:00
$activities = Activity::orderBy('created_at', 'DESC')->company()
->take($default_activities);
if ($request->has('react')) {
2022-05-27 10:25:32 +02:00
$system = ctrans('texts.system');
$data = $activities->cursor()->map(function ($activity) use ($system) {
$arr =
[
'client' => $activity->client ? $activity->client : '',
'contact' => $activity->contact ? $activity->contact : '',
'quote' => $activity->quote ? $activity->quote : '',
'user' => $activity->user ? $activity->user : '',
'expense' => $activity->expense ? $activity->expense : '',
'invoice' => $activity->invoice ? $activity->invoice : '',
'recurring_invoice' => $activity->recurring_invoice ? $activity->recurring_invoice : '',
'payment' => $activity->payment ? $activity->payment : '',
'credit' => $activity->credit ? $activity->credit : '',
'task' => $activity->task ? $activity->task : '',
2022-08-31 04:05:15 +02:00
'vendor' => $activity->vendor ? $activity->vendor : '',
'vendor_contact' => $activity->vendor_contact ? $activity->vendor_contact : '',
'purchase_order' => $activity->purchase_order ? $activity->purchase_order : '',
2022-11-24 01:38:57 +01:00
'subscription' => $activity->subscription ? $activity->subscription : '',
'vendor_contact' => $activity->vendor_contact ? $activity->vendor_contact : '',
];
2022-05-27 10:25:32 +02:00
2022-05-29 02:14:12 +02:00
return array_merge($arr, $activity->toArray());
2022-05-27 10:25:32 +02:00
});
return response()->json(['data' => $data->toArray()], 200);
}
2019-09-27 06:31:13 +02:00
return $this->listResponse($activities);
}
2020-08-12 02:01:27 +02:00
2020-08-12 02:41:26 +02:00
/**
2020-10-28 11:10:49 +01:00
* @OA\Get(
2020-08-12 02:41:26 +02:00
* path="/api/v1/actvities/download_entity/{activity_id}",
* operationId="getActivityHistoricalEntityPdf",
* tags={"actvities"},
* summary="Gets a PDF for the given activity",
* description="Gets a PDF for the given activity",
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
* @OA\Parameter(ref="#/components/parameters/X-Api-Token"),
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
* @OA\Parameter(
* name="activity_id",
* in="path",
* description="The Activity Hashed ID",
* example="D2J234DFA",
* required=true,
* @OA\Schema(
* type="string",
* format="string",
* ),
* ),
* @OA\Response(
* response=200,
* description="PDF File",
* @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=404,
* description="No file exists for the given record",
* ),
* @OA\Response(
* response="default",
* description="Unexpected Error",
* @OA\JsonContent(ref="#/components/schemas/Error"),
* ),
* )
2020-10-28 11:10:49 +01:00
* @param DownloadHistoricalEntityRequest $request
* @param Activity $activity
* @return JsonResponse|StreamedResponse
2020-08-12 02:41:26 +02:00
*/
public function downloadHistoricalEntity(DownloadHistoricalEntityRequest $request, Activity $activity)
2020-08-12 02:01:27 +02:00
{
2020-08-12 02:13:34 +02:00
$backup = $activity->backup;
2021-10-20 05:05:46 +02:00
$html_backup = '';
2020-08-12 02:01:27 +02:00
/* Refactor 20-10-2021
2021-10-20 05:05:46 +02:00
*
* We have moved the backups out of the database and into object storage.
* In order to handle edge cases, we still check for the database backup
2021-10-20 05:05:46 +02:00
* in case the file no longer exists
*/
if ($backup && $backup->filename && Storage::disk(config('filesystems.default'))->exists($backup->filename)) { //disk
if (Ninja::isHosted()) {
$html_backup = file_get_contents(Storage::disk(config('filesystems.default'))->url($backup->filename));
} else {
$html_backup = file_get_contents(Storage::disk(config('filesystems.default'))->path($backup->filename));
}
} else { //failed
2021-01-24 23:24:13 +01:00
return response()->json(['message'=> ctrans('texts.no_backup_exists'), 'errors' => new stdClass], 404);
}
2020-08-12 02:13:34 +02:00
2021-05-09 13:30:31 +02:00
if (config('ninja.phantomjs_pdf_generation') || config('ninja.pdf_generator') == 'phantom') {
2021-10-20 05:05:46 +02:00
$pdf = (new Phantom)->convertHtmlToPdf($html_backup);
2022-05-25 14:00:17 +02:00
$numbered_pdf = $this->pageNumbering($pdf, $activity->company);
if ($numbered_pdf) {
$pdf = $numbered_pdf;
}
} elseif (config('ninja.invoiceninja_hosted_pdf_generation') || config('ninja.pdf_generator') == 'hosted_ninja') {
2021-10-20 05:05:46 +02:00
$pdf = (new NinjaPdf())->build($html_backup);
2022-05-25 14:00:17 +02:00
$numbered_pdf = $this->pageNumbering($pdf, $activity->company);
2022-05-25 14:00:17 +02:00
if ($numbered_pdf) {
$pdf = $numbered_pdf;
}
} else {
2021-10-20 05:05:46 +02:00
$pdf = $this->makePdf(null, null, $html_backup);
2022-05-25 14:00:17 +02:00
$numbered_pdf = $this->pageNumbering($pdf, $activity->company);
2022-05-25 14:00:17 +02:00
if ($numbered_pdf) {
$pdf = $numbered_pdf;
}
2021-05-04 11:56:15 +02:00
}
2020-08-12 02:01:27 +02:00
if (isset($activity->invoice_id)) {
$filename = $activity->invoice->numberFormatter().'.pdf';
} elseif (isset($activity->quote_id)) {
$filename = $activity->quote->numberFormatter().'.pdf';
} elseif (isset($activity->credit_id)) {
$filename = $activity->credit->numberFormatter().'.pdf';
} else {
$filename = 'backup.pdf';
}
return response()->streamDownload(function () use ($pdf) {
2020-08-12 02:01:27 +02:00
echo $pdf;
}, $filename, ['Content-Type' => 'application/pdf']);
2020-08-12 02:01:27 +02:00
}
}