2020-03-28 12:34:04 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2020-03-28 12:34:04 +01:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-03-28 12:34:04 +01:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-03-28 12:34:04 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
|
2020-12-09 11:05:26 +01:00
|
|
|
use App\Events\Credit\CreditWasEmailed;
|
2020-12-09 10:52:08 +01:00
|
|
|
use App\Events\Quote\QuoteWasEmailed;
|
2021-02-25 22:06:43 +01:00
|
|
|
use App\Http\Middleware\UserVerified;
|
2020-03-28 12:34:04 +01:00
|
|
|
use App\Http\Requests\Email\SendEmailRequest;
|
2020-10-27 12:57:12 +01:00
|
|
|
use App\Jobs\Entity\EmailEntity;
|
2020-05-20 08:59:29 +02:00
|
|
|
use App\Jobs\Mail\EntitySentMailer;
|
2020-03-29 14:53:00 +02:00
|
|
|
use App\Models\Credit;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Models\Quote;
|
2020-10-28 00:02:32 +01:00
|
|
|
use App\Models\RecurringInvoice;
|
2020-03-29 14:53:00 +02:00
|
|
|
use App\Transformers\CreditTransformer;
|
|
|
|
use App\Transformers\InvoiceTransformer;
|
|
|
|
use App\Transformers\QuoteTransformer;
|
2020-10-28 00:02:32 +01:00
|
|
|
use App\Transformers\RecurringInvoiceTransformer;
|
2020-12-09 10:52:08 +01:00
|
|
|
use App\Utils\Ninja;
|
2020-03-28 12:34:04 +01:00
|
|
|
use App\Utils\Traits\MakesHash;
|
2020-10-28 11:10:49 +01:00
|
|
|
use Illuminate\Http\Response;
|
2020-03-28 12:34:04 +01:00
|
|
|
|
|
|
|
class EmailController extends BaseController
|
|
|
|
{
|
|
|
|
use MakesHash;
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
protected $entity_type = Invoice::class;
|
2020-03-29 14:53:00 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
protected $entity_transformer = InvoiceTransformer::class;
|
2020-03-29 14:53:00 +02:00
|
|
|
|
2020-03-28 12:34:04 +01:00
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Returns a template filled with entity variables.
|
2020-03-28 12:34:04 +01:00
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param SendEmailRequest $request
|
|
|
|
* @return Response
|
2020-03-28 12:34:04 +01:00
|
|
|
*
|
|
|
|
* @OA\Post(
|
|
|
|
* path="/api/v1/emails",
|
|
|
|
* operationId="sendEmailTemplate",
|
|
|
|
* tags={"emails"},
|
|
|
|
* summary="Sends an email for an entity",
|
|
|
|
* description="Sends an email for an entity",
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
|
|
* @OA\RequestBody(
|
|
|
|
* description="The template subject and body",
|
|
|
|
* required=true,
|
|
|
|
* @OA\MediaType(
|
|
|
|
* mediaType="application/json",
|
|
|
|
* @OA\Schema(
|
|
|
|
* type="object",
|
|
|
|
* @OA\Property(
|
|
|
|
* property="subject",
|
|
|
|
* description="The email subject",
|
|
|
|
* type="string",
|
|
|
|
* ),
|
|
|
|
* @OA\Property(
|
|
|
|
* property="body",
|
|
|
|
* description="The email body",
|
|
|
|
* type="string",
|
|
|
|
* ),
|
|
|
|
* @OA\Property(
|
|
|
|
* property="entity",
|
|
|
|
* description="The entity name",
|
|
|
|
* type="string",
|
|
|
|
* ),
|
|
|
|
* @OA\Property(
|
|
|
|
* property="entity_id",
|
|
|
|
* description="The entity_id",
|
|
|
|
* type="string",
|
2020-04-04 12:32:42 +02:00
|
|
|
* ),
|
2020-03-28 12:34:04 +01:00
|
|
|
* @OA\Property(
|
|
|
|
* property="template",
|
|
|
|
* description="The template required",
|
|
|
|
* type="string",
|
2020-04-04 12:32:42 +02:00
|
|
|
* ),
|
2020-03-28 12:34:04 +01:00
|
|
|
* )
|
|
|
|
* )
|
|
|
|
* ),
|
|
|
|
* @OA\Response(
|
|
|
|
* response=200,
|
|
|
|
* description="success",
|
2020-06-21 23:30:25 +02:00
|
|
|
* @OA\Header(header="X-MINIMUM-CLIENT-VERSION", ref="#/components/headers/X-MINIMUM-CLIENT-VERSION"),
|
2020-03-28 12:34:04 +01:00
|
|
|
* @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/Template"),
|
|
|
|
* ),
|
|
|
|
* @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 send(SendEmailRequest $request)
|
|
|
|
{
|
2020-03-29 14:22:14 +02:00
|
|
|
$entity = $request->input('entity');
|
|
|
|
$entity_obj = $entity::find($request->input('entity_id'));
|
|
|
|
$subject = $request->input('subject');
|
|
|
|
$body = $request->input('body');
|
|
|
|
$entity_string = strtolower(class_basename($entity_obj));
|
2021-01-20 04:49:22 +01:00
|
|
|
$template = str_replace("email_template_", "", $request->input('template'));
|
2020-11-05 11:14:30 +01:00
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
$data = [
|
|
|
|
'subject' => $subject,
|
|
|
|
'body' => $body
|
|
|
|
];
|
|
|
|
|
|
|
|
$entity_obj->invitations->each(function ($invitation) use ($data, $entity_string, $entity_obj, $template) {
|
2020-12-09 10:52:08 +01:00
|
|
|
|
2021-08-31 00:20:45 +02:00
|
|
|
if (!$invitation->contact->trashed() && $invitation->contact->send_email && $invitation->contact->email) {
|
2020-11-05 11:14:30 +01:00
|
|
|
|
2021-01-12 00:21:17 +01:00
|
|
|
$entity_obj->service()->markSent()->save();
|
2021-01-20 04:49:22 +01:00
|
|
|
|
2021-07-24 09:43:40 +02:00
|
|
|
EmailEntity::dispatch($invitation->fresh(), $invitation->company, $template, $data);
|
2021-01-20 04:49:22 +01:00
|
|
|
|
2020-03-29 14:22:14 +02:00
|
|
|
}
|
2021-01-20 04:49:22 +01:00
|
|
|
|
2020-03-29 14:22:14 +02:00
|
|
|
});
|
2020-07-14 11:55:28 +02:00
|
|
|
|
2020-10-20 02:53:54 +02:00
|
|
|
$entity_obj->last_sent_date = now();
|
2021-01-20 04:49:22 +01:00
|
|
|
|
2020-10-20 02:53:54 +02:00
|
|
|
$entity_obj->save();
|
|
|
|
|
2020-07-14 11:55:28 +02:00
|
|
|
/*Only notify the admin ONCE, not once per contact/invite*/
|
2020-10-28 00:02:32 +01:00
|
|
|
if ($entity_obj instanceof Invoice) {
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->entity_type = Invoice::class;
|
|
|
|
$this->entity_transformer = InvoiceTransformer::class;
|
2020-12-09 10:52:08 +01:00
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
if ($entity_obj->invitations->count() >= 1)
|
2021-01-13 08:20:46 +01:00
|
|
|
$entity_obj->entityEmailEvent($entity_obj->invitations->first(), 'invoice', $template);
|
2021-01-20 04:49:22 +01:00
|
|
|
|
2020-03-29 14:53:00 +02:00
|
|
|
}
|
|
|
|
|
2020-10-28 00:02:32 +01:00
|
|
|
if ($entity_obj instanceof Quote) {
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->entity_type = Quote::class;
|
|
|
|
$this->entity_transformer = QuoteTransformer::class;
|
2020-12-09 10:52:08 +01:00
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
if ($entity_obj->invitations->count() >= 1)
|
2021-05-06 23:12:07 +02:00
|
|
|
event(new QuoteWasEmailed($entity_obj->invitations->first(), $entity_obj->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null), 'quote'));
|
2021-01-20 04:49:22 +01:00
|
|
|
|
2020-03-29 14:53:00 +02:00
|
|
|
}
|
|
|
|
|
2020-10-28 00:02:32 +01:00
|
|
|
if ($entity_obj instanceof Credit) {
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->entity_type = Credit::class;
|
|
|
|
$this->entity_transformer = CreditTransformer::class;
|
2020-12-09 11:05:26 +01:00
|
|
|
|
2021-01-20 04:49:22 +01:00
|
|
|
if ($entity_obj->invitations->count() >= 1)
|
2021-05-06 23:12:07 +02:00
|
|
|
event(new CreditWasEmailed($entity_obj->invitations->first(), $entity_obj->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null), 'credit'));
|
2021-01-20 04:49:22 +01:00
|
|
|
|
2020-03-29 14:53:00 +02:00
|
|
|
}
|
|
|
|
|
2020-10-28 00:02:32 +01:00
|
|
|
if ($entity_obj instanceof RecurringInvoice) {
|
|
|
|
$this->entity_type = RecurringInvoice::class;
|
|
|
|
$this->entity_transformer = RecurringInvoiceTransformer::class;
|
|
|
|
}
|
|
|
|
|
2020-12-13 10:46:29 +01:00
|
|
|
return $this->itemResponse($entity_obj->fresh());
|
2020-03-28 12:34:04 +01:00
|
|
|
}
|
|
|
|
}
|