mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
24c9121b1b
* Fixes for add / archiving / deleting users * Working on templates * Fixes for templating * Fixes for templating * Add referral code to account creation * Fixes for development environment
188 lines
5.8 KiB
PHP
188 lines
5.8 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://opensource.org/licenses/AAL
|
|
*/
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\DataMapper\EmailTemplateDefaults;
|
|
use App\Utils\Traits\MakesHash;
|
|
use App\Utils\Traits\MakesInvoiceHtml;
|
|
use App\Utils\Traits\MakesTemplateData;
|
|
use League\CommonMark\CommonMarkConverter;
|
|
|
|
class TemplateController extends BaseController
|
|
{
|
|
use MakesHash;
|
|
use MakesTemplateData;
|
|
use MakesInvoiceHtml;
|
|
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
/**
|
|
* Returns a template filled with entity variables
|
|
*
|
|
* @return \Illuminate\Http\Response
|
|
*
|
|
* @OA\Post(
|
|
* path="/api/v1/templates",
|
|
* operationId="getShowTemplate",
|
|
* tags={"templates"},
|
|
* summary="Returns a entity template with the template variables replaced with the Entities",
|
|
* description="Returns a entity template with the template variables replaced with the Entities",
|
|
* @OA\Parameter(ref="#/components/parameters/X-Api-Secret"),
|
|
* @OA\Parameter(ref="#/components/parameters/X-Requested-With"),
|
|
* @OA\Parameter(
|
|
* name="entity",
|
|
* in="path",
|
|
* description="The Entity (invoice,quote,recurring_invoice)",
|
|
* example="invoice",
|
|
* required=true,
|
|
* @OA\Schema(
|
|
* type="string",
|
|
* format="string",
|
|
* ),
|
|
* ),
|
|
* @OA\Parameter(
|
|
* name="entity_id",
|
|
* in="path",
|
|
* description="The Entity ID",
|
|
* example="X9f87dkf",
|
|
* required=true,
|
|
* @OA\Schema(
|
|
* type="string",
|
|
* format="string",
|
|
* ),
|
|
* ),
|
|
* @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 template subject",
|
|
* type="string",
|
|
* ),
|
|
* @OA\Property(
|
|
* property="body",
|
|
* description="The email template body",
|
|
* type="string",
|
|
* ),
|
|
* )
|
|
* )
|
|
* ),
|
|
* @OA\Response(
|
|
* response=200,
|
|
* description="The template response",
|
|
* @OA\Header(header="X-API-Version", ref="#/components/headers/X-API-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/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 show()
|
|
{
|
|
$entity_obj = null;
|
|
|
|
if (request()->has('entity') && request()->has('entity_id')) {
|
|
$class = 'App\Models\\'.ucfirst(request()->input('entity'));
|
|
$entity_obj = $class::whereId($this->decodePrimaryKey(request()->input('entity_id')))->company()->first();
|
|
}
|
|
|
|
if($entity_obj){
|
|
$settings_entity = $entity_obj->client;
|
|
}
|
|
else{
|
|
$settings_entity = auth()->user()->company();
|
|
}
|
|
|
|
|
|
$subject = request()->input('subject') ?: '';
|
|
$body = request()->input('body') ?: '';
|
|
$template = request()->input('template') ?: '';
|
|
$include_wrapper = request()->input('include_wrapper') ?: false;
|
|
|
|
if(strlen($template) >1) {
|
|
|
|
$custom_template = $settings_entity->getSetting($template);
|
|
|
|
if(strlen($custom_template) > 1){
|
|
$body = $custom_template;
|
|
}
|
|
else {
|
|
$body = EmailTemplateDefaults::getDefaultTemplate($template, $settings_entity->locale());
|
|
}
|
|
|
|
}
|
|
|
|
$labels = $this->makeFakerLabels();
|
|
$values = $this->makeFakerValues();
|
|
|
|
$body = str_replace(array_keys($labels), array_values($labels), $body);
|
|
$body = str_replace(array_keys($values), array_values($values), $body);
|
|
|
|
$converter = new CommonMarkConverter([
|
|
'allow_unsafe_links' => false,
|
|
]);
|
|
|
|
$body = $converter->convertToHtml($body);
|
|
|
|
if($include_wrapper){
|
|
|
|
$email_style = $settings_entity->getSetting('email_style');
|
|
|
|
$email_style = 'dark';
|
|
|
|
$data['title'] = '';
|
|
$data['body'] = $body;
|
|
$data['footer'] = '';
|
|
|
|
if($email_style == 'custom') {
|
|
|
|
$wrapper = $settings_entity->getSetting('email_style_custom');
|
|
$this->renderView($wrapper, $data);
|
|
}
|
|
else {
|
|
|
|
$wrapper = $this->getTemplate();
|
|
$body = view($this->getTemplatePath($email_style), $data)->render();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
$data = [
|
|
'subject' => $subject,
|
|
'body' => $body,
|
|
];
|
|
|
|
return response()->json($data, 200);
|
|
}
|
|
}
|